how to view all table scripts in sql*plus?
VPSOct 31 2006 — edited Nov 27 2006Friends,
To view a single table script we can use the below query
select dbms_metadata.get_ddl('TABLE','EMP','SCOTT') from dual;
but i want to view all the tablescript created by scott .
how can i write a query?
thanks
sathyguy