October 2002
Beginner
864 pages
18h 41m
English
Even though many CASE tools allow you to reverse engineer tables and indexes, you can always use straight SQL for this purpose. You can retrieve all the information that you need from the data dictionary to rebuild tables and indexes, but doing so effectively is difficult without the use of a procedural language, such as PL/SQL or a shell script. To rebuild tables and indexes, you simply need to query the data dictionary for information needed to rebuild the tables and indexes—such as column names and data types—then convert the returned data to CREATE TABLE and/or CREATE INDEX statements.
We usually use embedded SQL within a shell script, simply due to a matter of preference. Procedural language functions ...
Read now
Unlock full access