Hi All,
Can anyone please let me know, How to take script for schema of the tables, stored procedures of Oracle through SQL Developer..?
Thanks in Advance.
|
1
|
Hi All, Can anyone please let me know, How to take script for schema of the tables, stored procedures of Oracle through SQL Developer..? Thanks in Advance. Mahesh |
||
|
|
|
|
use the dbms_metadata package, as described here |
||
|
|
|
|
If you want to see DDL for the objects, you can use
For example this will give you the DDL script for
You may need to set the |
||
|
|
|
|
Hi Thanks for the reply, But if suppose i want script for all the tables at a time... Then what i need to to... Thanks, Mahesh |
||
|
|
|
The basic answer appears to be 'use the dbms_metadata package'. The axuilliary question is:
And the answer, presumably, is to interrogate the system catalog for the names and owners of all the tables:
I'm not sufficiently familiar with Oracle to know the system catalog. In Informix, which I do know, assuming that there was a procedure
In Informix, tabids less than 100 are reserved for the system catalog, and non-tables (views, synonyms, sequences and a few other esoteric things) are excluded by requiring the right 'tabtype'. |
||
|
|
|
|
In Oracle the location that contains information about all database objects including tables and stored procedures is called the Data Dictionary. It is a collection of views that provides you with access to the metadata that defines the database. You can query the Data Dictionary views for a list of desired database objects and then use the functions available in For a few pointers, for example to get a list of tables you can use the following Data Dictionary views
|
||
|
|
|
|
I did not know about DMBS_METADATA, but your answers prompted me to create a utility to script all objects owned by an Oracle user. |
||
|
|