Easy way to Write Extraction Query (DDL of Views)

 From record history in the oracle Forms , Copy the View or Table and run in below sql statement.

SELECT
    dbms_metadata.get_ddl('VIEW', 'VIEW_NAME', 'APPS')
FROM
    dual;

You Will get the DDL statment of how the view was created. from there get base table names for extraction query.

Comments

Popular posts from this blog

opaque schema xsd (standard file used in OIC)

DOCUMENTATION ON SANDBOX and PERSONALIZATION

SQL,PLSQL interview practice and DSA patterns