资料整理——Oracle基本概念、术语(Glossary from Oracle Concepts)——第十二部分

“Oracle数据库的物理文件是存储在磁盘上的数据文件、控制文件和日志文件的总称。数据文件和日志文件是数据库中最重要的文件。数据库由若干个表空间组成,表空间由表组成,表由段组成,段由区间组成,区间由数据块组成。那么,数据在数据文件中是如何组织的呢?要了解这些内容我们首先必须理解什么是表空间(tablespace)、段(segment)、区(extent)、块(block),这些都是oracle数据库在数据文件中组织数据的基本单元。”

概念中文描述
query transformer查询转换组件An optimizer component that decides whether it can rewrite the original SQL statement into a semantically equivalent SQL statement with a lower cost.
RR语言A language and environment for statistical computing and graphics.
range partitioning范围分区A type of partitioning in which the database maps rows to partitions based on ranges of values of the partitioning key. Range partitioning is the most common type of partitioning and is often used with dates.
read committed isolation level读已提交隔离级别An isolation level that guarantees that a query executed by a transaction sees only data committed before the query—not the transaction—began.
read consistency读一致性A consistent view of data seen by a user. For example, in statement-level read consistency the set of data seen by a SQL statement remains constant throughout statement execution. See also data concurrency; data consistency.
read-only database只读数据库A database that is available for queries only and cannot be modified.
read-only isolation level只读隔离级别An isolation level that is similar to the serializable isolation level, with one exception: read-only transactions do not permit data to be modified in the transaction unless the user is SYS.
real-time redo transport实时重做传输The continuous transfer of redo changes from the SGA of a protected database to a Recovery Appliance. Real-time redo transport enables RMAN to provide a recovery point objective near 0. Typically, RMAN can recover to within a second of the time when the failure occurred. Protected databases write redo entries directly from the SGA to the Recovery Appliance as they are generated.
recoverable error可恢复错误A class of errors that arise because of an external system failure, independently of the application session logic that is executing. Recoverable errors occur following planned and unplanned outages of networks, nodes, storage, and databases. An example of a nonrecoverable error is submission of invalid data values.
recoverer process (RECO)RECO(恢复进程)In a distributed database, the background process that automatically resolves failures in distributed transactions.
Recovery Appliance恢复机Shortened name for Zero Data Loss Recovery Appliance. Recovery Appliance is an Oracle Engineered System specifically designed to protect Oracle databases. Integrated with RMAN, it enables a centralized, incremental-forever backup strategy for hundreds to thousands of databases across the enterprise, using cloud-scale, fully fault-tolerant hardware and storage.
Recovery Appliance Backup Module恢复机备份模块An Oracle-supplied SBT library that RMAN uses to send backups of protected databases over the network to the Recovery Appliance. The library must be installed in each Oracle home used by a protected database. The module functions as an SBT media management library that RMAN references when allocating or configuring a channel for backup to the Recovery Appliance. RMAN performs all backups to the Recovery Appliance, and all restores of complete backup sets, using this module.
Recovery Appliance metadata database恢复机元数据数据库The Oracle database that runs inside of the Recovery Appliance. This database stores configuration data such as user definitions, protection policy definitions, and client database definitions. The metadata database also stores backup metadata, including the contents of the delta store.
Recovery Appliance storage location恢复机存储位置A set of Oracle ASM disk groups within Recovery Appliance that stores backups. A storage location can be shared among multiple protected databases. Every Recovery Appliance contains the default Recovery Appliance storage location named DELTA.
recovery catalog恢复目录A centralized backup repository located in an Oracle database. The recovery catalog contains metadata about RMAN backups.
recovery window goal恢复窗口目标The time interval within which a protected database must be recoverable to satisfy business requirements. For each protected database in a protection policy, the Recovery Appliance attempts to ensure that the oldest backup on disk is able to support a point-in-time recovery to any time within the specified interval (for example, the past 7 days), counting backward from the current time.
recursive SQL递归SQLSQL that the database executes in the background to obtain space for database objects. You can think of recursive SQL as "side effect" SQL.
redo log重做日志A set of files that protect altered database data in memory that has not been written to the data files. The redo log can consist of two parts: the online redo log and the archived redo log.
redo log buffer重做日志缓存Memory structure in the SGA that stores redo entries—a log of changes made to the database. The database writes the redo entries stored in the redo log buffers to an online redo log file, which the database uses when instance recovery is necessary.
redo record重做记录A record in the online redo log that holds a group of change vectors, each of which describes a change made to a data block. Each redo log file consists of redo records.
redo thread重做线程The redo generated by a database instance.
referenced key引用键In a foreign key relationship, the primary or unique key to which the foreign key refers. For example, in the common schema, the employees.department_id column is a foreign key, and the departments.department_id column is the referenced key.
referenced object引用对象In a schema object dependency, the object that is referenced by another object's definition. For example, if the definition of object A references object B, then B is a referenced object for A.
referential integrity引用完整性A rule defined on a key in one table that guarantees that the values in that key match the values in a key in a related table (the referenced value).
relation关系A set of tuples.
relational database关系数据库A database that conforms to the relational model, storing data in a set of simple relations.
RDBMS (relational database management system)关系型数据库管理系统A management system that moves data into a relational database, stores the data, and retrieves it so that applications can manipulate it.
replay context重播上下文In Application Continuity, opaque information that the database returns to the client driver during normal application run time.
replication复制The process of sharing database objects and data at multiple databases.
reserved pool保留池A memory area in the shared pool that Oracle Database can use to allocate large contiguous chunks of memory.
result set结果集The set of data retrieved from execution of a SELECT statement.
reverse key index反向键索引A type of B-tree index that physically reverses the bytes of each index key while keeping the column order. For example, if the index key is 20, and if the two bytes stored for this key in hexadecimal are C1,15 in a standard B-tree index, then a reverse key index stores the bytes as 15,C1.
right outer join右外连接The result of a right outer join for table A and B contains all records of the right table B, even if the join condition does not match a record in the left table A. For example, if you perform a right outer join of employees (left) to departments (right), and if some departments contain no employees, then the query returns rows from departments with no matches in employees.
RMAN (Recovery Manager)RMAN (Recovery Manager)An Oracle Database utility that backs up, restores, and recovers Oracle databases.
role角色A set of privileges that can be granted to database users or to other roles.
CDB rootCDB根In a multitenant container database (CDB), a collection of schemas, schema objects, and nonschema objects to which all PDBs belong. Every CDB has exactly one root container, which stores the system metadata required to manage PDBs. All PDBs belong to the CDB root.
rowA set of column information corresponding to a single record in a table. The database stores rows in data blocks.
row chaining行链A situation in which Oracle Database must store a row in a series or chain of blocks because it is too large to fit into a single block.
row lock行级锁A lock on a single row of table. A transaction acquires a row lock for each row modified by an INSERT, UPDATE, DELETE, MERGE, or SELECT ... FOR UPDATE statement.
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值