Oracle Database

Oracle Database (commonly referred to as Oracle RDBMS or simply as Oracle) is an object-relational database management system[3] produced and marketed by Oracle Corporation.

Larry Ellison and his two friends and former co-workers, Bob Miner and Ed Oates, started a consultancy called Software Development Laboratories (SDL) in 1977. SDL developed the original version of the Oracle software. The name Oracle comes from the code-name of a CIA-funded project Ellison had worked on while formerly employed by Ampex.[4]

Physical and logical structures[edit]

An Oracle database system—identified by an alphanumeric system identifier or SID[5]—comprises at least one instance of the application, along with data storage. An instance—identified persistently by an instantiation number (or activation id: SYS.V_$DATABASE.ACTIVATION#)—comprises a set of operating-system processes and memory-structures that interact with the storage. Typical processes include PMON (the process monitor) and SMON (the system monitor). Oracle documentation can refer to an active database instance as a "shared memory realm".[6]

Users of Oracle databases refer to the server-side memory-structure as the SGA (System Global Area). The SGA typically holds cache information such as data-buffers, SQL commands, and user information. In addition to storage, the database consists of online redo logs (or logs), which hold transactional history. Processes can in turn archive the online redo logs into archive logs (offline redo logs), which provide the basis for data recovery and for the physical-standby forms of data replication using Oracle Data Guard.

The Oracle RAC (Real Application Clusters) option uses multiple instances attached to a central storage array. In version 10ggrid computing introduced shared resources where an instance can use CPU resources from another node in the grid. The advantage of Oracle RAC is that the resources on both nodes are used by the database, and each node uses its own memory and CPU. Information is shared between nodes through the interconnect—the virtual private network.[7]

The Oracle DBMS can store and execute stored procedures and functions within itself. PL/SQL (Oracle Corporation's proprietary procedural extension to SQL), or the object-oriented language Java can invoke such code objects and/or provide the programming structures for writing them.

Storage[edit]

The Oracle RDBMS stores data logically in the form of tablespaces and physically in the form of data files ("datafiles").[8] Tablespaces can contain various types of memory segments, such as Data Segments, Index Segments, etc. Segments in turn comprise one or more extents. Extents comprise groups of contiguous data blocks. Data blocks form the basic units of data storage.

A DBA can impose maximum quotas on storage per user within each tablespace.[9]

Partitioning[edit]

The partitioning feature was introduced in Oracle 8.[10] This allows the partitioning of tables based on different set of keys. Specific partitions can then be added or dropped to help manage large data sets.

Monitoring[edit]

Oracle database management tracks its computer data storage with the help of information stored in the SYSTEM tablespace. The SYSTEM tablespace contains the data dictionaryindexes and clusters. A data dictionary consists of a special collection of tables that contains information about all user-objects in the database. Since version 8i, the Oracle RDBMS also supports "locally managed" tablespaces that store space management information in bitmaps in their own headers rather than in the SYSTEM tablespace (as happens with the default "dictionary-managed" tablespaces). Version 10g and later introduced the SYSAUX tablespace, which contains some of the tables formerly stored in the SYSTEM tablespace, along with objects for other tools such as OEM, which previously required its own tablespace.[11]

Disk files[edit]

Disk files primarily represent one of the following structures:

  • Data and index files: These files provide the physical storage of data, which can consist of the data-dictionary data (associated to the tablespace SYSTEM), user data, or index data. These files can be managed manually or managed by Oracle itself. Note that a datafile has to belong to exactly one tablespace, whereas a tablespace can consist of multiple datafiles.
  • Redo log files, consisting of all changes to the database, used to recover from an instance failure. Often, a database stores these files multiple times for extra security in case of disk failure. The identical redo log files are said to belong to the same group.
  • Undo files: These special datafiles, which can only contain undo information, aid in recovery, rollbacks, and read-consistency.
  • Archive log files: These files, copies of the redo log files, are usually stored at different locations. They are necessary (for example) when applying changes to a standby database, or when performing recovery after a media failure. It is possible to archive to multiple locations.
  • Tempfiles: These special datafiles serve exclusively for temporary storage data (used for example for large sorts or for global temporary tables)
  • Control file, necessary for database startup. "A binary file that records the physical structure of a database and contains the names and locations of redo log files, the time stamp of the database creation, the current log sequence number, checkpoint information, and so on."[12]

At the physical level, data files comprise one or more data blocks, where the block size can vary between data files.

Data files can occupy pre-allocated space in the file system of a computer server, use raw disk directly, or exist within ASM logical volumes.[13]

Database schema[edit]

Most Oracle database installations come with a default schema called SCOTT. After the installation process sets up sample tables, the user logs into the database with the username scott and the password tiger. The name of the SCOTT schema originated with Bruce Scott, one of the first employees at Oracle (then Software Development Laboratories), who had a cat named Tiger.[14]

Oracle Corporation now de-emphasizes the SCOTT schema, as it uses few features of more recent Oracle releases. Most recent examples supplied by Oracle Corporation reference the default HR or OE schemas.

Other default schemas[15][16] include:

  • SYS (essential core database structures and utilities)
  • SYSTEM (additional core database structures and utilities, and privileged account)
  • OUTLN (used to store metadata for stored outlines for stable query-optimizer execution plans.[17])
  • BIIXHROEPM, and SH (expanded sample schemas[18] containing more data and structures than the older SCOTT schema).
System Global Area[edit]
Main article:   System Global Area

Each Oracle instance uses a System Global Area or SGA—a shared-memory area—to store its data and control-information.[19]

Each Oracle instance allocates itself an SGA when it starts and de-allocates it at shut-down time. The information in the SGA consists of the following elements, each of which has a fixed size, established at instance startup:

  • Datafiles

Every Oracle database has one or more physical datafiles, which contain all the database data. The data of logical database structures, such as tables and indexes, is physically stored in the datafiles allocated for a database.

Datafiles have the following characteristics:

  • One or more datafiles form a logical unit of database storage called a tablespace.
  • A datafile can be associated with only one tablespace.
  • Datafiles can be defined to extend automatically when they are full.

Data in a datafile is read, as needed, during normal database operation and stored in the memory cache of Oracle Database. For example, if a user wants to access some data in a table of a database, and if the requested information is not already in the memory cache for the database, then it is read from the appropriate datafiles and stored in memory.

Modified or new data is not necessarily written to a datafile immediately. To reduce the amount of disk access and to increase performance, data is pooled in memory and written to the appropriate datafiles all at once.

  • the redo log buffer: this stores redo entries—a log of changes made to the database. The instance writes redo log buffers to the redo log as quickly and efficiently as possible. The redo log aids in instance recovery in the event of a system failure.
  • the shared pool: this area of the SGA stores shared-memory structures such as shared SQL areas in the library cache and internal information in the data dictionary. An insufficient amount of memory allocated to the shared pool can cause performance degradation.
  • the Large pool Optional area that provides large memory allocations for certain large processes, such as Oracle backup and recovery operations, and I/O server processes
  • Database buffer cache: Caches blocks of data retrieved from the database
  • KEEP buffer pool: A specialized type of database buffer cache that is tuned to retain blocks of data in memory for long periods of time
  • RECYCLE buffer pool: A specialized type of database buffer cache that is tuned to recycle or remove block from memory quickly
  • nK buffer cache: One of several specialized database buffer caches designed to hold block sizes different from the default database block size
  • Java pool:Used for all session-specific Java code and data in the Java Virtual Machine (JVM)
  • Streams pool: Used by Oracle Streams to store information required by capture and apply

When you start the instance by using Enterprise Manager or SQL*Plus, the amount of memory allocated for the SGA is displayed.[20]

Library cache[edit]

The library cache[21] stores shared SQL, caching the parse tree and the execution plan for every unique SQL statement. If multiple applications issue the same SQL statement, each application can access the shared SQL area. This reduces the amount of memory needed and reduces the processing-time used for parsing and execution planning.

Data dictionary cache[edit]

The data dictionary comprises a set of tables and views that map the structure of the database.

Oracle databases store information here about the logical and physical structure of the database. The data dictionary contains information such as:

  • user information, such as user privileges
  • integrity constraints defined for tables in the database
  • names and datatypes of all columns in database tables
  • information on space allocated and used for schema objects

The Oracle instance frequently accesses the data dictionary to parse SQL statements. Oracle operation depends on ready access to the data dictionary—performance bottlenecks in the data dictionary affect all Oracle users. Because of this, database administrators must make sure that the data dictionary cache[22] has sufficient capacity to cache this data. Without enough memory for the data-dictionary cache, users see a severe performance degradation. Allocating sufficient memory to the shared pool where the data dictionary cache resides precludes this particular performance problem.

Program Global Area[edit]

The Program Global Area[23][24] or PGA memory-area of an Oracle instance contains data and control-information for Oracle's server-processes or background process. Every server or background process has its own PGA, the total of PGA elements is call Instance PGA.

The size and content of the PGA depends on the Oracle-server options installed. This area consists of the following components:

  • stack-space: the memory that holds the session's variables, arrays, and so on
  • session-information: unless using the multithreaded server, the instance stores its session-information in the PGA. In a multithreaded server, the session-information goes in the SGA.)
  • private SQL-area: an area that holds information such as bind-variables and runtime-buffers
  • sorting area: an area in the PGA that holds information on sorts, hash-joins, etc.

DBAs can monitor PGA usage via the system view.

Dynamic performance views[edit]

The dynamic performance views (also known as "fixed views") within an Oracle database present information from virtual tables (X$ tables)[25] built on the basis of database memory.[26] Database users can access the V$ views (named after the prefix of their synonyms) to obtain information on database structures and performance.

Process architectures[edit]

Oracle processes[edit]

The Oracle RDBMS typically relies on a group of processes running simultaneously in the background and interacting to monitor and expedite database operations. Typical operating environments might include - temporarily or permanently - some of the following individual processes (shown along with their abbreviated nomenclature):[27]

  • advanced queueing processes (Qnnn)[28]
  • archiver processes (ARCn)
  • checkpoint process (CKPT) *REQUIRED*
  • coordinator-of-job-queues process (CJQn): dynamically spawns slave processes for job-queues
  • database writer processes (DBWn) *REQUIRED*
  • Data Pump master process (DMnn)[29]
  • Data Pump worker processes (DWnn)[29]
  • dispatcher processes (Dnnn): multiplex server-processes on behalf of users
  • main Data Guard Broker monitor process (DMON)[30]
  • job-queue slave processes (Jnnn)[31]
  • log-writer process (LGWR) *REQUIRED*
  • log-write network-server (LNSn):[32] transmits redo logs in Data Guard environments
  • logical standby coordinator process (LSP0): controls Data Guard log-application
  • media-recovery process (MRP): detached recovery-server process
  • memory-manager process (MMAN): used for internal database tasks such as Automatic Shared Memory Management (ASMM)
  • memory-monitor process (MMON): process for automatic problem-detection, self-tuning and statistics-gathering[33]
  • memory-monitor light process (MMNL): gathers and stores Automatic Workload Repository (AWR) data
  • mmon slaves (Mnnnn—M0000, M0001, etc.): background slaves of the MMON process[34]
  • netslave processes (NSVn): Data Guard Broker inter-database communication processes[35]
  • parallel query execution servers (Pnnn)[36]
  • process-monitor process (PMON) *REQUIRED*
  • process-spawner process (PSP0): spawns Oracle background processes after initial instance startup[37]
  • queue-monitor coordinator process (QMNC): dynamically spawns queue monitor slaves[38]
  • queue-monitor processes (QMNn)
  • recoverer process (RECO)
  • remote file-server process (RFS): in Oracle Data Guard, a standby recipient of primary redo-logs[39]
  • monitor for Data Guard management (RSM0): Data Guard Broker Worker process[40]
  • shared server processes (Snnn): serve client-requests
  • space-management coordinator process (SMCO): coordinates space management (from release 11g)[41]
  • system monitor process (SMON) *REQUIRED*
User processes, connections and sessions[edit]

Oracle Database terminology distinguishes different computer-science terms in describing how end-users interact with the database:

  • user processes involve the invocation of application software[42]
  • a connection refers to the pathway linking a user process to an Oracle instance[43]
  • sessions consist of specific established groups of interactions, with each group involving a client process and an Oracle instance.[44]

Each session within an instance has a session identifier - a session ID or "SID"[45][46] (distinct from the Oracle system-identifier SID), and may also have an associated SPID (operating-system process identifier).[47]

Concurrency and locking[edit]

Oracle databases control simultaneous access to data resources with locks (alternatively documented as "enqueues").[48] The databases also use "latches" - low-level serialization mechanisms to protect shared data structures in the System Global Area.[49]

Oracle locks fall into three categories:[50]

  • DML locks (or data locks) protect data
  • DDL locks (or data dictionary locks) protect the structure of schema objects
  • System locks (including latches, mutexes and internal locks) protect internal database structures like data files.

Configuration[edit]

Database administrators control many of the tunable variations in an Oracle instance by means of values in a parameter file.[51] This file in its ASCII default form ("pfile") normally has a name of the format init<SID-name>.ora. The default binary equivalent server parameter file ("spfile") (dynamically reconfigurable to some extent)[52] defaults to the format spfile<SID-name>.ora. Within an SQL-based environment, the views V$PARAMETER[53] and V$SPPARAMETER[54] give access to reading parameter values.

Implementation

The Oracle DBMS kernel code depends on C programming. Database administrators have limited access to Oracle-internal C structures via V$ views and their underlying X$ "tables".[55]

Layers or modules in the kernel (depending on different releases) may include the following (given with their inferred meaning):[56][57][58]

K:  Kernel
KA: Kernel Access
KC: Kernel Cache
KCB: Kernel Cache Buffer
KCBW: Kernel Cache Buffer Wait
KCC: Kernel Cache Control file
KCCB: Kernel Cache Control file Backup
KCCCF: Kernel Cache Copy Flash recovery area
KCCDC: Kernel cache Control file Copy
KCP: Kernel Cache transPortable tablespace
KCR: Kernel Cache Redo
KCT: Kernel Cache insTance
KD: Kernel Data
KG: Kernel Generic
KGL: Kernel Generic library cache
KGLJ: Kernel Generic library cache Java
KJ: Kernel Locking
KK: Kernel Compilation
KQ: Kernel Query
KS: Kernel Service(s)
KSB: Kernel Service Background
KSM: Kernel Service Memory
KSR: Kernel Service Reliable message
KSU: Kernel Service User
KSUSE: Kernel Service User SEssion
KSUSECON: Kernel Service User SEssion CONnection
KSUSEH: Kernel Service User SEssion History
KT: Kernel Transaction(s)
KTU: Kernel Transaction Undo
KX: Kernel Execution
KXS: Kernel eXecution Sql
KZ: Kernel Security
K2: Kernel Distributed Transactions

Administration[edit]

The "Scheduler" (DBMS_SCHEDULER package, available from Oracle 10g onwards) and the Job subsystem (DBMS_JOB package) permit the automation of predictable processing.[59]

Oracle Resource Manager aims to allocate CPU resources between users and groups of users when such resources become scarce.[60]

Oracle Corporation has stated in product announcements that manageability for DBAs had improved from Oracle9i to 10g. Lungu and Vătuiu (2008) assessed relative manageability by performing common DBA tasks and measuring timings. [61] They performed their tests on a single Pentium CPU (1.7 GHz) with 512 MB RAM,running Windows Server 2000. From Oracle9i to 10g, installation improved 36%, day-to-day administration 63%, backup and recovery 63%, and performance diagnostics and tuning 74%, for a weighted total improvement of 56%. The researchers concluded that "Oracle10g represents a giant step forward from Oracle9i in making the database easier to use and manage".

Logging and tracing[edit]

Various file-system structures hold logs and trace files, which record different aspects of database activity. Configurable destinations for such records can include:

  • background dump (bdump) destination: contains files generated when an Oracle process experiences unexpected problems.[62] Also holds the "alert log".[63]
  • core dump (cdump) destination
  • user dump (udump) destination

Network access[edit]

Oracle Net Services allow client or remote applications to access Oracle databases via network sessions using various protocols.

Internationalization[edit]

Oracle Database software comes in 63 language-versions (including regional variations such as British English and American English). Variations between versions cover the names of days and months, abbreviations, time-symbols (such as A.M. and A.D.), and sorting.[64]

Oracle Corporation has translated Oracle Database error-messages into Arabic, Catalan, Chinese, Czech, Danish, Dutch, English, Finnish, French, German, Greek, Hebrew, Hungarian, Italian, Japanese, Korean, Norwegian, Polish, Portuguese, Romanian, Russian, Slovak, Spanish, Swedish, Thai and Turkish.[65]

Oracle Corporation provides database developers with tools and mechanisms for producing internationalized database applications: referred to internally as "Globalization".[66]

History[edit]

Patch updates and security alerts[edit]

Oracle Corporation releases Critical Patch Updates (CPUs) or Security Patch Updates (SPUs)[67] and Security Alerts to close security holes that could be used for data theft. Critical Patch Updates (CPUs) and Security Alerts come out quarterly on the Tuesday closest to 17th day of the month.

Releases and versions[edit]

Oracle products follow a custom release-numbering and -naming convention. With the Oracle RDBMS 10g release, Oracle Corporation began using the "10g" label in all versions of its major products, although some sources refer to Oracle Applications Release 11i as Oracle 11i.[clarification needed] The suffixes "i", "g" and "c" do not actually represent a low-order part of the version number, as letters typically represent in software industry version numbering; that is, there is no predecessor version of Oracle 10g called Oracle 10f. Instead, the letters "i", "g" and "c" stand for "internet", "grid" and "cloud" respectively.[68] Consequently, many simply drop the marketing "g" or "i" suffixes when referring to specific versions of an Oracle product.

Major database-related products and some of their versions include:

There was no v1, as Ellison, "knew no one would want to buy version 1".[69] Oracle's RDBMS release numbering has used the following codes:

  • Oracle v2 : 2.3
  • Oracle v3 : 3.1.3
  • Oracle v4 : 4.1.4.0-4.1.4.4
  • Oracle v5 : 5.0.22, 5.1.17, 5.1.22
  • Oracle v6 : 6.0.17-6.0.36 (no OPS code), 6.0.37 (with OPS)
  • Oracle7: 7.0.12–7.3.4
  • Oracle8 Database: 8.0.3–8.0.6
  • Oracle8i Database Release 1: 8.1.5.0–8.1.5.1
  • Oracle8i Database Release 2: 8.1.6.0–8.1.6.3
  • Oracle8i Database Release 3: 8.1.7.0–8.1.7.4
  • Oracle9i Database Release 1: 9.0.1.0–9.0.1.5 ( patchset as of December 2003)
  • Oracle9i Database Release 2: 9.2.0.1–9.2.0.8 (patchset as of April 2007)
  • Oracle Database 10g Release 1: 10.1.0.2–10.1.0.5 (patchset as of February 2006)
  • Oracle Database 10g Release 2: 10.2.0.1–10.2.0.5 (patchset as of April 2010)[70]
  • Oracle Database 11g Release 1: 11.1.0.6–11.1.0.7 (patchset as of September 2008)
  • Oracle Database 11g Release 2: 11.2.0.1–11.2.0.4 (patchset as of August 2013)
  • Oracle Database 12c Release 1: 12.1.0.1 (patchset as of June 2013)
  • Oracle Database 12c Release 1: 12.1.0.2 (patchset as of July 2014)
  • Oracle Database 12c Release 2: 12.2.0.1 (patchset as of March 2016[71])

The version-numbering syntax within each release follows the pattern: major.maintenance.application-server.component-specific.platform-specific.

For example, "10.2.0.1 for 64-bit Solaris" means: 10th major version of Oracle, maintenance level 2, Oracle Application Server (OracleAS) 0, level 1 for Solaris 64-bit.

The Oracle Database Administrator's Guide offers further information on Oracle Database release numbers.

Oracle Database product family[edit]

Based on licensing and pricing, Oracle Corporation groups its Oracle Database-related product portfolio into the Oracle Database product family, which consists of the following:[72]

  • Oracle Database editions: variations of the software designed for different scenarios.
  • Database options: extra cost offers providing additional database functionality.
  • Oracle data models: database schemas, offering pre-built data models with database analytics and business intelligence capabilities for specific industries.
  • Management packs: integrated set of Oracle Enterprise Manager tools for maintaining various aspects of Oracle Database.
  • Some of Oracle engineered systems, either specifically built for Oracle Database deployment or supporting such capability.
  • Other related products intended for use with Oracle Database.

Database editions[edit]

As of 2016 the latest Oracle Database version (12.1.0.2) comes in two editions:[72]

  • Oracle Database 12c Enterprise Edition (EE): Oracle Corporation's flagship database product. A fully featured edition of Oracle Database, it also allows purchase of add-on features in the form of Database Options and Management packs and imposes no limitation on server resources available to the database.[73]
  • Oracle Database 12c Standard Edition 2 (SE2): intended for small- to medium-sized implementations, this edition comes with Real Application Clusters option included, a reduced set of database features, and the licensing restriction to run on servers or clusters with a maximum of 2 sockets total and capped to use a maximum of 16 concurrent user threads.[74] Oracle positions SE2 as a starter edition, stressing complete upward compatibility and ease of upgrade to the more costly Enterprise Edition.[72][75]

Oracle Corporation also makes the following editions available:[76]

  • Oracle Database Express Edition 11gR2 (Oracle Database XE), a free-to-use entry-level version of Oracle Database 11gR2 available for Windows and Linux platforms limited to using only one CPU, up to 1 GB of RAM and storing up to 11 GB of user data. Oracle Database XE is a separate product from the rest of Oracle Database product family. It provides a subset of Standard Edition functionality (lacking features such as Java Virtual Machine, managed backup and recovery and high availability), is community-supported and comes with its own license terms.[77] Express Edition was first introduced in 2005 with Oracle 10g release with a limitation to a maximum of 4 GB of user data.[78] Oracle 11g Express Edition, released on 24 September 2011,[79] increased user data cap to 11 GB.[80]
  • Oracle Database Personal Edition, a single-user, single-machine development and deployment license, allows use of all database features and extra-cost database options (with the exception of the Oracle RAC option). It is available for purchase for Windows and Linux platforms only and does not include management packs.[76]

Up to and including Oracle Database 12.1.0.1, Oracle also offered the following:[81]

  • Standard Edition (SE) ran on single or clustered servers with a maximum capacity of 4 CPU sockets. It was largely the same as the current SE2 offer, including Real Application Clusters option at no additional cost, however allowing twice as much CPU sockets in a server or a cluster.
  • Standard Edition One (SE1), introduced with Oracle 10g, offered the same features as SE and was licensed to run on single servers with a maximum of two CPU sockets.

Oracle Corporation discontinued SE and SE1 with the 12.1.0.2 release and stopped offering new licenses for these editions on December 1, 2015.[82] Industry journalists and some[quantify] ISVs perceived Oracle's desupport of affordable SE1 and restrictive updates to SE in the form of SE2 (specifically, the introduction of thread throttling and halving the number of licensable CPU sockets without changing price-per-socket) as an attempt to repress customers' efforts to scale SE/SE1 installations up to "enterprise" class by means of virtualization, while at the same time pushing them towards the more expensive Enterprise Edition or to Oracle Cloud Database as a service.[83][84]

Database options[edit]

Oracle Corporation refers to a number of add-on database features as "database options".[72] These aim to enhance and complement existing database functionality to meet customer-specific requirements.[85] All Database Options are only available for Enterprise Edition and offered for an extra cost.[72][86] An exception to these two rules is Oracle Real Application Clusters option, which comes included with Oracle Database 12c Standard Edition 2 at no additional cost.[76]

  • Oracle Active Data Guard extends Oracle Data Guard functionality with advanced features, allowing read-only access to data in a physical standby database to offload primary of such tasks as reporting, ad-hoc queries, data extraction and backup, offloading redo transport and minimizing standby impact on commit response times (using Far Sync feature), providing option for rolling upgrades for non-RAC customers, managing clients workload across replicated database and improving automated service failover (using Global Data Services), etc.
  • Oracle Advanced Analytics allows access to in-database data mining algorithms and use of Oracle R Enterprise functionality, an integration with open-source R statistical programming language and environment.
  • Oracle Advanced Compression complements Enterprise Edition basic table compression feature with comprehensive data compression and Information Lifecycle Management capabilities, including those specifically tailored to Oracle's engineered systems, like Oracle Exadata.
  • Oracle Advanced Security provides Transparent Data Encryption and Data Redaction security features, the former allowing encryption of data stored in a database (all or a subset of it), exported using Data Pump, or backed up using Oracle Recovery Manager, and the latter allowing redaction of sensitive database data (e.g., credit card or social security numbers) returned to database applications.
  • Oracle Database In-Memory, an in-memory, column-oriented data store, has been seamlessly integrated[citation needed] into the Oracle Database. This technology aims to improve the performance of analytic workloads without impacting the performance of transactions that continue to use Oracle's traditional row format in memory. Note: data is persisted on disk only in a row format, so no additional storage is required. The product's performance comes through the in-memory columnar format and through the use of SIMD vector processing (Single Instruction processing Multiple Data values). Database In-Memory features include:
    • An In-Memory column store, a new[when?] component of the SGA called the In-Memory Area. One can allocate a little or a lot of memory to the In-Memory Area. The larger the In-Memory Area, the greater the number of objects that can be brought into memory in the In-Memory columnar format. Unlike in a pure in-memory database not all of the data in the Oracle Database requires populating into memory in the columnar format.
    • Only objects with the INMEMORY attribute get populated into the In-Memory column store. The INMEMORY attribute can be specified on a tablespace, table, (sub)partition, or materialized view. If it is enabled at the tablespace level, then all tables and materialized views in the tablespace are enabled for In-Memory by default.
    • Data is populated into a new In-Memory column store by a set of background processes referred to as worker processes (ora_w001_orcl). Each worker process receives a subset of database blocks from the object to populate into the In-Memory column store. Population is a streaming mechanism, simultaneously columnizing and compressing the data.
    • Oracle takes advantage of SIMD vector processing to scan the data in the columnar format. Instead of evaluating each entry in the column one at a time, SIMD vector processing lets a set of column values be evaluated together in a single CPU instruction. The column format used in the IM column store has been specifically designed[by whom?] to maximize the number of column entries that can be loaded into the vector registers on the CPU and evaluated in a single CPU instruction.
    • Fault tolerance for In-Memory Column Store runs on Oracle Engineered Systems (Oracle ExadataOracle Database Appliance and Oracle Supercluster), mirroring the data in memory across RAC nodes. If one RAC node fails, the database simply reads from the other side of the mirror.
    • In-Memory Aggregation improves performance of typical analytic queries using efficient in-memory arrays for joins and aggregation.[87][need quotation to verify]
  • Oracle Database Vault enforces segregation of dutiesprinciple of least privilege and other data access controls, allowing protection of application data from access by privileged database users.
  • Oracle Label Security is a sophisticated and flexible framework for a fine-grained label based access control (LBAC) implementation.
  • Oracle Multitenant is the capability that allows database consolidation and provides additional abstraction layer. In a Multitenant configuration, one Oracle database instance known as "container database" (CDB) acts as a federated database system for a collection of up to 252 distinct portable collections of database objects, referred to as "pluggable databases" (PDB), each appearing to an outside client as a regular non-CDB Oracle database.
  • Oracle On-Line Analytical Processing (OLAP) is Oracle implementation of online analytical processing.
  • Oracle Partitioning allows partitioning of tables and indices, where large objects are stored in database as a collection of individual smaller pieces at the same time appearing on application level as a uniform data object.
  • Oracle RAC One Node is a one-node version of Oracle Real Application Clusters, providing capabilities for database failover and high availability in the form of rolling upgrades, online instance migration, application continuity and automated quality of service management.
  • Oracle Real Application Clusters (Oracle RAC) is the cluster solution for Oracle Database.
  • Oracle Real Application Testing is a suite of features that enable comprehensive testing of system changes in a simulation of production-level workload and use. The option includes Database Replay, SQL Performance Analyzer, Database Consolidation Workbench and SQL Tuning Sets.
  • Oracle Spatial and Graph[88] complements the Oracle Locator feature (available in all editions of Oracle Database[89]) with advanced spatial capabilities enabling the development of complex geographic information systems and includes network data model and RDF/OWL Semantic graphs.
  • Oracle TimesTen Application-Tier Database Cache allows caching subsets of a database in the application tier for improved response time. It is built using Oracle TimesTen In-Memory Database.

Supported platforms[edit]

Oracle Database 12c is supported on the following OS and architecture combinations:

In 2011, Oracle Corporation announced the availability of Oracle Database Appliance, a pre-built, pre-tuned, highly available clustered database server built using two SunFire X86 servers and direct attached storage.

Some Oracle Enterprise edition databases running on certain Oracle-supplied hardware can use Hybrid Columnar Compression for more efficient storage.[91]

Database features[edit]

Apart from the clearly defined database options, Oracle databases may include many semi-autonomous software sub-systems, which Oracle Corporation sometimes refers to as "features" in a sense subtly different from the normal use of the word. For example, Oracle Data Guard counts officially as a feature, but the command-stack within SQL*Plus, though a usability feature, does not appear in the list of "features" in Oracle's list.[original research?] Such "features" may include (for example):

  • Active Session History (ASH), the collection of data for immediate monitoring of very recent database activity.[92]
  • Automatic Workload Repository (AWR)],[93][94] providing monitoring and statistical services to Oracle database installations from Oracle version 10. Prior to the release of Oracle version 10, the Statspack facility[95] provided similar functionality.
  • Clusterware
  • Data Aggregation and Consolidation
  • Data Guard for high availability
  • Generic Connectivity for connecting to non-Oracle systems.
  • Data Pump utilities, which aid in importing and exporting data and metadata between databases[96]
  • SQL*Loader, utility that facilitates high performance data loading.
  • Database Resource Manager (DRM), which controls the use of computing resources.[97]
  • Fast-start parallel rollback[98]
  • Fine-grained auditing (FGA) (in Oracle Enterprise Edition)[99] supplements standard security-auditing features[100]
  • Flashback for selective data recovery and reconstruction[101]
  • iSQL*Plus, a web-browser-based graphical user interface (GUI) for Oracle database data-manipulation (compare SQL*Plus)
  • Oracle Data Access Components (ODAC), tools that consist of:[102]
    • Oracle Data Provider for .NET (ODP.NET)[103]
    • Oracle Developer Tools (ODT) for Visual Studio
    • Oracle Providers for ASP.NET
    • Oracle Database Extensions for .NET
    • Oracle Provider for OLE DB
    • Oracle Objects for OLE
    • Oracle Services for Microsoft Transaction Server
  • Oracle-managed files (OMF) - a feature allowing automated naming, creation and deletion of datafiles at the operating-system level.
  • Oracle Multimedia (known as "Oracle interMedia" before Oracle 11g) for storing and integrating multimedia data within a database[104]
  • Oracle Spatial and Graph
  • Recovery Manager (RMAN) for database backup, restoration and recovery
  • SQL*Plus, a program that allows users to interact with Oracle database(s) via SQL and PL/SQL commands on a command-line. Compare iSQL*Plus.
  • SQLcl, a command-line interface for queries, developed on the basis of Oracle SQL Developer[105]
  • Oracle GoldenGate 11g (distributed real-time data acquisition)
  • Oracle Text uses standard SQL to index, search, and analyze text and documents stored in the Oracle database.

