How to convert local management tablespace to dictionary managed tablespace

Questions by prasad_jogi

Showing Answers 1 - 6 of 6 Answers

g.mrunalini

  • Jul 22nd, 2008
 

use the following package

>execute dbms_space_admin.tablespace_convert_to_local('tablespace_name');
>execute dbms_space_admin.tablespace_convert_from_local('tablespace_name');

  Was this answer useful?  Yes

amit19821

  • Mar 12th, 2009
 

Local to Dictionary managed tablespcaes:
exec dbms_space_admin.Tablespace_Migrate_FROM_Local('tablespace');

Dictionary to locally managed tablespaces:
exec dbms_space_admin.Tablespace_Migrate_to_Local('tablespace');

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions