Oracle Database

Oracle Database
Developer(s) Oracle Corporation
Stable release
12c Release 1 (12.1.0.2)[1] / 22 July 2014 (2014-07-22)
Development status Active
Written in Assembly language, C, C++[2]
Available in Multilingual
Type ORDBMS
License Proprietary OTN Standard License
Website Oracle RDBMS

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

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 10g, grid 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

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

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

Oracle database management tracks its computer data storage with the help of information stored in the SYSTEM tablespace. The SYSTEM tablespace contains the data dictionary, indexes 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

Disk files primarily represent one of the following structures:

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, utilize raw disk directly, or exist within ASM logical volumes.[13]

Database schema

Most Oracle database installations traditionally came with a default schema called SCOTT. After the installation process sets up sample tables, the user can log 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:

System Global Area

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:

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:

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.

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

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

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:

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

The Program Global Area[23][24] or PGA memory-area of an Oracle instance contains data and control-information for Oracle's server-processes.

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

DBAs can monitor PGA usage via the system view.

Dynamic performance views

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

Oracle processes

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]

User processes, connections and sessions

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

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

Concurrency and locking

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

Oracle locks fall into three categories:[51]

Configuration

Database administrators control many of the tunable variations in an Oracle instance by means of values in a parameter file.[52] 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)[53] defaults to the format spfile<SID-name>.ora. Within an SQL-based environment, the views V$PARAMETER[54] and V$SPPARAMETER[55] 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".[56]

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

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

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

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

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. [62] 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

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

Network access

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

Internationalization

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.[65]

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.[66]

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

History

Patch updates and security alerts

Oracle Corporation releases Critical Patch Updates (CPUs) or Security Patch Updates (SPUs)[68] 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.

Version numbering

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. 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 stand for "internet", "grid" and "cloud", respectively.[69] Consequently, many simply drop the "g" or "i" suffix when referring to specific versions of an Oracle product.

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

Since version 2, Oracle's RDBMS release numbering has used the following codes:

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 release numbers.

Oracle Database product family

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:[71]

Database editions

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

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

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

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.[81] Industry journalists and some 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.[82][83]

Database options

Oracle Corporation refers to a number of add-on database features as "database options".[71] These aim to enhance and complement existing database functionality to meet customer-specific requirements.[84] All Database Options are only available for Enterprise Edition and offered for an extra cost.[71][85] The one 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.[75]

Supported platforms

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 utilize Hybrid Columnar Compression for more efficient storage.[90]

Database features

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 usage 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. Such "features" may include (for example):

This list is incomplete; you can help by expanding it.

Utilities

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

Utilities included in Oracle database distributions include:

Tools

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.[113]

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

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

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,[117] providing a REST-based interface to relational data.[118]

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

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

Testing

External routines

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

Use

The Oracle RDBMS has had a reputation among novice users as difficult to install on Linux systems. 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.

Official support

Users who have Oracle support contracts can use Oracle's "My Oracle Support" or "MOS"[124] 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[125] 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)[126] can verify and isolate host system environmental issues that may affect the performance of Oracle software.

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

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

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

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

Competition

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: WebSphere, PeopleSoft, and Siebel Systems CRM), and IBM's hardware divisions work closely 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 ADABAS, Sybase, and IBM's Informix, among many others.

Increasingly, the Oracle database products compete against such open-source software relational database systems as PostgreSQL, Firebird, 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

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").[130]

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.[131][132]
Standard Edition (DB SE)
Cheaper: it can run on up to four processors but has fewer features than Enterprise Edition—it lacks proper parallelization,[133] 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)[134] (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).[135] XE will use 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

