Tag: Oracle

Community

Faster Backup, Faster Recovery

(Arup Nanda) John, the lead DBA at Acme Bank, is at the IT center of attention in a high-level company acquisition. Recently Acme Bank acquired another bank, taking over its entire technology infrastructure. One special area of interest is the other bank’s data warehouse database, which has been

Community

Understanding Triggers

(Philip Greenspun) A trigger is a fragment of code that you tell Oracle to run before or after a table is modified. A trigger has the power to –make sure that a column is filled in with default information –make sure that an audit row is inserted into another table –after finding that

Community

Simple Programs in PL/SQL

he simplest form of program has some declarations followed by an executable section consisting of one or more of the SQL statements with which we are familiar. The major nuance is that the form of the SELECT statement is different from its SQL form. After the SELECT clause, we must have an INTO clau

Community

Better to Best NDS

(Steven Feuerstein) In recent years, dynamic SQL has become a much more common aspect of PL/SQL programming. Prior to the availability of Native Dynamic SQL (NDS) in Oracle8i, dynamic SQL was available in PL/SQL only through the DBMS_SQL package. Although very robust, DBMS_SQL was very difficult