Utilities[edit]

Oracle Corporation classifies as "utilities" bundled software supporting data transfer, data maintenance and database administration.[112]

Utilities included in Oracle database distributions include:

Tools[edit]

Users can develop their own applications in Java and in PL/SQL, using tools such as:

As of 2007 Oracle Corporation had started a drive toward "wizard"-driven environments with a view to enabling non-programmers to produce simple data-driven applications.[114]

The Database Upgrade Assistant (DBUA)[115] provides a GUI for the upgrading of an Oracle database.[116]

JAccelerator (NCOMP) - a native-compilation Java "accelerator", integrates hardware-optimized Java code into an Oracle 10g database.[117]

Oracle SQL Developer, a free graphical tool for database development, allows developers to browse database objects, to run SQL statements and SQL scripts, and to edit and debug PL/SQL statements. It incorporates standard and customized reporting.

Oracle REST Data Services (ORDS) function as a Java EE-based alternative to Oracle HTTP Server,[118] providing a REST-based interface to relational data.[119]

Oracle's OPatch provides patch management for Oracle databases.[120]

The SQLTXPLAIN tool (or SQLT) offers tuning assistance for Oracle SQL queries.[121]

Testing[edit]
  • Oracle Live SQL makes available a test environment for Oracle Database users.[122]

