Do the following steps to open the database: 
1. set undo_management=MANUAL in your init file. 
2. connect "/ as sysdba" and startup the database using this init file (if not it will use the SPFILE by default). 
eg. 
SQL> startup pfile= 
3. drop the tablespace if you wrongly created one without specifying "undo" 
4. create a new undo tablespace: 
create undo tablespace undotbs datafile '/DB1/undotbs01.dbf' size 1M reuse; 
5. shutdown the database 
6. change undo_management=AUTO in your init file and set undo_tablespace= 
UNDOTBS (or whatever name you specified during the undo tablespace creation) 
7. connect "/ as sysdba" and startup the database using this init file (as in step 2). 
Now the database will open using the new undo tablespace and it would have created new undo segments in this tablespace. .
			
		
 
	
Partager