Tag: Oracle

Community

Fast Reset Sequences (Alternative)

(Ilya Petrenko) In a previous tip, Fast Reset Sequences, I showed how to reset a sequence to MinValue with few calls to the data dictionary (SQL and PL/SQL implementations). The following script below is another approach to achiev the same result with even fewer calls. This technique is very useful

Community

Using Oracle PL/SQL

PL/SQL stands for Procedural Language/SQL. PL/SQL extends SQL by adding constructs found in procedural languages, resulting in a structural language that is more powerful than SQL. The basic unit in PL/SQL is a block. All PL/SQL programs are made up of blocks, which can be nested within each other.