Oracle Database
Developer(s) | Oracle Corporation |
---|---|
Stable release | 12c Release 1 (12.1.0.2)[1] / 22 July 2014 |
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 previously 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 (if necessary) for data recovery and for the physical-standby forms of data replication using Oracle Data Guard.
If the Oracle database administrator has implemented Oracle RAC (Real Application Clusters), then multiple instances, usually on different servers, attach to a central storage array. This scenario offers advantages such as better performance, scalability and redundancy. However, support becomes more complex, and many sites do not use RAC. In version 10g, grid computing introduced shared resources where an instance can use (for example) CPU resources from another node (computer) in the grid.
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").[7] 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.[8]
Partitioning
The partitioning feature was introduced in Oracle 8.[9] This allows the partitioning of tables based on different set of keys. Specific partitions can then be easily 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—and often (by default) 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.[10]
Disk files
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 ("Oracle-managed files"). 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. Note that often a database will store 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."[11]
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.[12]
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.[13]
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[14][15] include:
-
SYS
(essential core database structures and utilities) -
SYSTEM
(additional core database structures and utilities, and privileged account) -
OUTLN
(utilized to store metadata for stored outlines for stable query-optimizer execution plans.[16]) -
BI
,IX
,HR
,OE
,PM
, andSH
(expanded sample schemas[17] containing more data and structures than the olderSCOTT
schema).
System Global Area
Each Oracle instance uses a System Global Area or SGA—a shared-memory area—to store its data and control-information.[18]
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.[19]
Library cache
The library cache[20] 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:
- 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[21] 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[22][23] 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:
- 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
The dynamic performance views (also known as "fixed views") within an Oracle database present information from virtual tables (X$ tables)[24] built on the basis of database memory.[25] 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):[26]
- advanced queueing processes (Qnnn)[27]
- 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 worker processes (DWnn)[28]
- dispatcher processes (Dnnn): multiplex server-processes on behalf of users
- main Data Guard Broker monitor process (DMON)[29]
- job-queue slave processes (Jnnn)[30]
- log-writer process (LGWR) *REQUIRED*
- log-write network-server (LNSn):[31] 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[32]
- 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[33]
- netslave processes (NSVn): Data Guard Broker inter-database communication processes[34]
- process-monitor process (PMON) *REQUIRED*
- process-spawner process (PSP0): spawns Oracle background processes after initial instance startup[35]
- queue-monitor coordinator process (QMNC): dynamically spawns queue monitor slaves[36]
- queue-monitor processes (QMNn)
- recoverer process (RECO)
- remote file-server process (RFS): in Oracle Data Guard, a standby recipient of primary redo-logs[37]
- monitor for Data Guard management (RSM0): Data Guard Broker Worker process[38]
- shared server processes (Snnn): serve client-requests
- system monitor process (SMON) *REQUIRED*
User processes, connections and sessions
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[39]
- a connection refers to the pathway linking a user process to an Oracle instance[40]
- sessions consist of specific connections to an Oracle instance.[41] Each session within an instance has a session identifier or "SID"[42] (distinct from the system-identifier SID).
Concurrency and locking
Oracle databases control simultaneous access to data resources with locks (alternatively documented as "enqueues").[43] The databases also utilize "latches" - low-level serialization mechanisms to protect shared data structures in the System Global Area.[44]
Oracle locks fall into three categories:[45]
- 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
Database administrators control many of the tunable variations in an Oracle instance by means of values in a parameter file.[46]
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)[47]
defaults to the format spfile<SID-name>.ora
. Within an SQL-based environment, the views V$PARAMETER
[48]
and V$SPPARAMETER
[49]
give access to reading parameter values.
Administration
The "Scheduler" (DBMS_SCHEDULER package, available from Oracle 10g onwards) and the Job subsystem (DBMS_JOB package) permit the automation of predictable processing.[50]
Oracle Resource Manager aims to allocate CPU resources between users and groups of users when such resources become scarce.[51]
Oracle Corporation stated in product announcements that manageability for DBAs had improved from Oracle9i to 10g. Lungu and Vătuiu (2008) assessed the relative manageability by performing common DBA tasks and measuring timings. [52] 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".
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.[53]
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.[54]
Oracle Corporation provides database developers with tools and mechanisms for producing internationalized database applications: referred to internally as "Globalization".[55][56]
History
Corporate/technical timeline
- 1977: Larry Ellison and friends founded Software Development Laboratories (SDL).
- 1978: Oracle Version 1, written in assembly language, runs on PDP-11 under RSX, in 128K of memory. Implementation separates Oracle code and user code. Oracle V1 is never officially released.[57]
- 1979: SDL changed its company-name to "Relational Software, Inc." (RSI) and introduced its product Oracle V2 as an early relational database system - often cited[58][59] as the first commercially sold RDBMS.[60] The version did not support transactions, but implemented the basic SQL functionality of queries and joins. (RSI never released a version 1 - instead calling the first version version 2 as a marketing gimmick.)[61]
- 1982: RSI in its turn changed its name, becoming known as "Oracle Corporation",[62] to align itself more closely with its flagship product.
- 1983: The company released Oracle version 3, which it had re-written using the C programming language, and which supported
COMMIT
andROLLBACK
functionality for transactions. Version 3 extended platform support from the existing Digital VAX/VMS systems to include Unix environments.[62] - 1984: Oracle Corporation released Oracle version 4, which supported read-consistency.[63] In October it also released the first Oracle for the IBM PC.[64]
- 1985: Oracle Corporation released Oracle version 5, which supported the client–server model—a sign of networks becoming more widely available in the mid-1980s.
- 1986: Oracle version 5.1 started supporting distributed queries.
- 1988: Oracle RDBMS version 6 came out with support for PL/SQL embedded within Oracle Forms v3 (version 6 could not store PL/SQL in the database proper), row-level locking and hot backups.[65]
- 1989: Oracle Corporation entered the application-products market and developed its ERP product, (later to become part of the Oracle E-Business Suite), based on the Oracle relational database.
- 1990: the release of Oracle Applications release 8[62]
- 1992: Oracle version 7 appeared with support for referential integrity, stored procedures and triggers.
- 1997: Oracle Corporation released version 8, which supported object-oriented development and multimedia applications.
- 1999: The release of Oracle8i aimed to provide a database inter-operating better with the Internet (the i in the name stands for "Internet"). The Oracle8i database incorporated a native Java virtual machine (Oracle JVM, also known as "Aurora").[66]
- 2000: Oracle E-Business Suite 11i pioneers integrated enterprise application software[62]
- 2001: Oracle9i went into release with 400 new features, including the ability to read and write XML documents. 9i also provided an option for Oracle RAC, or "Real Application Clusters", a computer-cluster database, as a replacement for the Oracle Parallel Server (OPS) option.
- 2002: the release of Oracle 9i Database Release 2 (9.2.0)[67]
- 2003: Oracle Corporation released Oracle Database 10g, which supported regular expressions. (The g stands for "grid"; emphasizing a marketing thrust of presenting 10g as "grid computing ready".)
- 2005: Oracle Database 10.2.0.1—also known as Oracle Database 10g Release 2 (10gR2)—appeared.
- 2006: Oracle Corporation announces Unbreakable Linux[62] and acquires i-flex
- 2007: Oracle Database 10g release 2 sets a new world record TPC-H 3000 GB benchmark result[68]
- 2007: Oracle Corporation released Oracle Database 11g for Linux and for Microsoft Windows.
- 2008: Oracle Corporation acquires BEA Systems.
- 2010: Oracle Corporation acquires Sun Microsystems.
- 2011: Oracle Corporation acquires web content management system FatWire Software.
- 2011: On 18 October, Oracle Corporation acquires Endeca Technologies Inc. faceted search engine software vendor.
- 2013: Oracle Corporation released Oracle Database 12c[69] for Linux, Solaris and Windows. (The c stands for "cloud".)
Patch Updates and Security Alerts
Oracle Corporation releases Critical Patch Updates (CPUs) or Security Patch Updates (SPUs)[70] 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.
- Customers may receive release notification by email.
- White Paper: Critical Patch Update Implementation Best Practices
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.[71] 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:
- Oracle Application Server 10g (also known as "Oracle AS 10g"): a middleware product;
- Oracle Applications Release 11i (aka Oracle e-Business Suite, Oracle Financials or Oracle 11i): a suite of business applications;
- Oracle Developer Suite 10g (9.0.4);
- Oracle JDeveloper 10g: a Java integrated development environment;
Since version 2, 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)
- 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)
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.
Marketing editions
Over and above the different versions of the Oracle database management software developed over time, Oracle Corporation subdivides its product into varying "editions" - apparently for marketing and license-tracking reasons. (Do not confuse the marketing "editions" with the internal virtual versioning "editions" introduced with Oracle 11.2).[72] In approximate order of decreasing functionality:
- Enterprise Edition[73] (EE) includes more features than the "Standard Edition", especially in the areas of performance and security. Oracle Corporation licenses this product on the basis of users or of processors, typically for servers running 4 or more CPUs. EE has no memory limits, and can utilize clustering using Oracle RAC software.
- Standard Edition[74] (SE) contains base database functionality. Oracle Corporation licenses this product on the basis of users or of processors, typically for servers running from one to four CPUs. If the number of CPUs exceeds 4 CPUs, the user must convert to an Enterprise license. SE has no memory limits, and can utilize clustering with Oracle RAC at no additional charge.
- Standard Edition One[75] (SE1[76] or SEO), introduced with Oracle 10g, has some additional feature-restrictions.[77] Oracle Corporation markets it for use on systems with one or two CPUs.[78] It has no memory limitations.
- Express Edition[79] ("Oracle Database XE")
- The first Express Edition, introduced in 2005, offered Oracle 10g free to distribute on Windows and Linux platforms. It had a footprint of only 150 MB, had a limitation to a maximum of 4 GB of user data[80] and could use only a single CPU. Although it could install on a server with any amount of memory, it used a maximum of 1 GB.[81] Support for this version came exclusively through on-line forums and not through Oracle support.
- Oracle 11g Express Edition, released by Oracle Corporation on 24 September 2011,[82] can support 11 GB of user data.[83] Oracle XE does not support loading Java code into the database.[84]
- Oracle Database Lite,[85] intended for running on mobile devices. The embedded[86] mobile database located on the mobile device can synchronize with a server-based installation. Includes support for Win32, Windows CE, Palm OS, and EPOC database clients, integration with Oracle's Advanced Queuing (AQ) mechanism, and data- and application-synchronization software (for integration to enterprise Oracle databases). Supports 100% Java development (through JDBC drivers and the database's native support for embedded SQLJ and Java stored procedures).
Supported platforms
Prior to releasing Oracle 9i in 2001, Oracle Corporation ported its database product to a wide variety of platforms. Subsequently Oracle Corporation consolidated on a smaller range of operating-system platforms.
Starting with Oracle Database 12.1.0.1 (released on Jun 25, 2013), the database server software is only provided for 64-bit platforms. Oracle Database 12c is supported on the following OS and architecture combinations:
- Linux on x86-64 (only Red Hat Enterprise Linux, Oracle Linux and SUSE distributions are supported[87])
- Microsoft Windows on x86-64
- Oracle Solaris on SPARC and x86-64
- IBM AIX on POWER Systems
- IBM Linux on z Systems
- HP-UX on Itanium
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.[88]
Related software
Oracle products
- Oracle Database Firewall[89] analyzes database traffic on a network to prevent threats such as SQL injection.[90]
Database options
Oracle Corporation refers to some extensions to the core functionality of the Oracle database as "database options".[91] In most cases, using these options entails extra licensing costs.[92][93]
As of 2013 database options include:
- Active Data Guard (extends Oracle Data Guard physical standby functionality in 11g)
- Advanced Compression (compresses tables, backups and redo-data)[94]
- Content database (provides a centralized repository for unstructured information)
- Data mining (ODM)[95] mines for patterns in existing data
- Database Vault (enforces extra security on data access)
- In-Memory Database Cache (utilizes TimesTen technology)
- Label Security (enforces row-level security)
- Management Packs (various). For example:
- Oracle Advanced Security[98] (adds public-key infrastructure security and data encryption methods - both for data at rest and for data on the network)
- Oracle Answers (for ad-hoc analysis and reporting)
- Oracle Application Express, a no-cost environment for database-oriented software-development[99]
- Oracle GoldenGate 11g (distributed real-time data acquisition)
- Oracle Multitenant - a container database (CDB)[100] holding pluggable databases (PDBs) (from 12c)[101]
- Oracle OLAP (adds analytical processing)
- Oracle Programmer (provides programmatic access to Oracle databases via precompilers, interfaces and bindings)[102]
- Oracle Real Application Testing (new at version 11g)—including Database Replay (for testing workloads) and SQL Performance Analyzer (SPA) (for preserving SQL efficiency in changing environments)[103]
- Oracle Spatial and Graph - includes 2D, 3D and raster geospatial data types, indexes, and spatial analytics and data models used in business applications and in geographic information systems (GIS), as well as World Wide Web Consortium Resource Description Framework (RDF) graph management and analysis
- Oracle Text uses standard SQL to index, search, and analyze text and documents stored in the Oracle database.[104]
- Oracle XML DB[105], or XDB,[106] a no-cost component in each edition of the database, provides high-performance technology for storing and retrieving native XML
- Oracle Warehouse Builder (in various forms and sub-options)
- Partitioning (granularizes tables and indexes for efficiency)
- Real Application Clusters (RAC) (coordinates multiple database servers, together accessing the same database)
- Records database (a records management application)
- Transparent Gateway for connecting to non-Oracle systems. Offers optimized solution, with more functionality and better performance than Oracle Generic Connectivity.
- Total Recall (optimizes long-term storage of historical data)
- This list is incomplete; you can help by expanding it.
Suites
In addition to its RDBMS, Oracle Corporation has released several related suites of tools and applications relating to implementations of Oracle databases. For example:
- Oracle Application Server, a J2EE-based application server, aids in developing and deploying applications that use Internet technologies and a browser.
- Oracle Collaboration Suite contains messaging, groupware and collaboration applications.
- Oracle Developer Suite contains software development tools, including JDeveloper.
- Oracle E-Business Suite collects together applications for enterprise resource planning (including Oracle Financials), customer relationship management and human resources management (Oracle HR).
- Oracle Enterprise Manager (OEM) used by database administrators (DBAs) to manage the DBMS, and recently in version 10g, a web-based rewrite of OEM called "Oracle Enterprise Manager Database Control". Oracle Corporation has dubbed the super-Enterprise-Manager used to manage a grid of multiple DBMS and Application Servers "Oracle Enterprise Manager Grid Control".
- Oracle Programmer/2000, a bundling of interfaces for 3GL programming languages, marketed with Oracle7 and Oracle8.[107][108]
- Oracle WebCenter Suite[109]
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):
- Active Session History (ASH), the collection of data for immediate monitoring of very recent database activity.[110]
- Automatic Workload Repository (AWR), providing monitoring services to Oracle database installations from Oracle version 10. Prior to the release of Oracle version 10, the Statspack facility[111] 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[112]
- SQL*Loader, utility that facilitates high performance data loading.
- Database Resource Manager (DRM), which controls the use of computing resources.[113]
- Fast-start parallel rollback[114]
- Fine-grained auditing (FGA) (in Oracle Enterprise Edition)[115] supplements standard security-auditing features[116]
- Flashback for selective data recovery and reconstruction[117]
- 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:[118]
- Oracle Data Provider for .NET (ODP.NET)[119]
- 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[120]
- 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[121]
- Universal Connection Pool (UCP), a connection pool based on Java and supporting JDBC, LDAP, and JCA[122]
- Virtual Private Database[123] (VPD), an implementation of fine-grained access control.[124]
- 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.[125]
Utilities included in Oracle database distributions include:
Tools
Users can develop their own applications in Java and 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.[127]
The Database Upgrade Assistant (DBUA)[128] provides a GUI for the upgrading of an Oracle database.[129]
JAccelerator (NCOMP) - a native-compilation Java "accelerator", integrates hardware-optimized Java code into an Oracle 10g database.[130]
Oracle SQL Developer, a free graphical tool for database development, allows developers to browse database objects, run SQL statements and SQL scripts, and edit and debug PL/SQL statements. It incorporates standard and customized reporting.
Oracle's OPatch provides patch management for Oracle databases.[131]
The SQLTXPLAIN tool (or SQLT) provides tuning assistance for Oracle SQL queries.[132]
Other databases marketed by Oracle Corporation
Having acquired other technology in the database field, Oracle Corporation can also offer:
- TimesTen, a memory-resident database that can cache transactions and synchronize data with a centralized Oracle database server. It functions as a real-time infrastructure software product intended for the management of low-latency, high-volume data, of events and of transactions.
- BerkeleyDB, a simple, high-performance, embedded database
- Oracle Rdb, a legacy relational database for the OpenVMS operating-system
- MySQL, a relational database purchased as part of Oracle Corporation's takeover of MySQL's immediate previous owner, Sun Microsystems
- Oracle NoSQL Database, a scalable, distributed key-value NoSQL database[133]
External routines
PL/SQL routines within Oracle databases can access external routines registered in operating-system shared libraries.[134]
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"[135] 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[136] 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)[137] can verify and isolate host system environmental issues that may affect the performance of Oracle software.
Database-related guidelines
Oracle Corporation also endorses certain practices and conventions as enhancing the use of its database products. These include:
- Oracle Maximum Availability Architecture (MAA)[138] guidelines on developing high-availability systems
- Optimal Flexible Architecture (OFA), blueprints for mapping Oracle-database objects to file-systems
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:
- Oracle Certified Associate (OCA)
- Oracle Certified Professional (OCP)
- 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:
- Geographical/regional user groups[139]
- Independent Oracle Users Group
- Industry-centric user groups
- Oracle Technology Network
- Oracle Health Sciences User Group
- Product-centric user groups
- The OakTable Network
- Usenet newsgroups
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.[140]
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). The two companies have a relationship perhaps best described as "coopetition". Niche commercial competitors include Teradata (in data warehousing and business intelligence), Software AG's ADABAS, Sybase, and IBM's Informix, among many others.
In 2007, competition with SAP AG occasioned litigation from Oracle Corporation.[141]
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").[142]
- 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.[143][144]
- Standard Edition (DB SE)
- Cheaper: it can run on up to four processors but has fewer features than Enterprise Edition—it lacks proper parallelization,[145] 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)[146] (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).[147] 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.
As computers running Oracle often have many multi-core processors (resulting in many cores, all to be licensed), the software price can rise into the hundreds of thousands of dollars. The total cost of ownership often exceeds this, as large Oracle installations usually require experienced and trained database administrators to do the set-up properly. Furthermore, further components must be licensed and paid for, for instance the Enterprise Options used with the databases. Many licensing pitfalls let even rise the costs of ownership.[148] Because of the product's large installed base and available training courses, Oracle specialists in some areas have become a more abundant resource than those for more exotic databases. Oracle frequently provides special training offers for database-administrators.
On Linux, Oracle's certified configurations include Oracle's own Oracle Linux and other commercial Linux distributions (Red Hat Enterprise Linux 3, 4 and 5, SuSE SLES 8, 9, 10 and 11, Asianux), which can cost in a range from a few hundred to a few thousand USD per year (depending on processor architecture and the support package purchased).
The Oracle database system can also install and run on freely available Linux distributions such as the Red Hat-based CentOS,[149] or Debian-based systems.[150]
See also
- Comparison of relational database management systems
- Comparison of object-relational database management systems
- Database management system
- List of ERP software packages
- List of relational database management systems
- Oracle Rdb for OpenVMS
- Run Book Automation
References
- ↑ Dietrich, Mike (22 July 2014). "Oracle Database 12.1.0.2 is available!!!". Retrieved 2 February 2015.
- ↑ Lextrait, Vincent (January 2010). "The Programming Languages Beacon, v10.0". Retrieved 14 March 2010.
- ↑ "What's New". Retrieved 29 November 2010.
- ↑ "Welcome to Larryland". Guardian. Retrieved 2009-12-19.
- ↑ Bhakthavatsalam, Namrata (August 2008). "Glossary". Oracle Database Client quote = 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. Retrieved 2008-11-17.
- ↑ 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.
- ↑ 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.
- ↑ 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 [...]
- ↑ "Oracle 8". Oracle FAQs. Retrieved 19 January 2015.
- ↑ 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.
- ↑ 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
- ↑ 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.
- ↑ Oracle FAQ
- ↑ "Known schemas in Oracle". Adp-gmbh.ch. Retrieved 2009-12-19.
- ↑ "11g Default Schema". ABCdba.com. Retrieved 2010-10-26.
- ↑ "Optimizer plan stability definition". Adp-gmbh.ch. Retrieved 2009-12-19.
- ↑ "Oracle's sample schemas". Adp-gmbh.ch. Retrieved 2009-12-19.
- ↑ "Oracle Architecture, System Global Area". World-class-programme.com. Retrieved 2009-12-19.
- ↑ Karlsson André."Oracle DB Architecture - The Basics"
- ↑ "Oracle architecture, the library cache section". World-class-programme.com. Retrieved 2009-12-19.
- ↑ "Oracle Architecture, data dictionary cache". World-class-programme.com. Retrieved 2009-12-19.
- ↑ "Oracle architecture, Program Global Area section". World-class-programme.com. Retrieved 2009-12-19.
- ↑ PGA Definition, Oracle Database Master Glossary
- ↑ 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
- ↑ 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).
- ↑ "Oracle Process architecture concepts". Download.oracle.com. Retrieved 2009-12-19.
- ↑ Antognini, Christian (2008). Troubleshooting Oracle Performance. Apress Series. Apress. p. 71. ISBN 978-1-59059-917-4. Retrieved 2011-05-05.
- ↑ 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.
- ↑ 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.
- ↑ 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).
- ↑ Alapati, Sam; Kim, Charles (2007). "10: Data Guard". Oracle Database 11g: New Features for DBAs and Developers. Expert's voice in Oracle. Apress. p. 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.
- ↑ 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.
- ↑ 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.
- ↑ 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
- ↑ "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
- ↑ 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).
- ↑ 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.
- ↑ 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
- ↑ 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.
- ↑ 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.
- ↑ 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
- ↑ Morales, Tony (2008). "V$SESSION". Oracle Database Reference 11g Release 1 (11.1). Oracle. Retrieved 2008-11-17.
- ↑ 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.
- ↑ "Oracle Database Master Glossary: 11g Release 1 (11.1)". Oracle Corporation. Retrieved 2009-04-24.
latch[:] A simple, low-level serialization mechanism to protect shared data structures in the System Global Area.
- ↑ Ashdown, Lance; Kyte, Tom (2014). "Oracle Database Concepts, 12c Release 1 (12.1): Data Concurrency and Consistency". Oracle Corporation. Retrieved 2015-08-19.
- ↑ 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.
- ↑ 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.
- ↑ 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.
- ↑ 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.
- ↑ 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.
- ↑ 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 [...]
- ↑ 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.
- ↑ "Locale Languages". Retrieved 2008-02-26.
- ↑ "Error Message Languages". Retrieved 2008-02-26.
- ↑ Arju, Md. Abdul; et al. (November 2010). "A complete RMAN shell script backup for Oracle 8i, 9i, 10g, 11g". A complete RMAN shell script backup for Oracle 8i, 9i, 10g, 11g. Md.Abdul Arju. Retrieved 2010-11-07.
A complete RMAN backup shell script that will work regardless of most used oracle version as well as most used unix operating system. In this script it is assumed that you are using recovery catalog for you rman backup.
- ↑ 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.
- ↑ http://www.oracle.com/us/corporate/profit/p27anniv-timeline-151918.pdf
- ↑ https://www.udemy.com/blog/oracle-vs-mysql-vs-sql-server/
- ↑ http://www.dadbm.com/what-is-oracle-database-rdbms/
- ↑ http://docs.oracle.com/cd/E11882_01/server.112/e40540/intro.htm#CNCPT88784
- ↑ As Larry Ellison said in an Oracle OpenWorld keynote presentation on 11 November 2007: "Who'd buy a version 1.0 from four guys in California?"
- 1 2 3 4 5 Oracle.com
- ↑ "Oracle Timeline". Retrieved 21 March 2013.
Oracle Version 4 is released with a new feature called "read consistency," which assures that a query will have a consistent set of data during execution.
- ↑ Webster, Robin (1984-11-13). "PC Relational Database? New Answer Is Oracle". PC Magazine. p. 57. Retrieved 25 October 2013.
- ↑ Compare Oracle.com
- ↑ Harrison, Guy (2001). Oracle SQL high-performance tuning. Prentice Hall PTR Oracle series (2 ed.). Prentice Hall PTR. pp. 590? or 630?. ISBN 978-0-13-012381-7. Retrieved 2011-01-20.
Aurora[:] The name of the Java Virtual Machine (JVM) incorporated into Oracle8i.
- ↑ Gennick, Jonathan (2004). Oracle SQL*Plus: The Definitive Guide. Definitive Guides (2 ed.). O'Reilly Media, Inc. pp. 9–10? or 592?. ISBN 9780596007461. Retrieved 2012-08-03.
iSQL*Plus was expanded to most other operating systems in 2002 with the release of Oracle 9i Database Release 2.
- ↑ "Oracle Database 10g Sets New Record for TPC-H Three TB Benchmark". Retrieved 2008-01-31.
- ↑ "Oracle Announces General Availability of Oracle Database 12c, the First Database Designed for the Cloud" (Press release). Redwood Shores, California: Oracle Corporation. 2013-07-01. Retrieved 2013-09-09.
Oracle Database 12c is a next-generation database [...] providing a new multitenant architecture on top of a fast, scalable, reliable, and secure database platform.
- ↑ 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.
- ↑ theregister.co.uk: Oracle gears up for infrastructure cloud and 12c database launches • The Register
- ↑ Llewellyn, Bryn (July 2009). "Edition-Based Redefinition" (PDF). Redwood Shores, California: Oracle Corporation. pp. 6? or 45?. Retrieved 2010-03-09.
An edition is a [...] nonschema object type, uniquely identified [...] by just its name.
- ↑ Enterprise Edition
- ↑ "Oracle Database 12c Standard Edition". oracle.com. Oracle Corporation. Retrieved 2015-03-04.
Oracle Database 12c Standard Edition is an affordable, full-featured data management solution that is ideal for midsize companies.
- ↑ "Oracle Database 12c Standard Edition One". oracle.com. Oracle Corporation. Retrieved 2015-03-04.
Oracle Database 12c Standard Edition One is optimized for deployment in small enterprises, line-of-business departments, and distributed branch environments. It is available on single servers supporting a maximum of two sockets.
- ↑ Teodora, Vatuiu (2008-12-27). "Technologies solutions and Oracle instruments used in the accomplishment of executive informatics systems (EIS)" (PDF). MPRA: Munich Personal RePEc Archive. pp. 1555–1559. Retrieved 2011-05-09.
Oracle Database 10g Standard Edition One (SE1) is intended for business mediums with quite a low request of adaptation[...]
- ↑ Unlike Standard Edition, Standard Edition One does not support Oracle Real Application Clusters (RAC) or Automatic Workload Management. See: "Oracle Database Comparisons". oracle.com. Oracle Corporation. Retrieved 2015-03-04.
- ↑ Basta, Alfred; Zgola, Melissa (2011). Database Security. Cengage Learning. p. 156. ISBN 9781435453906. Retrieved 2015-03-04.
[...] Standard Edition One [...] was developed for servers that use one to two processors. If the number of CPUs on a server exceeds two, the user must upgrade to the Standard license.
- ↑ "Oracle Database 10g Express Edition". Oracle Technology Network. Oracle Corp. Retrieved 2010-07-25.
Oracle Database 10g Express Edition (Oracle Database XE) is an entry-level, small-footprint database based on the Oracle Database 10g Release 2 code base that's free to develop, deploy, and distribute [...]
- ↑ "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).
- ↑ "Oracle Data Sheet" (PDF). Retrieved 2009-12-19.
- ↑ 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).
- ↑ 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 [...]
- ↑ Aust, Dietmar; Kubicek, Denes; Pokolm, Jens-Christian (2010). Oracle APEX und Oracle XE in der Praxis [Oracle APEX and Oracle XE in practice] (in German). Hüthig Jehle Rehm. p. 295. ISBN 9783826655494. Retrieved 2014-07-03.
Java in der Databank (nicht von Oracle XE unterstutzt) [...] Java-Klassen oder auch komplette Bibliotheken koennen in der Databank mit dem Kommando
loadjava
installiert werden. - ↑ "Oracle Database Lite 10g". oracle.com. Oracle Corporation. Retrieved 2009-06-23.
[...] for developing, deploying and managing applications for mobile and embedded environments.
- ↑ Greenwald, Rick; Stackowiak, Robert; Stern, Jonathan (2007). Oracle Essentials: Oracle Database 11g. Essential Series (4 ed.). O'Reilly Media. pp. 31? or 386?. ISBN 978-0-596-51454-9. Retrieved 2010-06-08.
Today, Oracle offers other embedded databases including TimesTen, Berkeley DB, and Oracle Database Lite.
- ↑ Operating System Requirements for x86-64 Linux Platforms
- ↑ 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.
- ↑ "Oracle and Secerno". Oracle Corporation. 2010. Retrieved 2010-10-18.
Secerno product[:] Oracle Database Firewall
- ↑ "Oracle Database Fiorewall: Frequently Asked Questions". Oracle Technology Network. Oracle Corporation. Retrieved 2011-03-28.
It is designed to prevent SQL Injection attacks [...] It is [...] deployed on the network to monitor and secures database traffic coming through the network.
- ↑ Oracle database options
- ↑ See "Term licenses" at http://oraclestore.oracle.com/ for various markets/countries.
- ↑ "The Licensing Of Oracle Technology Products". OMT-CO Operations Management Technology Consulting GmbH. Retrieved 26 June 2013.
- ↑ Alapati, Sam R.; Charles Kim (2007). Oracle database 11g: new features for DBAs and developers. Expert's voice in Oracle. Apress. pp. 153? or 602?. ISBN 978-1-59059-910-5. Retrieved 2011-05-10.
- ↑ Data Mining
- ↑ Adkoli, Anand; Rama Velpuri (2002). Oracle9i for Windows handbook. Oracle Press Series (2 ed.). McGraw-Hill Professional. pp. 375? or 528?. ISBN 978-0-07-219092-2. Retrieved 2011-01-26.
Oracle Change Management Pack[:] A new feature available on Oracle9i allows you to track and make changes to database object definitions. You can compare two objects in different schemas or different databases.
- ↑ Choi, Phil (2005). "Oracle Database Change Management Pack". Oracle Enterprise Manager Concepts, 10g Release 2 (10.2). Oracle Corporation. Retrieved 2011-01-26.
This pack gives database administrators the ability to evaluate, plan for, and implement database schema changes to support new application requirements without error and data loss while minimizing downtime.
- ↑ Advanced Security
- ↑ "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.
- ↑ Kuhn, Darl (2013). Pro Oracle Database 12c Administration. Expert's voice in Oracle. Apress. p. 667. ISBN 9781430257288. Retrieved 2014-09-28.
A multitenant container database (CDB) is defined as a database capable of housing one or more pluggable databases.
- ↑ "Oracle Multitenant". Oracle Corporation. Retrieved 2013-10-23.
A new option for Oracle Database 12c, Oracle Multitenant [...] is supported by a new architecture that allows a multitenant container database to hold many pluggable databases.
- ↑ See download.oracle.com/docs/cd/B28359_01/license.111/b28287/options.htm#CIHBDGAD
- ↑ "Real Application Testing Overview" (PDF). Oracle Corporation. August 2007. Retrieved 2008-05-19.
- ↑ Shaharear, Mohammad Hasan; et al. (December 2008). "installation of Oracle Text on 10g". installation of Oracle Text on 10g. Mohammad Hasan Shaharear. Retrieved 2011-12-08.
installation of Oracle Text on 10g
- ↑ "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.
- ↑ 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.
- ↑ "Oracle Programmer/2000" (PDF). Oracle Corporation. Retrieved 2009-02-25.
Oracle Programmer/2000 is a suite of programmatic interfaces that allows you to access and manipulate Oracle7 data and schemas. Programmer/2000 provides a rich set of interfaces and supports many programming languages, allowing the programmer to use the programming language and the programming paradigm of choice.
- ↑ "Other Ways of Working with Oracle". Oracle Corporation. Retrieved 2009-02-25.
Programmer/2000[:] a set of 3GL programming language interfaces
- ↑ Desbiens, Frédéric; Peter Moskovits; Philipp Weckerle (2009). Oracle WebCenter 11g Handbook: Build Rich, Customizable Enterprise 2.0 Applications. Osborne ORACLE Press Series. McGraw Hill Professional. p. 189. ISBN 978-0-07-162932-4. Retrieved 2011-05-09.
Oracle WebCenter Suite includes Content Server [...]
- ↑ 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).
- ↑ 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
- ↑ "Overview of Oracle Data Pump". Download.oracle.com. Retrieved 2009-12-19.
- ↑ 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 [...]
- ↑ 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 [...]
- ↑ "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.
- ↑ Nanda, Arup. "Auditing Tells All". Oracle Database 10g: The Top 20 Features for DBAs. Oracle Corporation. Retrieved 2008-08-19.
...the standard audit (available in all versions) and the fine-grained audit (available in Oracle 9i and up ...
- ↑ Oracle.com
- ↑ "Oracle Product Accessibility Status: Database Server Enterprise Edition". Oracle Corporation. 2 June 2008. Retrieved 2009-04-14.
- ↑ "Oracle Data Provider for .NET". Oracle Corporation. Retrieved 2009-05-07.
The Oracle Data Provider for .NET (ODP.NET) features optimized ADO.NET data access to the Oracle database.
- ↑ "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.
- ↑ Smith, Jeff (September 2-015). "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.
Check date values in:|date=
(help) - ↑ 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.
- ↑ "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.
- ↑ Kate, Aniket; Menezes, Bernard; Singh, Ashish (December 2005). "Proceedings of 3rd International Conference on E-Governance, ICEG 2005" (PDF). Lahore: Lahore University of Management Sciences: 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.
|contribution=
ignored (help) - ↑ 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.
- ↑ 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.
- ↑ 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. Idea Group Inc (IGI). 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.
- ↑ 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.
- ↑ 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 [...]
- ↑ 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.
- ↑ 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.
- ↑ 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 [...]
- ↑ Taft, Darryl K (2011-10-18). "Oracle to Boost Data Management With Endeca Buy". eWeek. Ziff Davis. Retrieved 2011-11-03.
Oracle also announced the Oracle NoSQL Database, a distributed, highly scalable, key-value database.
- ↑ 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.
- ↑ 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.
- ↑ "Advanced MetaLink" (PDF). Retrieved 2009-12-19.
- ↑ 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
- ↑ "oracle maximum availability architecture News and Other Resources | TechRepublic". Search.techrepublic.com.com. Retrieved 2012-07-26.
- ↑ "Oracle Users Group Groups". Morganslibrary.org. Retrieved 2012-07-26.
- ↑ ("Oracle Market Share")
- ↑ About the case in Hungarian
- ↑ 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 [...]
- ↑ "Oracle Technology Global Price List" (PDF). Oracle Corporation. 2010-06-14. Retrieved 2010-07-13.
- ↑ "Processor Core Factor Table" (PDF). Retrieved 2011-04-08.
- ↑ Oracle Database Licensing Information Database Editions
- ↑ "overview". Oracle.com. Retrieved 2012-07-26.
- ↑ Licensing Restrictions
- ↑ "Top 60 Licensing Pitfalls for Oracle Databases and Oracle Technology Products". OMTCO Operations Management Technology Consulting GmbH. Retrieved 17 April 2013.
- ↑ "Installation centos; official Oracle Wiki". Wiki.oracle.com. Retrieved 2009-12-19.
- ↑ "Installation on Debian-based systems; official Oracle Wiki". Wiki.oracle.com. Retrieved 2009-12-19.
Bibliography
- Loney, Kevin (17 December 2008). "Oracle Database 11g The Complete Reference" (1st ed.). McGraw-Hill: 1368. ISBN 0-07-159875-8. Retrieved 2009-09-05.
External links
Wikimedia Commons has media related to Oracle (database). |
Wikibooks has a book on the topic of: Oracle database |
- Overview provided by Oracle Corporation.
- Oracle Licensing Knowledge Net.
- Oracle Error Messages listing.
|
|