November 2004
Intermediate to advanced
576 pages
11h 49m
English
In this chapter, you will learn
The two phases of processing an SQL statement
The difference between dynamic SQL and static SQL
When and how to use dynamic SQL with the EXECUTE IMMEDIATE statement
When and how to use dynamic SQL with PREPARE and EXECUTE
The use of dynamic SQL in cursors
How to use dynamic CALL statements
The use of dynamic SQL for DDL
How to use the escape character in dynamic SQL
How to use the package cache
Dynamic SQL is a method of SQL programming that allows you to write robust and flexible code. So far, only static SQL has been used in our SQL procedures, and the distinction between dynamic SQL and static SQL has not been made. At this stage, you may not even know that SQL can be classified as static ...