Get DDL of all tablespaces
set heading off; set echo off; Set pages 999; set long 90000; spool ddl_tablespace.sql select dbms_metadata.get_ddl('TABLESPACE',tb.tablespace_name) from dba_tablespaces tb; spool off
oracle configurationintermediate
by OracleDba
12 views