1. 程式人生 > >資料整理——Oracle基本概念、術語(Glossary from Oracle Concepts)——第九部分

資料整理——Oracle基本概念、術語(Glossary from Oracle Concepts)——第九部分

《Oracle Concepts》是介紹oracle資料庫的基礎概念的入門書籍,學習這些概念可以為更深層次的學習打好基礎。

metric 指標(變化率) The rate of change in a cumulative statistic
mounted database 已裝載資料庫 An database instance that is started and has the database control file open.
multitenant architecture
多租戶架構 The architecture that enables an Oracle database to function as a multitenant container database (CDB), which means that it can contain multiple PDBs. A PDB is a portable collection of schemas, schema objects, and nonschema objects that appears to an Oracle Net client as a traditional Oracle database non-CDB).
multithreaded Oracle Database model 多執行緒Oracle資料庫模型 A model that enables Oracle processes to execute as operating system threads in separate address spaces. In threaded mode, some background processes on UNIX and Linux run as processes containing one thread, whereas the remaining Oracle processes run as threads within processes.
multitier architecture 多層架構 An architecture in which one or more application servers provide data for clients and serves as an interface between clients and database servers.
multiversion consistency model 多版本一致性模型 A model that enables the database to present a view of data to multiple concurrent users, with each view consistent to a point in time.
multiversioning 多版本功能 The ability of the database to simultaneously materialize multiple versions of data.
mutex (mutual exclusion object) 互斥物件 A low-level mechanism that prevents an object in memory from aging out or from being corrupted when accessed by concurrent processes.
natural key 自然鍵 A meaningful identifier made of existing attributes in a table. For example, a natural key could be a postal code in a lookup table.
network database 網路資料庫 A type of database, similar to a hierarchical database, in which records have a many-to-many rather than a one-to-many relationship.
network encryption 網路加密 Encrypting data as it travels across the network between a client and server.
non-CDB 非CDB An Oracle database that is not a multitenant container database (CDB). Before Oracle Database 12c, all databases were non-CDBs. Starting in Oracle Database 12c, every database must be either a CDB or a non-CDB.
noncircular reuse record 非迴圈重用記錄 A control file record that contains critical information that does not change often and cannot be overwritten. Examples of information include tablespaces, data files, online redo log files, and redo threads. Oracle Database never reuses these records unless the corresponding object is dropped from the tablespace.
nondeferrable constraint 非可延遲約束 A constraint whose validity check is never deferred to the end of the transaction. Instead, the database checks the constraint at the end of each statement. If the constraint is violated, then the statement rolls back.
null Absence of a value in a column of a row. Nulls indicate missing, unknown, or inapplicable data.
object link 物件連結 In a PDB, an internal mechanism that points to data (not metadata) in the root. For example, AWR data resides in the root. Each PDB uses an object link to point to the AWR data in the root, thereby making views such as DBA_HIST_ACTIVE_SESS_HISTORY and DBA_HIST_BASELINE accessible in each separate container.
ORDBMS (object-relational database management system) 物件關係型資料庫管理系統 An RDBMS that implements object-oriented features such as user-defined types, inheritance, and polymorphism.
object table 物件表 An special kind of table in which each row represents an object.
object type 物件型別 A schema object that abstracts a real-world entity such as a purchase order. Attributes model the structure of the entity, whereas methods implement operations an application can perform on the entity.
object view 物件檢視 A virtual object table. Each row in the view is an object, which is an instance of a user-defined data type.
OLAP (Online Analytical Processing) 線上分析處理 OLAP is characterized by dynamic, dimensional analysis of historical data.
OLAP page pool OLAP頁池 The pool in the UGA that manages OLAP data pages, which are equivalent to data blocks. The page pool is allocated at the start of an OLAP session and released at the end of the session.
OLTP (Online Transaction Processing) 線上事務處理 OLTP systems are optimized for fast and reliable transaction handling. Compared to data warehouse systems, most OLTP interactions involve a relatively small number of rows, but a larger group of tables.
online redo log 線上重做日誌 The set of two or more online redo log files that record all changes made to Oracle Database data files and control file. When a change is made to the database, Oracle Database generates a redo record in the redo buffer. The log writer process (LGWR) process writes the contents of the redo log buffer to the online redo log.
online redo log group 線上重做日誌組 An online redo log file and its redundant copies.
operating system block 作業系統資料塊(最小讀寫單元) The minimum unit of data that the operating system can read or write.
operator 操作程式/運算子 1. In memory management, operators control the flow of data. Examples include sort, hash join, and bitmap merge operators.

2. In SQL, an operator manipulates data items called operands or arguments and returns a result. Keywords or special characters represent the operators. For example, an asterisk (*) represents the multiplication operator.
optimizer 優化程式 Built-in database software that determines the most efficient way to execute a SQL statement by considering factors related to the objects referenced and the conditions specified in the statement.
optimizer statistics 優化程式統計資料 Details about the database its object used by the optimizer to select the best execution plan for each SQL statement. Categories include table statistics such as numbers of rows, index statistics such as B-tree levels, system statistics such as CPU and I/O performance, and column statistics such as number of nulls.
Oracle architecture Oracle架構 Memory and process structures used by Oracle Database to manage a database.
Oracle Application Express Oracle Application Express A Web application development tool for Oracle Database. Oracle Application Express uses built-in features such as user interface themes, navigational controls, form handlers, and flexible reports to accelerate application development.
Oracle ASM (Oracle Automatic Storage Management) Oracle自動儲存管理 A volume manager and a file system for database files. Oracle ASM is Oracle's recommended storage management solution, providing an alternative to conventional volume managers and file systems.
Oracle ASM allocation unit Oracle ASM分配單元 The fundamental unit of allocation within an ASM disk group. An allocation unit is the smallest contiguous disk space that Oracle ASM allocates. One or more allocation units form an Oracle ASM extent.
Oracle ASM disk Oracle ASM磁碟 A storage device that is provisioned to an Oracle ASM disk group. An Oracle ASM disk can be a physical disk or partition, a Logical Unit Number (LUN) from a storage array, a logical volume, or a network-attached file.
Oracle ASM disk group Oracle ASM磁碟組 One or more Oracle ASM disks managed as a logical unit. I/O to a disk group is automatically spread across all the disks in the group.
Oracle ASM extent Oracle ASM擴充套件 A section of an Oracle ASM file. An Oracle ASM file consists of one or more file extents. Each Oracle ASM extent consists of one or more allocation units on a specific disk.
Oracle ASM file Oracle ASM檔案 A file stored in an Oracle ASM disk group. The database can store data files, control files, online redo log files, and other types of files as Oracle ASM files.
Oracle ASM instance Oracle ASM例項 A special Oracle instance that manages Oracle ASM disks. Both the Oracle ASM instance and the database instances require shared access to the disks in an Oracle ASM disk group. Oracle ASM instances manage the metadata of the disk group and provide file layout information to the database instances.