DBMS_DATA XML option

Right click on any table and click dbms_metadata - you have two options ddl and xml. What is the practical use of these?
 
It allows you to get a specification of the object in DDL or XML format, as generated by the dbms_metadata system package.
 
An XML definition of an object can be used for many purposes, such as version control, finding differences, reporting, and so on.
 
Back
Top