| |
GeekInterview.com > Interview Questions > Oracle > Database Administration
| Print | |
Question: how to convert local management tablespace to dictionary managed tablespace
|
| March 03, 2009 22:04:08 |
#2 |
| amit19821 |
Member Since: March 2009 Total Comments: 1 |
RE: how to convert local management tablespace to dictionary managed tablespace |
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');
|
| |
Back To Question | |