12c New Feature: Session level sequences

In 12c a new SESSION level sequence can be created to support sequence values at session level. This feature can be usefull if you are working with global temporary tables that have session level existence. If you create a session level sequence you can create a unique range of values in your active session not…

12c New Feature: DBMS_QOPATCH

A other nice new Feature is that you can now query Inventory details inside the Oracle Database. This is very usefull for example if you want to extend your Monitoring to monitor Patch details or when you want to compare two Oracle Home from sqlplus. The new Package DBMS_QOPATCH returns all Information as XML Document.…

12c New Feature: Invisible and Hidden Columns

You can now create invisible columns in your database. This means that when you create such column, that this will not affect you application and  you can fill it with data. When all preparation is done you can change it to a visible column. Sample for creating a table with invisible columns:   CREATE TABLE…