1) alter rollback segment rbs1 offline; (repeat for all rbs).
2) alter tablespace rbs offline;
3) drop tablespace rbs including contents;
4) create tablespace rbs datafile 'D:\DHUNT\ORACLEDATA\DBDATA\DHUNT\DHUNTRBS01.DBF'
size 10m reuse autoextend on next 10m maxsize 2000m;
5) create rollback segment rbs1
storage (initial 1m next 1m optimal 20m maxextents unlimited)
tablespace system;
(Note: If you use traditional rollback segments in Oracle 9i, you will need to create a "dummy" rollback segment in the SYSTEM tablespace and bring it online before creating your first traditional rollback segment. You can drop the "dummy" rollback segment following the successful creation and on-lining of your first traditional rollback segment.)
6) alter rollback segment <name> online; (for each rollback segment).
This process should resolve your having inadvertently dropped one of your rollback/undo tablespace files.
[santa]Mufasa
(aka Dave of Sandy, Utah, USA @ 23:06 (02Aug04) UTC (aka "GMT" and "Zulu"), 16:06 (02Aug04) Mountain Time)