C:\Documents and Settings\Administrator>sqlplus /nolog
SQL*Plus: Release 10.2.0.1.0 - Production on 星期一 7月 5 09:50:36 2010
Copyright (c) 1982, 2005, Oracle. All rights reserved.
SQL> conn /as sysdba
已連接。
SQL> shutdown normal
ORA-01109: 數(shù)據(jù)庫未打開
已經(jīng)卸載數(shù)據(jù)庫。
ORACLE 例程已經(jīng)關閉。
SQL> startup mount
ORACLE 例程已經(jīng)啟動。
Total System Global Area 289406976 bytes
Fixed Size 1248576 bytes
Variable Size 83886784 bytes
Database Buffers 197132288 bytes
Redo Buffers 7139328 bytes
數(shù)據(jù)庫裝載完畢。
SQL> alter database open
2 ;
alter database open
*
第 1 行出現(xiàn)錯誤:
ORA-00600: 內部錯誤代碼, 參數(shù): [kcratr1_lastbwr], [], [], [], [], [], [], []
SQL> alter database noarchivelog;
數(shù)據(jù)庫已更改。
SQL> alter database open;
alter database open
*
第 1 行出現(xiàn)錯誤:
ORA-00600: 內部錯誤代碼, 參數(shù): [kcratr1_lastbwr], [], [], [], [], [], [], []
SQL> shutdown immediate
ORA-01109: 數(shù)據(jù)庫未打開
已經(jīng)卸載數(shù)據(jù)庫。
ORACLE 例程已經(jīng)關閉。
SQL> startup mount
ORACLE 例程已經(jīng)啟動。
Total System Global Area 289406976 bytes
Fixed Size 1248576 bytes
Variable Size 83886784 bytes
Database Buffers 197132288 bytes
Redo Buffers 7139328 bytes
數(shù)據(jù)庫裝載完畢。
SQL> recover database;
完成介質恢復。
SQL> alter database open;
數(shù)據(jù)庫已更改。
SQL> exit
posted on 2011-04-14 19:15
SIMONE 閱讀(4363)
評論(2) 編輯 收藏 所屬分類:
oracle