External routines[edit]

PL/SQL routines within Oracle databases can access external routines registered in operating-system shared libraries.[123][124]

Use[edit]

The Oracle RDBMS has had a reputation among novice users as difficult to install on Linux systems.[citation needed] Oracle Corporation has packaged recent versions for several popular Linux distributions in an attempt to minimize installation challenges beyond the level of technical expertise required to install a database server.[citation needed]

Official support[edit]

Users who have Oracle support contracts can use Oracle's "My Oracle Support" or "MOS"[125] web site - known as "MetaLink" until a re-branding exercise completed in October 2010. The support site provides users of Oracle Corporation products with a repository of reported problems, diagnostic scripts and solutions. It also integrates with the provision of support tools, patches and upgrades.

The Remote Diagnostic Agent or RDA[126] can operate as a command-line diagnostic tool executing a script. The data captured provides an overview of the Oracle Database environment intended for diagnostic and trouble-shooting. Within RDA, the HCVE (Health Check Validation Engine)[127] can verify and isolate host system environmental issues that may affect the performance of Oracle software.

Database-related guidelines[edit]

Oracle Corporation also endorses certain practices and conventions as enhancing the use of its database products. These include:

  • Oracle Maximum Availability Architecture (MAA)[128] guidelines on developing high-availability systems
  • Optimal Flexible Architecture (OFA), blueprints for mapping Oracle-database objects to file-systems

