Uncategorized

Initializing a connection from a connection poolInitializing a connection from a connection pool

Oracle may maintain state in a database connection that can cause difficult to diagnose problems. Packages may maintain state and context variables may be set. After obtaining a connection from a connection pool one should prepare the connection. An easy way to do this is to create the following procedure {...}

oracle plsql

A logging facility for PL/SQLA logging facility for PL/SQL

Developers frequently use the Oracle dbms_output package to emit messages from their stored procedures. Logger is a package to replace dbms_output and utl_file for logging messages. Logger is: Simple to use log to flat file or dbms_output multiple messages levels configurable message filtering logging entries contain: timestamp calling procedure caliing {...}