References

  1. Dietrich, Mike (22 July 2014). "Oracle Database 12.1.0.2 is available!!!". Retrieved 2 February 2015.
  2. Lextrait, Vincent (January 2010). "The Programming Languages Beacon, v10.0". Retrieved 14 March 2010.
  3. "What's New". Retrieved 29 November 2010.
  4. "Welcome to Larryland". Guardian. Retrieved 2009-12-19.
  5. Bhakthavatsalam, Namrata (August 2008). "Glossary". Oracle Database Client. Retrieved 2008-11-17. The 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. 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-04. The 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. "A Guide to Oracle RAC"
  8. 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-07. Oracle databases are logically divided into one or more tablespaces. An Oracle tablespace is a logical entity that contains the physical datafiles.
  9. Ashdown, Lance; Kyte, Tom (2011). "Oracle Database Concepts: 11g Release 2 (11.2)". Oracle Corporation. Retrieved 2013-07-12. You can use tablespaces to achieve the following goals: [...] Assign a quota (space allowance or limit) to a database user [...]
  10. "Oracle 8". Oracle FAQs. Retrieved 19 January 2015.
  11. 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. 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. Watkins, Bob (30 January 2007). "Look inside ASM disk groups with Oracle 10gR2's ASMCMD". techrepublic.com. ZDNet. Retrieved 2009-07-30. In 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. Oracle FAQ
  15. "Known schemas in Oracle". Adp-gmbh.ch. Retrieved 2009-12-19.
  16. "11g Default Schema". ABCdba.com. Retrieved 2010-10-26.
  17. "Optimizer plan stability definition". Adp-gmbh.ch. Retrieved 2009-12-19.
  18. "Oracle's sample schemas". Adp-gmbh.ch. Retrieved 2009-12-19.
  19. "Oracle Architecture, System Global Area". World-class-programme.com. Retrieved 2009-12-19.
  20. Karlsson André."Oracle DB Architecture - The Basics"
  21. "Oracle architecture, the library cache section". World-class-programme.com. Retrieved 2009-12-19.
  22. "Oracle Architecture, data dictionary cache". World-class-programme.com. Retrieved 2009-12-19.
  23. "Oracle architecture, Program Global Area section". World-class-programme.com. Retrieved 2009-12-19.
  24. PGA Definition, Oracle Database Master Glossary
  25. Bell, Mike (2002). "V$ views - don't leave $HOME without them" (PDF). New York Oracle users Group. pp. 9–10. Retrieved 2010-03-09. X$ tables are fixed tables created in memory at database startup [...] V$ views are created on one or more X$ tables
  26. 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-09. V$INDEXED_FIXED_COLUMN displays the columns in dynamic performance tables that are indexed (X$ tables).
  27. "Oracle Process architecture concepts". Download.oracle.com. Retrieved 2009-12-19.
  28. Antognini, Christian (2008). Troubleshooting Oracle Performance. Apress Series. Apress. p. 71. ISBN 978-1-59059-917-4. Retrieved 2011-05-05.
  29. 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-11. The 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. 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-11. The 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.
  31. Carpenter, Larry (2009). Oracle Data Guard 11g Handbook. et al. Oracle Press. p. 173. ISBN 978-0-07-162111-3. Data 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.
  32. Debes, Norbert (2009). Secrets of the Oracle Database. Apress series. Apress. p. 173. ISBN 978-1-4302-1952-1. Retrieved 2011-05-02. The job queue is handled by the job queue coordinator process CJQ0 and job queue slave processes (JNNN).
  33. 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-24. The optional net_timeout parameter to the log_archive_dest_n parameter alows 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.
  34. 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-12. MMON 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.
  35. 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-12. M000 These are MMON background slave (m000) processes.
  36. Rich, Bert (2015). "Oracle Database Reference, 11g Release 2 (11.2): Background Processes". docs.oracle.comOracle Help Center. Oracle Corporation. Retrieved 2015-08-05. NSVn[:] Data Guard Broker NetSlave Process[:] Performs broker network communications between databases in a Data Guard environment
  37. 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-30. Pnnn: Parallel Query Execution Servers [...] Oracle 7.1.6 introduced the parallel query capability into the database. [...] When using parallel query, you will see processes named Pnnn - these are the parallel query execution servers themselves.
  38. "Oracle Database Online Documentation 12c Release 1 (12.1) / Database Administration: F Background Processes". Oracle. 2014. p. 2497. Retrieved 2014-11-12. Process Spawner Process [...] Spawns Oracle background processes after initial instance startup
  39. 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-05. In Oracle 10.1, a queue monitor coordinator (QMNC) process [...] dynamically spawns queue monitor slaves (q000 to q009).
  40. Vallath, Murali (2006). Oracle 10g RAC Grid, Services & Clustering. Digital Press. p. 467. ISBN 9780080492032. Retrieved 2014-04-14. Redo 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.
  41. Rich, Bert (2015). "Oracle Database Reference, 11g Release 2 (11.2)". docs.oracle.com. Oracle Corporation. Retrieved 2015-05-04. Performs monitoring management tasks related to Data Guard on behalf of DMON
  42. 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-07. New 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.
  43. Cyran, Michele; Paul Lane (2005). "Process Architecture". Oracle Database Concepts. Oracle Corporation. Retrieved 2008-08-13. When 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.
  44. Cyran, Michele; Paul Lane (2005). "Process Architecture". Oracle Database Concepts. Oracle Corporation. Retrieved 2008-08-13. A connection is a communication pathway between a user process and an Oracle instance.
  45. Cyran, Michele; Paul Lane (2005). "Process Architecture". Oracle Database Concepts. Oracle Corporation. Retrieved 2008-08-13. A session is a specific connection of a user to an Oracle instance through a user process
  46. Morales, Tony (2008). "V$SESSION". Oracle Database Reference 11g Release 1 (11.1). Oracle. Retrieved 2016-04-07. V$SESSION displays session information for each current session. [...] SID [...] Session identifier
  47. 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.
  48. Rich, Kathy (April 2009). "Oracle Database Reference, 10g Release 2 (10.2)" V$PROCESS. docs.oracle.com. Redwood city, California: Oracle Corporation. Retrieved 2016-10-30. SPID VARCHAR2(12) Operating system process identifier
  49. Chan, Immanuel (July 2008). "Glossary". Oracle Database Performance Tuning Guide 11g Release 1 (11.1). Oracle Corporation. Retrieved 2009-04-29. enqueue[:] This is another term for a lock.
  50. "Oracle Database Master Glossary: 11g Release 1 (11.1)". Oracle Corporation. Archived from the original on 16 March 2010. Retrieved 2009-04-24. latch[:] A simple, low-level serialization mechanism to protect shared data structures in the System Global Area.
  51. Ashdown, Lance; Kyte, Tom (2014). "Oracle Database Concepts, 12c Release 1 (12.1): Data Concurrency and Consistency". Oracle Corporation. Retrieved 2015-08-19.
  52. Strohm, Richard; et al. (October 2008). "Parameter Files". Oracle Database Concepts 11g Release 1 (11.1). Oracle Corporation. Retrieved 2009-07-14. Parameter files contain a list of configuration parameters for that instance and database.
  53. 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.
  54. Morales, Tony; et al. (April 2009). "V$PARAMETER". Oracle Database Reference 11g Release 1 (11.1). Oracle Corporation. Retrieved 2009-07-14. V$PARAMETER displays information about the initialization parameters that are currently in effect for the session.
  55. Morales, Tony; et al. (April 2009). "V$SPPARAMETER". Oracle Database Reference 11g Release 1 (11.1). Oracle Corporation. Retrieved 2009-07-14. V$SPPARAMETER displays information about the contents of the server parameter file.
  56. 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-26. At 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.
  57. Debes, Norbert (2010). "9: Introduction to X$ Fixed Tables". Secrets of the Oracle Database. The Expert's voice in Oracle. Berkeley, California: Apress. p. 94-96. ISBN 9781430219538. Retrieved 2016-10-26. Many 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 [:]
  58. "Oracle x$ tables". Burleson Consulting. Retrieved 2016-10-26. Oracle Kernel Database Layers
  59. "Oracle X$ Tables". Retrieved 2016-10-26. Updated to Oracle 12.1.0.2
  60. 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-10. Oracle 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.
  61. 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-15. Oracle Resource Manager is [...] designed to ensure that CPU resources can be allocated fairly between groups of users on a single instance [...]
  62. 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.
  63. Wessler, Michael (2002) [2001]. Oracle DBA on Unix and Linux. Kaleidoscope Series. Indianapolis: Sams Publishing. p. 74. ISBN 9780672321580. Retrieved 2016-09-09. Background dump (bdump) files are generated when an Oracle process experiences unexpected problems.
  64. Alapati, Sam (2006). "The Alert Log File". Expert Oracle Database 10g Administration. Expert's Voice. Apress. p. 111. ISBN 9781430200666. Retrieved 2016-09-09. Every 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.
  65. "Locale Languages". Retrieved 2008-02-26.
  66. "Error Message Languages". Retrieved 2008-02-26.
  67. 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-16. In 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.
  68. Baransel, Emre (2013). Oracle Data Guard 11gR2 Administration Beginner's Guide. Packt Publishing Ltd. ISBN 9781849687911. Retrieved 2014-01-15. You 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.
  69. theregister.co.uk: Oracle gears up for infrastructure cloud and 12c database launches • The Register
  70. http://www.oracle.com/technetwork/topics/linuxx86-64soft-092277.html
  71. 1 2 3 4 5 Gelhausen, Jenny (August 2015). "Oracle Database 12c Product Family" (PDF). Oracle Technology Network. Retrieved 17 February 2016.
  72. Oracle Database 12c Enterprise Edition
  73. Oracle Corporation (2015). "Brief: Oracle Database Standard Edition 2" (PDF). Oracle Database 12c Standard Edition 2. Retrieved 17 February 2016.
  74. Oracle Database 12c Standard Edition 2
  75. 1 2 3 Oracle Database Editions
  76. Oracle Technology Network Developer License Terms for Oracle Database Express Edition
  77. "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).
  78. Niemiec, Richard (2012). Oracle Database 11g Release 2 Performance Tuning Tips & Techniques. Osborne Oracle Press. McGraw-Hill Professional. p. 47. ISBN 9780071780261. Retrieved 2013-02-20. [...] Oracle 11g Express Edition Released (September 24, 2011).
  79. 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 [...]
  80. Hardie, Willie (November 2009). "Oracle Database 11g Product Family" (PDF). Oracle Technology Network. Retrieved 17 February 2016.
  81. 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.
  82. Clarke, Gavin (September 7, 2015). "Oracle plugs socket numbers on DIY Standard Edition". The Register. Retrieved 17 February 2016. The 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.
  83. 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.
  84. Oracle Corporation. "Database Options Overview". Oracle Technology Network. Retrieved 17 February 2016.
  85. Oracle Corporation. "Oracle Technology Global Price List" (PDF). www.oracle.com. Retrieved 17 February 2016.
  86. Oracle Corporation. "In-Memory Aggregation". Oracle Help Center. Retrieved 17 February 2016.
  87. "Oracle Spatial and Graph". Oracle. Retrieved 2016-07-06. The 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.
  88. 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-06. A majority of the functionality of spatial indexes and spatial operators is part of Oracle Locator (included in all editions of the Oracle Database).
  89. Operating System Requirements for x86-64 Linux Platforms
  90. Martin, Christopher (2011). "Hybrid Columnar Compression And Oracle Storage" (PDF). Oracle Corporation. p. 1. Retrieved 2013-02-07. Oracle 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 [...] utilizes 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.
  91. 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).
  92. "Week 6: Automatic Workload Repository". Archived from the original on 9 August 2007. Retrieved 12 July 2007.
  93. 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-24. Automatic 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.
  94. Sai Peck lee; Džemal Zildžić (2006). "Oracle Database Workload Performance Measurement and Tuning Toolkit". Issues in Informing Science and Information Technology. 3: 371–381. Retrieved 2010-02-05. Statspack 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
  95. "Overview of Oracle Data Pump". Download.oracle.com. Retrieved 2009-12-19.
  96. Greenwald, Rick; Robert Stackowiak; Jonathan Stern (November 2007). Oracle Essentials: Oracle Database 11g. O'Reilly. p. 184. ISBN 978-0-596-51454-9. The Database Resource Manager (DRM) was first introduced in Oracle 8i [...] to place limits on the amount of computer resources that can be used [...]
  97. 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-16. In 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 [...]
  98. "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.
  99. 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 ...
  100. Oracle.com
  101. "Oracle Product Accessibility Status: Database Server Enterprise Edition". Oracle Corporation. 2 June 2008. Retrieved 2009-04-14.
  102. "Oracle Data Provider for .NET". Oracle Corporation. Archived from the original on 13 May 2008. Retrieved 2009-05-07. The Oracle Data Provider for .NET (ODP.NET) features optimized ADO.NET data access to the Oracle database.
  103. "Oracle Multimedia". www.oracle.com. Oracle Technology Network. Retrieved 2013-12-12. Oracle Multimedia is a feature that enables Oracle Database to store, manage, and retrieve multimedia data in an integrated manner with other enterprise information.
  104. Smith, Jeff (September 2015). "The Modern Command Line". Oracle Magazine. Oraxcle Technology Network. Oracle Corporation. Retrieved 2016-01-05. SQLcl 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.
  105. 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-12. The 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.
  106. "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.
  107. 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-09. Oracle'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.
  108. "Oracle Application Express 4.1". apex.oracle.com. Oracle Corporation. Retrieved 2012-01-09. Oracle Application Express is a no-cost option of the Oracle database.
  109. "Oracle XML DB". Oracle Technology Network. Oracle Corporation. Retrieved 2016-02-11. Oracle XML DB is a high-performance, native XML storage and retrieval technology that is delivered as a part of all versions of Oracle Database.
  110. Mensah, Kuassi (2011). Oracle Database Programming using Java and Web Services. Digital Press. p. 518. ISBN 9780080525112. Retrieved 2016-02-11. The Oracle XML Database (also known as XDB) furnishes a native XMLType data type for managing XML documents directly in the database.
  111. 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.
  112. 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-29. The oradebug utility can be used to enable and disable tracing for a session.
  113. 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-20. Oracle Corporation has started a drive toward wizard-driven environments with a view to enabling non-programmers to produce simple data-driven applications.
  114. 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-22. The 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.
  115. Freeman, Robert (2004). Oracle Database 10g New Features. Osborne ORACLE Press Series. McGraw Hill Professional. p. 4. ISBN 9780072229479. Retrieved 2014-01-22. The DBUA is a GUI that is designed for upgrading your Oracle database [...]
  116. 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-29. Native compilation provides a speed increase ranging from two to ten times the speed of the bytecode interpretation.
  117. Murray, Chuck (2016). "Oracle REST Data Services Installation and Configuration Guide, Release 2.0". Oracle. Retrieved 2016-08-01. Oracle 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.
  118. 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.
  119. 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-05. OPatch 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.
  120. 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 [...]
  121. "Live SQL". Oracle live SQL. Oracle Corporation. 2016. Retrieved 2016-08-01. Oracle 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.
  122. Gupta, Saurabh (2012). Oracle Advanced PL/SQL Developer Professional Guide. Packt Publishing Ltd. p. 123. ISBN 9781849687225. Retrieved 2015-09-04. An external program has to 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.
  123. 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-28. If users have the CREATE LIBRARY, or any of the other library privileges. then they have the ability to run arbitrary code through external procedures.
  124. 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-07. Search Oracle's My Oracle Support (MOS) web site at http://support.oracle.com.
  125. "Advanced MetaLink" (PDF). Retrieved 2009-12-19.
  126. 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-11. Run 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
  127. "oracle maximum availability architecture News and Other Resources | TechRepublic". Search.techrepublic.com.com. Retrieved 2012-07-26.
  128. "Oracle Users Group Groups". Morganslibrary.org. Retrieved 2012-07-26.
  129. "Archived copy". Archived from the original on 23 July 2014. Retrieved 28 July 2014. ("Oracle Market Share")
  130. 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-10. Oracle products are currently licensed using two different licensing models: Per Named User. [...] Per Processor [...]
  131. "Oracle Technology Global Price List" (PDF). Oracle Corporation. 2010-06-14. Archived from the original (PDF) on 21 July 2010. Retrieved 2010-07-13.
  132. "Processor Core Factor Table" (PDF). Retrieved 2011-04-08.
  133. Oracle Database Licensing Information Database Editions
  134. "overview". Oracle.com. Retrieved 2012-07-26.
  135. Licensing Restrictions

Bibliography

Wikimedia Commons has media related to Oracle (database).
Wikibooks has a book on the topic of: Oracle database
Wikiversity has learning materials about Oracle Database
This article is issued from Wikipedia - version of the 11/30/2016. The text is available under the Creative Commons Attribution/Share Alike but additional terms may apply for the media files.