Oracle Certification Program[edit]

Main article:   Oracle Certification Program

The Oracle Certification Program, a professional certification program, includes the administration of Oracle Databases as one of its main certification paths. It contains three levels:

  1. Oracle Certified Associate (OCA)
  2. Oracle Certified Professional (OCP)
  3. Oracle Certified Master (OCM)

User groups[edit]

A variety of official (Oracle-sponsored) and unofficial Oracle User Groups has grown up of users and developers of Oracle databases. They include:

Market position[edit]

As of 2013 Oracle holds #1 DBMS market share worldwide based on the revenue share ahead of its four closest competitors - IBM , MicrosoftSAP and Teradata.[130]

Competition[edit]

In the market for relational databases, Oracle Database competes against commercial products such as IBM's DB2 UDB and Microsoft SQL Server. Oracle and IBM tend to battle for the mid-range database market on UNIX and Linux platforms, while Microsoft dominates the mid-range database market on Microsoft Windows platforms. However, since they share many of the same customers, Oracle and IBM tend to support each other's products in many middleware and application categories (for example: WebSpherePeopleSoft, and Siebel Systems CRM), and IBM's hardware divisions work closely[citation needed] with Oracle on performance-optimizing server-technologies (for example, Linux on z Systems). Niche commercial competitors include Teradata (in data warehousing and business intelligence), Software AG's ADABASSybase, and IBM's Informix, among many others.

Increasingly, the Oracle database products compete against such open-source software relational database systems as PostgreSQLFirebird, and MySQL. Oracle acquired Innobase, supplier of the InnoDB codebase to MySQL, in part to compete better against open source alternatives, and acquired Sun Microsystems, owner of MySQL, in 2010. Database products licensed as open source are, by the legal terms of the Open Source Definition, free to distribute and free of royalty or other licensing fees.

Pricing[edit]

Oracle Corporation offers term licensing for all Oracle products. It bases the list price for a term-license on a specific percentage of the perpetual license price. Prospective purchasers can obtain licenses based either on the number of processors in their target machines or on the number of potential seats ("named users").[131]

