Convert Dictionary-managed tablespace to local-managed tablespace
Please be more specific ...
What is your database version?
Convert Dictionary-managed tablespace to local-managed tablespace < Last Thread
This script is only available if you are using Oracle 816 or higher version of database and this is achieved via the dbms_space_admin api.
dbms_space_admin.tablespace_migrate_to_local()
But there are restrictions :
Tablespace cannot be system , offline, bitmapped or Temporary and there must be enough space in the tablespace to accomodate the bitmaps.
If there are any problems with the Locally managed scheme, users can still abandon this and return to dictionary management using:
dbms_space_admin.tablespace_migrate_from_local()
Visit : http://otn.oracle.com and download Oracle8i Adminsitration Guide for more details on locally managed tablespace.
Hope this helps!!!!