Oracle Rdb

Oracle Rdb is a relational database management system (RDBMS) for the Hewlett-Packard OpenVMS operating system. It was originally created by Digital Equipment Corporation (DEC) in 1984[1] as part of the VMS Information Architecture, intended to be used for data storage and retrieval by high-level languages and/or other DEC products such as DATATRIEVE, RALLY, and TEAMDATA. The original name was Rdb/VMS.

Product history

In 1994 DEC sold the Rdb division to Oracle Corporation where it was rebranded Oracle Rdb. Oracle was still enhancing and developing this product in 2013 (although "Oracle Database" products like Oracle 11g get the lion's share of Oracle's advertising budget). It currently runs on OpenVMS for VAX, Alpha and IA-64 (Itanium). It used to run on DEC Tru64 and Microsoft Windows NT. Demand for the Tru64 version was so low that support was dropped. The Windows NT port was never released as Oracle could not obtain support on the compilers necessary for this platform.

Rdb featured one of the first cost-based optimizers, and after acquisition Oracle introduced a cost-based optimizer in its regular Oracle RDBMS product.

Data access

Interactive access to the Oracle Rdb can be by SQL (Structured Query Language), RDO (Relational Database Operator), or both.

High level languages usually access Oracle-Rdb by:

  1. embedding RDO statements in the source file then running it through a precompiler
    (example: "file.RCO" is pre-compiled into "file.COB")
  2. embedding SQL statements in the source file then running it through a precompiler
    (example: "file.SCO" is pre-compiled into "file.COB")
  3. placing the SQL statements in a file external to the source code; this separate file is converted to object code by the "SQL Module Language" compiler, and the source code then references these SQL statements and, after compilation, the two are joined by the OpenVMS linker.
  example: $ SQL$MOD file_bas.sqlmod        -> file_bas.obj
           $ BASIC   file.bas               -> file.obj
           $ LINK    file.obj,file_bas.obj -> file.exe

A variation of example 3 allows "Dynamic SQL" to be created in the source code, and then used to communicate with Rdb via a structure known as SQLDA (SQL Descriptor Area).

On OpenVMS systems, Oracle Rdb is a popular (although expensive) upgrade path for applications written using Record Management Services (RMS) files.

Future of Rdb

Oracle has released a statement of direction which indicates integration with Oracle 9i and 10g through technology sharing.[2]

On March 22, 2011, Oracle announced it has decided to end all software development on the Itanium; Oracle Rdb 7.3 will be the last major version released by Oracle.

Statement issued on September 4, 2012: Previously, Oracle announced that it would stop developing new versions of its software on Itanium microprocessors. For example, that meant version 12c of the Oracle database due out in early 2013 would not be available on Itanium. However, a judge recently ruled that Oracle has a contract to continue porting its software to Itanium computers for as long as HP sells Itanium computers. Therefore, Oracle will continue building the latest versions of its database and other software covered by the judge's ruling to HP Itanium computers. Oracle software on HP's Itanium computers will be released on approximately the same schedule as Oracle software on IBM's Power systems.[3]

References

This article is issued from Wikipedia - version of the 10/22/2015. The text is available under the Creative Commons Attribution/Share Alike but additional terms may apply for the media files.