Enterprise Edition (DB EE)
As of July 2010, the database that costs the most per machine-processor among Oracle database editions, at $47,500 per processor. The term "per processor" for Enterprise Edition is defined with respect to physical cores and a processor core multiplier (common processors = 0.5*cores). e.g. An 8-processor, 32-core server using Intel Xeon 56XX CPUs would require 16 processor licenses. [132] [133]
Standard Edition (DB SE)
Cheaper: it can run on up to four processors but has fewer features than Enterprise Edition—it lacks proper parallelization, [134]  etc.; but remains quite suitable for running medium-sized applications. There are not additional cost for Oracle RAC on the latest Oracle 11g R2 standard edition release.
Standard ONE (DB SE1 or DB SEO)
Sells even more cheaply, but remains limited to two CPUs. Standard Edition ONE sells on a per-seat basis with a five-user minimum. Oracle Corporation usually sells the licenses with an extra 22% cost for support and upgrades (access to My Oracle Support—Oracle Corporation's support site), which customers must renew annually.
Oracle Express Edition (DB XE) [135]  (Oracle XE)
An addition to the Oracle database product family ( beta  version released in 2005, production version released in February 2006), offers a free version of the Oracle RDBMS, but one limited to 11 GB of user data and to 1 GB of memory used by the database (SGA+PGA). [136]  XE uses no more than one CPU and lacks an internal   JVM. XE runs on 32-bit and 64-bit Windows and 64-bit Linux, but not on AIX, Solaris, HP-UX and the other operating systems available for other editions. Support is via a free   Oracle Discussion Forum  only.

See also[edit]

References[edit]

  1. Jump up^ Dietrich, Mike (1 March 2017). "Oracle Database 12.2.0.1 on-prem is now available, too". Retrieved 3 March 2017.
  2. Jump up^ Lextrait, Vincent (March 2016). "The Programming Languages Beacon, v16". Retrieved 15 December 2016.
  3. Jump up^ "What's New". Retrieved 29 November 2010.
  4. Jump up^ "Welcome to Larryland". Guardian. Retrieved 2009-12-19.
  5. Jump up^ Bhakthavatsalam, Namrata (August 2008). "Glossary"Oracle Database Client. Retrieved 2008-11-17The SID automatically defaults to the database name portion of the global database name (sales in the example sales.us.example.com) until you reach eight characters or enter a period. You can accept or change the default value.
  6. Jump up^ McLaughlin, Michael (2011). Oracle Database 11g & MySQL 5.6 Developer Handbook. Osborne Oracle Press. Mark Anthony De Castro & McGraw-Hill Professional. p. 11. ISBN 9780071768856. Retrieved 2012-06-04The set of programs also lets you start a database instance. They allocate a shared memory realm where other programs process SQL statements. This shared memory realm is the active database instance.
  7. Jump up^ "A Guide to Oracle RAC"
  8. Jump up^ Alapati, Sam R. (2008). Expert Oracle Database 11g Administration. The expert's voice in Oracle. Apress. p. 170. ISBN 978-1-4302-1015-3. Retrieved 2010-07-07Oracle databases are logically divided into one or more tablespaces. An Oracle tablespace is a logical entity that contains the physical datafiles.
  9. Jump up^ Ashdown, Lance; Kyte, Tom (2011). "Oracle Database Concepts: 11g Release 2 (11.2)". Oracle Corporation. Retrieved 2013-07-12You can use tablespaces to achieve the following goals: [...] Assign a quota (space allowance or limit) to a database user [...]
  10. Jump up^ "Oracle 8"Oracle FAQs. Retrieved 19 January 2015.
  11. Jump up^ Alapati, Sam R. (2004). OCP Oracle Database 10g: New Features for Administrators Exam Guide. McGraw-Hill/Osborne. pp. 18? or 287?. ISBN 0-07-225862-4.
  12. Jump up^ Oracle Corporation, Oracle Database Concepts 11g Release 1 (11.2), http://download.oracle.com/docs/cd/E11882_01/server.112/e25789/glossary.htm#CHDDFGEC, 2011
  13. Jump up^ Watkins, Bob (30 January 2007). "Look inside ASM disk groups with Oracle 10gR2's ASMCMD"techrepublic.com. ZDNet. Retrieved 2009-07-30In 10g, Oracle introduced a new kind of storage for its database product. Automatic Storage Management (ASM) is a logical volume manager that takes physical disk partitions and manages their contents [...] Until ASM, there were only two choices: file system storage and raw disk storage.
  14. Jump up^ Oracle FAQ
  15. Jump up^ "Known schemas in Oracle". Adp-gmbh.ch. Retrieved 2009-12-19.
  16. Jump up^ "11g Default Schema". ABCdba.com. Retrieved 2010-10-26.
  17. Jump up^ "Optimizer plan stability definition". Adp-gmbh.ch. Retrieved 2009-12-19.
  18. Jump up^ "Oracle's sample schemas". Adp-gmbh.ch. Retrieved 2009-12-19.
  19. Jump up^ "Oracle Architecture, System Global Area". World-class-programme.com. Retrieved 2009-12-19.
  20. Jump up^ Karlsson André."Oracle DB Architecture - The Basics"
  21. Jump up^ "Oracle architecture, the library cache section". World-class-programme.com. Retrieved 2009-12-19.
  22. Jump up^ "Oracle Architecture, data dictionary cache". World-class-programme.com. Retrieved 2009-12-19.
  23. Jump up^ "Oracle architecture, Program Global Area section". World-class-programme.com. Retrieved 2009-12-19.
  24. Jump up^ PGA Definition, Oracle Database Master Glossary
  25. Jump up^ Bell, Mike (2002). "V$ views - don't leave $HOME without them" (PDF). New York Oracle users Group. pp. 9–10. Retrieved 2010-03-09X$ tables are fixed tables created in memory at database startup [...] V$ views are created on one or more X$ tables
  26. Jump up^ Tony, Morales; et al. (October 2009). "Overview of the Dynamic Performance Views" (PDF)Oracle Database Reference 11g Release 2 (11.2)Oracle Corporation. pp. 8–1. Retrieved 2010-03-09V$INDEXED_FIXED_COLUMN displays the columns in dynamic performance tables that are indexed (X$ tables).[dead link]
  27. Jump up^ "Oracle Process architecture concepts". Download.oracle.com. Retrieved 2009-12-19.
  28. Jump up^ Antognini, Christian (2008). Troubleshooting Oracle Performance. Apress Series. Apress. p. 71. ISBN 978-1-59059-917-4. Retrieved 2011-05-05.
  29. Jump up to:a b Alapati, S (2005). "Chapter 14: Using Data Pump export and import". Expert Oracle Database 10g Administration. ITPro collection. Apress. p. 598. ISBN 9781430200666. Retrieved 2015-08-11The worker process is named <instance>_DWnn_<pid>. It is the process that actually performs the heavy-duty work of loading and unloading data. The master process (DMnn) creates the worker process.
  30. Jump up^ Carpenter, Larry (2009). Oracle Data Guard 11g Handbook. et al. Oracle Press. p. 173. ISBN 978-0-07-162111-3Data Guard Monitor (DMON)[:] This Broker-controller process is the main Broker process and is responsible for coordinating all Broker actions as well as maintaining the Broker configuration files.
  31. Jump up^ Debes, Norbert (2009). Secrets of the Oracle Database. Apress series. Apress. p. 173. ISBN 978-1-4302-1952-1. Retrieved 2011-05-02The job queue is handled by the job queue coordinator process CJQ0 and job queue slave processes (JNNN).
  32. Jump up^ Alapati, Sam; Kim, Charles (2007). "10: Data Guard". Oracle Database 11g: New Features for DBAs and Developers. Expert's voice in Oracle. Apress. pp. 430–431. ISBN 9781430204695. Retrieved 2015-11-24The optional net_timeout parameter to the log_archive_dest_n parameter allows the DB As to specify the number of seconds the log writer process (LGWR) waits for a response from the logwriter network server (LNS) before terminating the process.
  33. Jump up^ Safaribooksonline.com Niemiec, Richard (25 June 2007). "1.30. New Background Processes in 10g". Oracle Database 10g Performance Tuning: Tips & Techniques. Oracle Press. p. 967. ISBN 978-0-07-226305-3. Retrieved 2009-08-12MMON Memory Monitor process is associated with the Automatic Workload Repository new features used for automatic problem detection and self-tuning. MMON writes out the required statistics for AWR on a scheduled basis.
  34. Jump up^ Safaribooksonline.comNiemiec, Richard (25 June 2007). "1.30. New Background Processes in 10g". Oracle Database 10g Performance Tuning: Tips & Techniques. Oracle Press. p. 967. ISBN 978-0-07-226305-3. Retrieved 2009-08-12M000 These are MMON background slave (m000) processes.
  35. Jump up^ Rich, Bert (2015). "Oracle Database Reference, 11g Release 2 (11.2): Background Processes"docs.oracle.comOracle Help Center. Oracle Corporation. Retrieved 2015-08-05NSVn[:] Data Guard Broker NetSlave Process[:] Performs broker network communications between databases in a Data Guard environment
  36. Jump up^ Kyte, Thomas; Kuhn, Darl (2014). "5: Oracle Processes". Expert Oracle Database Architecture. SpringerLink : Bücher (3 ed.). Apress. p. 202. ISBN 9781430262992. Retrieved 2016-08-30Pnnn: Parallel Query Execution Servers [...] Oracle 7.1.6 introduced the parallel query capability into the database. [...] When using parallel query, you see processes named Pnnn. These are the parallel query execution servers themselves.
  37. Jump up^ "Oracle Database Online Documentation 12c Release 1 (12.1) / Database Administration: F Background Processes". Oracle. 2014. p. 2497. Retrieved 2014-11-12Process Spawner Process [...] Spawns Oracle background processes after initial instance startup
  38. Jump up^ Dyke, Julian; Steve Shaw (2006). Pro Oracle database 10g RAC on Linux: installation, administration, and performance. Apress Series. Apress. p. 45. ISBN 978-1-59059-524-4. Retrieved 2011-05-05In Oracle 10.1, a queue monitor coordinator (QMNC) process [...] dynamically spawns queue monitor slaves (q000 to q009).
  39. Jump up^ Vallath, Murali (2006). Oracle 10g RAC Grid, Services & Clustering. Digital Press. p. 467. ISBN 9780080492032. Retrieved 2014-04-14Redo data transmitted from the primary database is received by the remote file server (RFS) process on the standby system, where the RFS process writes the redo data to archived log files or standby redo log files.
  40. Jump up^ Rich, Bert (2015). "Oracle Database Reference, 11g Release 2 (11.2)"docs.oracle.com. Oracle Corporation. Retrieved 2015-05-04Performs monitoring management tasks related to Data Guard on behalf of DMON
  41. Jump up^ Alapati, Sam; Kim, Charles (2008). Oracle Database 11g: New Features for DBAs and Developers. Expert's voice in Oracle. Apress. p. 16. ISBN 9781430204695. Retrieved 2016-06-07New Oracle Background Processes [...] SMCO: the space management coordinator process is in charge of coordinating the work of space management-related tasks such as space reclamation, for example.
  42. Jump up^ Cyran, Michele; Paul Lane (2005). "Process Architecture"Oracle Database Concepts. Oracle Corporation. Retrieved 2008-08-13When a user runs an application program (such as a Pro*C program) or an Oracle tool (such as Enterprise Manager or SQL*Plus), Oracle creates a user process to run the user's application.
  43. Jump up^ Cyran, Michele; Paul Lane (2005). "Process Architecture"Oracle Database Concepts. Oracle Corporation. Retrieved 2008-08-13A connection is a communication pathway between a user process and an Oracle instance.
  44. Jump up^ Cyran, Michele; Paul Lane (2005). "Process Architecture"Oracle Database Concepts. Oracle Corporation. Retrieved 2008-08-13A session is a specific connection of a user to an Oracle instance through a user process
  45. Jump up^ Morales, Tony (2008). "V$SESSION"Oracle Database Reference 11g Release 1 (11.1). Oracle. Retrieved 2016-04-07V$SESSION displays session information for each current session. [...] SID [...] Session identifier
  46. Jump up^ Burleson, Donald K. (2004). Physical Database Design Using Oracle. Foundations of Database Design. CRC Press. p. 104. ISBN 9780203506233. Retrieved 2016-04-07[...] Oracle assigns a unique session ID into the v$session table for each individual user logged on to Oracle.
  47. Jump up^ Rich, Kathy (April 2009). "Oracle Database Reference, 10g Release 2 (10.2)" V$PROCESSdocs.oracle.com. Redwood city, California: Oracle Corporation. Retrieved 2016-10-30SPID VARCHAR2(12) Operating system process identifier
  48. Jump up^ Chan, Immanuel (July 2008). "Glossary"Oracle Database Performance Tuning Guide 11g Release 1 (11.1). Oracle Corporation. Retrieved 2009-04-29enqueue[:] This is another term for a lock.
  49. Jump up^ "Oracle Database Master Glossary: 11g Release 1 (11.1)". Oracle Corporation. Archived from the original on 16 March 2010. Retrieved 2009-04-24latch[:] A simple, low-level serialization mechanism to protect shared data structures in the System Global Area.
  50. Jump up^ Ashdown, Lance; Kyte, Tom (2014). "Oracle Database Concepts, 12c Release 1 (12.1): Data Concurrency and Consistency". Oracle Corporation. Retrieved 2015-08-19.
  51. Jump up^ Strohm, Richard; et al. (October 2008). "Parameter Files"Oracle Database Concepts 11g Release 1 (11.1). Oracle Corporation. Retrieved 2009-07-14Parameter files contain a list of configuration parameters for that instance and database.
  52. Jump up^ Strohm, Richard; et al. (October 2008). "Initialization Parameter Files and Server Parameter Files"Oracle Database Concepts 11g Release 1 (11.1). Oracle Corporation. Retrieved 2009-07-14.
  53. Jump up^ Morales, Tony; et al. (April 2009). "V$PARAMETER"Oracle Database Reference 11g Release 1 (11.1). Oracle Corporation. Retrieved 2009-07-14V$PARAMETER displays information about the initialization parameters that are currently in effect for the session.
  54. Jump up^ Morales, Tony; et al. (April 2009). "V$SPPARAMETER"Oracle Database Reference 11g Release 1 (11.1). Oracle Corporation. Retrieved 2009-07-14V$SPPARAMETER displays information about the contents of the server parameter file.
  55. Jump up^ Debes, Norbert (2010). "9: Introduction to X$ Fixed Tables". Secrets of the Oracle Database. The Expert's voice in Oracle. Berkeley, California: Apress. p. 93. ISBN 9781430219538. Retrieved 2016-10-26At least a significant part, if not all of the code for the ORACLE DBMS kernel, is written in the C programming language. [...] The basic idea behind V$ views is to expose information in C data structures to database administrators. This is done by mapping V$ views to C data structures through some intermediate layers. X$ tables are one of the intermediate layers. They are the layer closest to C [...] Of course the word table in X$ table has a meaning that is almost entirely different from the meaning in a SQL context.
  56. Jump up^ Debes, Norbert (2010). "9: Introduction to X$ Fixed Tables". Secrets of the Oracle Database. The Expert's voice in Oracle. Berkeley, California: Apress. pp. 94–96. ISBN 9781430219538. Retrieved 2016-10-26Many X$ table names follow a strict naming convention, where the first few letters represent a layer or module in the ORACLE kernel. [...] Abbreviations used in X$ Fixed Table Names [:]
  57. Jump up^ "Oracle x$ tables". Burleson Consulting. Retrieved 2016-10-26Oracle Kernel Database Layers
  58. Jump up^ "Oracle X$ Tables". Retrieved 2016-10-26Updated to Oracle 12.1.0.2
  59. Jump up^ Bryla, Bob; Thomas, Biju (2006). OCP: Oracle 10g New Features for Administrators Study Guide: Exam 1Z0-040. John Wiley & Sons. p. 95. ISBN 9780782150858. Retrieved 2013-10-10Oracle 10g includes a [...] scheduling mechanism to automate routine tasks. [...] It is a collection of procedures and functions in the DBMS_SCHEDULER package. The earlier versions of Oracle included the DBMS_JOB program to schedule jobs; this utility is still available in Oracle 10g.
  60. Jump up^ Ingram, Geoff (2002). High-Performance Oracle: Proven Methods for Achieving Optimum Performance and Availability. John Wiley & Sons. pp. 354–355. ISBN 9780471430346. Retrieved 2014-01-15Oracle Resource Manager is [...] designed to ensure that CPU resources can be allocated fairly between groups of users on a single instance [...]
  61. Jump up^ Lungu, Ion; Vătuiu, Teodora (2008). Bolunduţ, Ioan-Lucian, ed. "Manageability comparison: Oracle Database 10g and Oracle9i Database" (PDF)Annals of the University of Petroşani, Economics. Petroşani, Romania: Universitas Publishing House. 8 (1): 295–300. ISSN 1582-5949. Retrieved 2014-03-06[...] we performed a basic and common DBA tasks on the two products and measured the time taken and the steps required to complete each task, to assess their relative manageability.
  62. Jump up^ Wessler, Michael (2002) [2001]. Oracle DBA on Unix and Linux. Kaleidoscope Series. Indianapolis: Sams Publishing. p. 74. ISBN 9780672321580. Retrieved 2016-09-09Background dump (bdump) files are generated when an Oracle process experiences unexpected problems.
  63. Jump up^ Alapati, Sam (2006). "The Alert Log File". Expert Oracle Database 10g Administration. Expert's Voice. Apress. p. 111. ISBN 9781430200666. Retrieved 2016-09-09Every Oracle database has an alert log named alertdb_name.log (where db_name is the name of the database). The alert log captures major changes and events that occur during the running of the Oracle instance, including log switches, any Oracle-related errors, warnings, and other messages. [...] Oracle puts the alert log in the location specified for the BACKGROUND_DUMP_DEST initialization parameter. [...] Commonly, it is located in a directory called bdump, which stands for background dump directory.
  64. Jump up^ "Locale Languages". Retrieved 2008-02-26.
  65. Jump up^ "Error Message Languages". Retrieved 2008-02-26.
  66. Jump up^ Shea, Cathy; et al. (September 2007). "Overview of Globalization Support"Oracle Database Globalization Support Guide 11g Release 1 (11.1)Oracle Corporation. Retrieved 2009-02-16In the past, Oracle referred to globalization support capabilities as National Language Support (NLS) features. NLS is actually a subset of globalization support. NLS is the ability to choose a national language and store data in a specific character set. Globalization support enables you to develop multilingual applications and software products that can be accessed and run from anywhere in the world simultaneously.
  67. Jump up^ Baransel, Emre (2013). Oracle Data Guard 11gR2 Administration Beginner's Guide. Packt Publishing Ltd. ISBN 9781849687911. Retrieved 2014-01-15You should not get confused between Critical Patch Update (CPU) and Security Patch Update (SPU) as CPU terminology has been changed to SPU from October 2012.
  68. Jump up^ theregister.co.uk: Oracle gears up for infrastructure cloud and 12c database launches • The Register
  69. Jump up^ Julie Bort (September 29, 2014). "Larry Ellison Is A Billionaire Today Thanks To The CIA".
  70. Jump up^http://www.oracle.com/technetwork/topics/linuxx86-64soft-092277.html
  71. Jump up^ Compare: Jellema, Lucas (2016-09-28). "Oracle Database 12c Release 2 is out – just only on the cloud". Amis Technology Blog. Retrieved 2017-03-23The initial availability of Oracle Database 12c Release 2 is through the Exadata Express Cloud Service – starting at $175 per month (for 20 GB data), the full Oracle Database with all database options, fully managed by Oracle. And as Larry Ellison presented in his keynote session at Oracle OpenWorld, 12.2.0.1 will be rolled out across the cloud in steps [...].
  72. Jump up to:a b c d e Gelhausen, Jenny (August 2015). "Oracle Database 12c Product Family" (PDF)Oracle Technology Network. Retrieved 17 February 2016.
  73. Jump up^ Oracle Database 12c Enterprise Edition
  74. Jump up^ Oracle Corporation (2015). "Brief: Oracle Database Standard Edition 2" (PDF)Oracle Database 12c Standard Edition 2. Retrieved 17 February 2016.
  75. Jump up^ Oracle Database 12c Standard Edition 2
  76. Jump up to:a b c Oracle Database Editions
  77. Jump up^ Oracle Technology Network Developer License Terms for Oracle Database Express Edition
  78. Jump up^ "Oracle Express Edition". Retrieved 2013-02-21[...] this topic uses Oracle® 10g Express Edition. [...] User data cannot exceed 4 gigabytes in size (in addition to Oracle system data).
  79. Jump up^ Niemiec, Richard (2012). Oracle Database 11g Release 2 Performance Tuning Tips & Techniques. Osborne Oracle PressMcGraw-Hill Professional. p. 47. ISBN 9780071780261. Retrieved 2013-02-20[...] Oracle 11g Express Edition Released (September 24, 2011).
  80. Jump up^ Kanaracus, Chris (2011-04-04). "Oracle releases beta for Express Edition of 11g database"Computerworld. Computerworld Inc. Retrieved 2013-02-21[...] no more than 11 GB of user data can be placed in an XE database, and it can use no more than 1 GB of RAM [...]
  81. Jump up^ Hardie, Willie (November 2009). "Oracle Database 11g Product Family" (PDF)Oracle Technology Network. Retrieved 17 February 2016.
  82. Jump up^ Colon, Eliot Arlo (November 19, 2015). "Is It Time to Move from Oracle Database Standard Edition 2 or Enterprise Edition?"Database Journal. Retrieved 17 February 2016.
  83. Jump up^ Clarke, Gavin (September 7, 2015). "Oracle plugs socket numbers on DIY Standard Edition"The Register. Retrieved 17 February 2016The change [...] seems intended to stop customers lashing together copies of entry level SE and SE1 before using VMware to scale up to enterprise-class clusters.
  84. Jump up^ Martin, Alexander J (January 20, 2016). "Oracle's SE2 update the end for some ISVs, says veteran systems firm"The Register. Retrieved 17 February 2016[Oracle] noticed the increases in server capabilities and so it has made a move to rectify that [...] [If] the customers are unhappy with it then there's always the cloud option.
  85. Jump up^ Oracle Corporation. "Database Options Overview"Oracle Technology Network. Retrieved 17 February 2016.
  86. Jump up^ Oracle Corporation. "Oracle Technology Global Price List" (PDF)www.oracle.com. Retrieved 17 February 2016.
  87. Jump up^ Oracle Corporation. "In-Memory Aggregation"Oracle Help Center. Retrieved 17 February 2016.
  88. Jump up^ "Oracle Spatial and Graph". Oracle. Retrieved 2016-07-06The Oracle Spatial and Graph option for Oracle Database 12c includes advanced features for spatial data and analysis; physical, network, and social graph applications; and a foundation to help location-enable business applications.
  89. Jump up^ Kothuri, Ravikanth; Godfrind, Albert; Beinat, Euro (2012). "8: Spatial indexes and operators". Pro Oracle Spatial for Oracle Database 11g. Expert's voice in Oracle. Apress. p. 244. ISBN 9781430242888. Retrieved 2016-07-06A majority of the functionality of spatial indexes and spatial operators is part of Oracle Locator (included in all editions of the Oracle Database).
  90. Jump up^ Operating System Requirements for x86-64 Linux Platforms
  91. Jump up^ Martin, Christopher (2011). "Hybrid Columnar Compression And Oracle Storage" (PDF). Oracle Corporation. p. 1. Retrieved 2013-02-07Oracle Database Hybrid Columnar Compression is included at no extra cost with the Sun ZFS Storage Appliance and Pillar Axiom Storage System [...] Oracle's Hybrid Columnar Compression technology [...] uses a combination of both row and columnar methods for storing data. This approach [...] achieves the compression benefits of columnar storage, while avoiding the performance shortfalls of a pure columnar format.
  92. Jump up^ Alapati, Sam R. (2005). Expert Oracle database 10g administration. Apress. p. 845. ISBN 978-1-59059-451-3. Retrieved 2009-05-25... ASH records very recent session activity (within the last five or ten minutes).
  93. Jump up^ "Week 6: Automatic Workload Repository". Archived from the original on 9 August 2007. Retrieved 12 July 2007.
  94. Jump up^ Alapati, Sam (2006). "4: Introduction to the Oracle Database 10g Architecture". Expert Oracle Database 10g Administration. Expert's Voice. Apress. p. 142. ISBN 9781430200666. Retrieved 2016-02-24Automatic Workload Repository (AWR) [-] The AWR plays the role of the 'data warehouse of the database,' and it is the basis for most of Oracle's self-management functionality. The AWR collects and maintains performance statistics for problem-detection and self-tuning purposes. By default, every 60 minutes the database collects statistical information from the SGA and stores it in the AWR, in the form of snapshots.
  95. Jump up^ Sai Peck lee; Džemal Zildžić (2006). "Oracle Database Workload Performance Measurement and Tuning Toolkit"Issues in Informing Science and Information Technology3: 371–381. Retrieved 2010-02-05Statspack utility consists of a set of Programming Language/Structured Query Language (PL/SQL) scripts, executed against the database to gather, store data and metrics, and generate reports database activity reports[dead link]
  96. Jump up^ "Overview of Oracle Data Pump". Download.oracle.com. Retrieved 2009-12-19.
  97. Jump up^ Greenwald, Rick; Robert Stackowiak; Jonathan Stern (November 2007). Oracle Essentials: Oracle Database 11g. O'Reilly. p. 184. ISBN 978-0-596-51454-9The Database Resource Manager (DRM) was first introduced in Oracle 8i [...] to place limits on the amount of computer resources that can be used [...]
  98. Jump up^ Ault, Mike; Liu, Daniel; Tumma, Madhu (2003). Don Burleson, ed. Oracle Database 10g New Features: Oracle 10g Reference for Advanced Tuning & Administration. Oracle In-Focus series. Rampant TechPress. pp. 51? or 544?. ISBN 978-0-9740716-0-2. Retrieved 2011-11-16In the fast-start parallel rollback method, the background process SMON [...] rolls back a set of transactions in parallel [...] This feature is particularly useful when a system has transactions that run a long time before committing [...]
  99. Jump up^ "Feature Availability by Edition"Oracle Database Licensing Information 11g Release 1 (11.1) Part Number B28287-08. Oracle Corporation. May 2008. Retrieved 2008-08-19.
  100. Jump up^ Nanda, Arup. "Auditing Tells All"Oracle Database 10g: The Top 20 Features for DBAs. Oracle Corporation. Archived from the original on 15 May 2008. Retrieved 2008-08-19...the standard audit (available in all versions) and the fine-grained audit (available in Oracle 9i and up ...
  101. Jump up^ Oracle.com
  102. Jump up^ "Oracle Product Accessibility Status: Database Server Enterprise Edition". Oracle Corporation. 2 June 2008. Retrieved 2009-04-14.[dead link]
  103. Jump up^ "Oracle Data Provider for .NET". Oracle Corporation. Archived from the original on 13 May 2008. Retrieved 2009-05-07The Oracle Data Provider for .NET (ODP.NET) features optimized ADO.NET data access to the Oracle database.
  104. Jump up^ "Oracle Multimedia"www.oracle.com. Oracle Technology Network. Retrieved 2013-12-12Oracle Multimedia is a feature that enables Oracle Database to store, manage, and retrieve multimedia data in an integrated manner with other enterprise information.
  105. Jump up^ Smith, Jeff (September 2015). "The Modern Command Line". Oracle Magazine. Oraxcle Technology Network. Oracle Corporation. Retrieved 2016-01-05SQLcl is a new Java-based command-line interface for Oracle Database. [...] The new take on SQL*Plus, SQLcl, is based on the script engine in Oracle SQL Developer and is attached to a Java-based command-line interface.
  106. Jump up^ Greenwald, Rick; Stackowiak, Robert; Alam, Maqsood; Bhuller, Mans (2011). Achieving Extreme Performance with Oracle Exadata. Osborne ORACLE Press Series. McGraw-Hill Prof Med/Tech. pp. 328? or 432?. ISBN 978-0-07-175259-6. Retrieved 2011-10-12The UCP is a Java-basd connection pool that supports JDBC, the Lightweight Directory Access Protocol (LDAP) and Java EE Connector Architecture (JCA) connection types from any middle tier.
  107. Jump up^ "Virtual Private Database" appears listed as a feature available as part of Oracle Enterprise Edition in: Manmeet Ahluwalia; et al. (October 2009). "Feature Availability by Edition"Oracle Database Licensing Information 11g Release 2 (11.2). Oracle Corporation. Retrieved 2010-02-09.
  108. Jump up^ Kate, Aniket; Menezes, Bernard; Singh, Ashish (December 2005). "Security/Privacy Issues in Providing Database as a Service". Proceedings of 3rd International Conference on E-Governance, ICEG 2005 (PDF). Lahore: Lahore University of Management Sciences. pp. 156–159. Retrieved 2010-02-09Oracle's Virtual Private Database (VPD) [...] is a practically implemented model for fine-grained access control wherein one or more security policies are attached to each table and view in the database. These polices are sets of functions coded in PL/SQL, C or Java. A user query that accesses a table or view having a security policy, is dynamically and transparently modified by appending a predicate. This predicate is returned by the policy function for the relation/view and is a function of the user who has fired the query. A secure application context is created for each user at log in.
  109. Jump up^ "Oracle Application Express 4.1"apex.oracle.com. Oracle Corporation. Retrieved 2012-01-09Oracle Application Express is a no-cost option of the Oracle database.
  110. Jump up^ "Oracle XML DB"Oracle Technology Network. Oracle Corporation. Retrieved 2016-02-11Oracle XML DB is a high-performance, native XML storage and retrieval technology that is delivered as a part of all versions of Oracle Database.
  111. Jump up^ Mensah, Kuassi (2011). Oracle Database Programming using Java and Web Services. Digital Press. p. 518. ISBN 9780080525112. Retrieved 2016-02-11The Oracle XML Database (also known as XDB) furnishes a native XMLType data type for managing XML documents directly in the database.
  112. Jump up^ Cyran, Michele (October 2005). "Oracle Database Concepts, 10g Release 2 (10.2)". Oracle Help Center. Oracle Database Online Documentation, 10g Release 2 (10.2). Oracle Corporation. Oracle Utilities [...] This chapter describes Oracle database utilities for data transfer, data maintenance, and database administration.
  113. Jump up^ For example: Allen, Grant; Bryla, Bob; Kuhn, Darl; Allen, Chris (2009). Oracle SQL Recipes: A Problem-Solution Approach. Expert's voice in Oracle. Apress. p. 482. ISBN 9781430225102. Retrieved 2015-11-29The oradebug utility can be used to enable and disable tracing for a session.
  114. Jump up^ Evdoridis, Theodoros; Tzouramanis, Theodoros (2007). "A Generalized Comparison of Open Source and Commercial Database management Systems". In St. Amant, Kirk; Still, Brian. Handbook of Research on Open Source Software: Technological, Economic, and Social Perspectives. IGI Global research collection. IGI Global. pp. 294–308. ISBN 9781591408925. Retrieved 2013-02-20Oracle Corporation has started a drive toward wizard-driven environments with a view to enabling non-programmers to produce simple data-driven applications.
  115. Jump up^ Shaw, John; Dyke, Julian (2006). Pro Oracle Database 10g RAC on Linux: Installation, Administration, and Performance. Expert's Voice in Oracle. Apress. p. 54. ISBN 9781430202141. Retrieved 2012-01-22The Database Upgrade Assistant (DBUA) is a GUI tool that guides you through the various steps in the upgrade process and configures the database for the target release.
  116. Jump up^ Freeman, Robert (2004). Oracle Database 10g New Features. Osborne ORACLE Press Series. McGraw Hill Professional. p. 4. ISBN 9780072229479. Retrieved 2014-01-22The DBUA is a GUI that is designed for upgrading your Oracle database [...]
  117. Jump up^ Iyer, Venkatasubramaniam (August 2006). "9 Oracle Database Java Application Performance". Oracle Database Java Developer's Guide: 10g Release 2 (10.2). et al. Redwood City: Oracle USA, Inc. Retrieved 2013-07-29Native compilation provides a speed increase ranging from two to ten times the speed of the bytecode interpretation.
  118. Jump up^ Murray, Chuck (2016). "Oracle REST Data Services Installation and Configuration Guide, Release 2.0". Oracle. Retrieved 2016-08-01Oracle REST Data Services is a Java EE-based alternative for Oracle HTTP Server and mod_plsql. The Java EE implementation offers increased functionality including a command line based configuration, enhanced security, file caching, and RESTful web services.
  119. Jump up^ Compare: Harrison, Guy (2015). Next Generation Databases. Apress. p. 201. ISBN 9781484213292. Retrieved 2016-08-01[...] Oracle REST Data Services (ORDS) [...] provides a REST-based interface to data in relational tables.
  120. Jump up^ Kuhn, Darl; Kim, Charles; Lopuz, Bernard (2008). Linux Recipes for Oracle DBAs. Apress Series. Apress. pp. 275? or 501?. ISBN 978-1-4302-1575-2. Retrieved 2011-12-05OPatch is a collection of Perl scripts and Java classes providing the capability to apply and roll back interim (one-off) patches to an Oracle database environment.
  121. Jump up^ Charalambides, Stelios (2013). Oracle SQL Tuning with Oracle SQLTXPLAIN. Apress. p. 1. ISBN 9781430248101. Retrieved 2013-06-17[...] fast Oracle SQL tuning with SQLTXPLAIN, or SQLT as it is typically called [...]
  122. Jump up^ "Live SQL"Oracle live SQL. Oracle Corporation. 2016. Retrieved 2016-08-01Oracle Live SQL exists to provide the Oracle database community with an easy online way to test and share SQL and PL/SQL application development concepts.
  123. Jump up^ Gupta, Saurabh (2012). Oracle Advanced PL/SQL Developer Professional Guide. Packt Publishing Ltd. p. 123. ISBN 9781849687225. Retrieved 2015-09-04An external program must be executed as a shared library to be accessed in PL/SQL. [...] The shared libraries may include multiple programs, which can be invoked as external programs.
  124. Jump up^ Litchfield, David; Anley, Chris; Heasman, John; Grindlay, Bill (2005). "The Oracle Architecture". The Database Hacker's Handbook: Defending Database. New Delhi: John Wiley & Sons. p. 36. ISBN 9788126506156. Retrieved 2016-02-28If users have the CREATE LIBRARY, or any of the other library privileges. then they have the ability to run arbitrary code through external procedures.
  125. Jump up^ Kuhn, Darl; Alapati, Sam; Nanda, Arup (2013). RMAN Recipes for Oracle Database 12c: A Problem-Solution Approach. Expert's voice in Oracle. Apress. p. 534. ISBN 9781430248361. Retrieved 2014-07-07Search Oracle's My Oracle Support (MOS) web site at http://support.oracle.com.
  126. Jump up^ "Advanced MetaLink" (PDF). Retrieved 2009-12-19.
  127. Jump up^ Rea, Stephen (16 September 2008). "Upgrading Oracle 9.2.0.6 to 10.2.0.3 on AIX 5.2". University of Arkansas. Retrieved 2009-08-11Run the PreInstall checklist for Oracle 10.2.0 (Metalink Note 250262.1: RDA 4 - Health Check / Validation Engine Guide): The Health Check Validation Engine (HCVE) rule set for Oracle Database 10g R2 (10.2.0) PreInstall (AIX) is described in: Oracle.com
  128. Jump up^ "oracle maximum availability architecture News and Other Resources | TechRepublic". Search.techrepublic.com.com. Retrieved 2012-07-26.
  129. Jump up^ "Oracle Users Group Groups". Morganslibrary.org. Retrieved 2012-07-26.
  130. Jump up^ "Archived copy". Archived from the original on 23 July 2014. Retrieved 28 July 2014. ("Oracle Market Share")
  131. Jump up^ Kreines, David C. (2005). Oracle DBA Pocket Guide. Pocket References Series. O'Reilly Media, Inc. pp. 16? or 145?. ISBN 978-0-596-10049-0. Retrieved 2010-08-10Oracle products are currently licensed using two different licensing models: Per Named User. [...] Per Processor [...]
  132. Jump up^ "Oracle Technology Global Price List" (PDF). Oracle Corporation. 2010-06-14. Archived from the original (PDF) on 21 July 2010. Retrieved 2010-07-13.
  133. Jump up^ "Processor Core Factor Table" (PDF). Retrieved 2011-04-08.
  134. Jump up^ Oracle Database Licensing Information Database Editions
  135. Jump up^ "overview". Oracle.com. Retrieved 2012-07-26.
  136. Jump up^ Licensing Restrictions

Bibliography[edit]

External links[edit]

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值