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
Post a Comment