Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
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;
select dbms_metadata.get_ddl('TABLE','EMPLOYEES') from dual;