0

I have table EMPLOYEES, I need to export ALL table parameters (pctfree, pctused etc.) at a time How can I do this without using many expressions like

SELECT PCT_FREE FROM EMPLOYEES;

4

1 回答 1

1

select dbms_metadata.get_ddl('TABLE','EMPLOYEES') from dual;

于 2012-11-21T13:21:41.703 回答