HOW TO EXTRACT DLL FOR TEMPORARY TABLESPACE ON ORACLE DATABASE

oracle-11g-logo

I  was needing to extract  DDL for temporary tablespaces  on Oracle Database . Then, I took  the information about it using a DBMS_METADATA. Thus, follow  how to take this information:

SQL> set heading off;
SQL> set echo off;
SQL> set pages 2000
SQL> set long 99999
SQL> spool tablespace_temp.sql
SQL> select dbms_metadata.get_ddl('TABLESPACE', tablespace_name) from dba_temp_files;
##HERE WILL BE SHOW TEMPORARY  TABLESPACES DLL ABOUT YOUR DATABASE##
SQL> spool off

I hope this post can help you!

See ya, Bruno Reis

Related posts

4 Thoughts to “HOW TO EXTRACT DLL FOR TEMPORARY TABLESPACE ON ORACLE DATABASE”

  1. … [Trackback]

    […] Read More Info here to that Topic: techdatabasket.com/2015/04/26/how-to-extract-dll-for-temporary-tablespace-on-oracle-database/ […]

  2. … [Trackback]

    […] Read More Information here on that Topic: techdatabasket.com/2015/04/26/how-to-extract-dll-for-temporary-tablespace-on-oracle-database/ […]

  3. … [Trackback]

    […] Find More on that Topic: techdatabasket.com/2015/04/26/how-to-extract-dll-for-temporary-tablespace-on-oracle-database/ […]

  4. … [Trackback]

    […] Here you can find 81913 more Info on that Topic: techdatabasket.com/2015/04/26/how-to-extract-dll-for-temporary-tablespace-on-oracle-database/ […]

Leave a Comment