Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Mailing Lists -> Oracle-L -> RE: wrong tablespace used
Hi Gunawan,
unfortunetly I do shutdown normal, and when I try to
SVRMGRL> startup mount (startup only it give me error because can not found ts1.dbf)
ALTER DATABASE CREATE DATAFILE
'/appl/OraHome/oradata/MYDB/ts1.dbf'
AS
'/appl/OraHome/oradata/MYDB/ts1.dbf';
It gave me
Statement processed
and when I do (
RECOVER DATAFILE '/appl/OraHome/oradata/MYDB/ts1.dbf';
ORA-00279: change 199725 generated at 03/01/2001 15:24:10 needed for thread
1
ORA-00289: suggestion : /appl/OraHome/dbs/arch1_7472.dbf
ORA-00280: change 199725 for thread 1 is in sequence #7472
Specify log: {<RET>=suggested | filename | AUTO | CANCEL}
ORA-00308: cannot open archived log '/appl/OraHome/dbs/arch1_7472.dbf'
ORA-27037: unale to obtain file status
SVR4 Error: 2: No such file or directory
Additional informatoin: 3
Thank you for your help
-----Original Message-----
Sent: Friday, 9 March 2001 10:12 PM
To: sinardyxing_at_bcsis.com; oracle-l_at_fatcity.com; 'lzDBA'
First of all, to recover the ts1 tablespace, do something like: ALTER DATABASE CREATE DATAFILE '/appl/OraHome/oradata/MYDB/ts1.dbf'
AS '/appl/OraHome/oradata/MYDB/ts1.dbf';
RECOVER DATAFILE '/appl/OraHome/oradata/MYDB/ts1.dbf';
Now, on the other question, are you sure there's not another table called
EMP
owned by another USER like SCOTT? Query dba_segments view:
SELECT owner, segment_name, tablespace_name FROM dba_segments
WHERE segment_name = 'EMP';
My $0.02.
HTP.
Gunawan Yuwono
Oracle DBA
Kansas City, USA
-- Please see the official ORACLE-L FAQ: http://www.orafaq.com -- Author: INET: sinardyxing_at_bcsis.com Fat City Network Services -- (858) 538-5051 FAX: (858) 538-5051 San Diego, California -- Public Internet access / Mailing Lists -------------------------------------------------------------------- To REMOVE yourself from this mailing list, send an E-Mail message to: ListGuru_at_fatcity.com (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing).Received on Sun Mar 11 2001 - 19:17:06 CST
![]() |
![]() |