If ur talking about System tablespace then i am afraid it sounds trouble, u will probablyhave to retore from a previous backup.
Main Topics
Browse All TopicsHi dear all experts:
How to set up default tablespace? In any ini or ora file?
The default tablespace I have here seems corrupted. Can I re-create another default tablespace and drop the original one? Do I have to do anything in Storage Manager or anywhere to set it up as new default tablespace?
Thanks a lot!!
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
hi mingichu!!!
Can u explain y did u say in your question that your tablespace is corrupt ... cause if u r having any error then please mention it in your question ...
Other then that if u want to create another default tablespace ... then u can by connecting through system user... and in SQLPLUS
CREATE TABLESPACE <new_tablespace_name> LOGGING DATAFILE '<path for Database file>' SIZE 200M EXTENT MANAGEMENT LOCAL;
and modify your user ....
ALTER USER <your_username>DEFAULT TABLESPACE <new_tablespace_name>;
if u have further problem please do ask ...
regards
Faraz
There has been no activity in this question in quite some time, and it looks like it has been abandoned. As part of our ongoing mission to clean up the topic areas, a Moderator will finalize this question within the next seven (7) days. At that time, either I or one of the other Moderators will force/accept the comment of
DO NOT ACCEPT THIS COMMENT AS AN ANSWER. If you have further comments on this question or the recommendation, please leave them here.
mingichu,
Some of these questions have been open for some time, and records indicate you logged in as recently as this week. Please resolve them appropriately as soon as possible. Continued disregard of your open questions will result in the force/acceptance of a comment as an answer; other actions affecting your account may also be taken. I will revisit these questions in approximately seven (7) days.
http://www.experts-exchang
http://www.experts-exchang
http://www.experts-exchang
http://www.experts-exchang
Thanks,
Netminder
Community Support Moderator
Experts Exchange
Business Accounts
Answer for Membership
by: dbrowerPosted on 2001-08-30 at 06:21:58ID: 6440528
The default tablespace is set at creation time or by altering the user. If you default tablespace is corrupted you should try to restore and recover it. If you want to change the default tablespace use
ALTER user DEFAULT TABLESPACE my_tablespace;
You can create a new tablespace and drop the old one with
CREATE TABLESPACE new_tablespace
DATAFILE 'my_data_file' SIZE 25M
DEFAULT STORAGE ( initial 8k next 2k pctincrease 0);
ALTER user DEFAULT TABLESPACE new_tablespace;
DROP TABLESPACE old_tablespace;
*** remenber to delete the old datafile to free up your disk space
Good Luck