PL/SQL Tutorials

SOURCE SAVE

SOURCE SAVE Save the Source Code and Table and Index Structures using PL/SQL After having gone through some papers on this subject, the need for a robust system has to be developed plugging all the holes, is felt and the result is this. The basic idea and the first paper that has been seen is …

SOURCE SAVE Read More »

PL/SQL TUTORIALS – CONCEPTS

PL/SQL TUTORIALS – DYNAMIC SQL PL/SQL Tutorials – DYNAMIC SQL Within PL/SQL, you can execute any kind of SQL statement (even data definition and data control statements) without resorting to cumbersome programmatic approaches. Dynamic SQL blends seamlessly into your programs, making them more efficient, readable, and concise You need dynamic SQL in the following situations: …

PL/SQL TUTORIALS – CONCEPTS Read More »

ONLINE MOVE PARTITION EXAMPLES

ONLINE MOVE PARTITION EXAMPLES SQL> ALTER TABLE test1 MOVE PARTITION test1_PART1 ONLINE;  Table altered  SQL> ALTER TABLE test1 MOVE PARTITIONtest1_PART1 ONLINE UPDATE INDEXES;  Table altered  SQL> ALTER TABLE test1 MOVE PARTITIONtest1_PART1 ONLINE UPDATE GLOBAL INDEXES;  Table altered Source: Oracle

PL/SQL TUTORIALS – DYNAMIC SQL

PL/SQL TUTORIALS – DYNAMIC SQL PL/SQL Tutorials – DYNAMIC SQL Within PL/SQL, you can execute any kind of SQL statement (even data definition and data control statements) without resorting to cumbersome programmatic approaches. Dynamic SQL blends seamlessly into your programs, making them more efficient, readable, and concise You need dynamic SQL in the following situations: …

PL/SQL TUTORIALS – DYNAMIC SQL Read More »

Scroll to Top