프린트 하기

내맘대로긍정이 알려주는

Oracle 23ai 신기능
무료 세미나 발표자료

다운로드 trending_flat

OS환경 : Oracle Linux 6.8 (64bit)

 

DB 환경 : Oracle Database 11.2.0.4

 

에러 : ORA-00277: illegal option to the UNTIL recovery flag SCN

recover database until scn 명령 사용시 발생하는 메세지

1
2
3
4
5
6
7
8
9
10
11
12
SQL> startup mount
ORACLE instance started.
 
Total System Global Area 2137886720 bytes
Fixed Size            2254952 bytes
Variable Size         1442842520 bytes
Database Buffers      687865856 bytes
Redo Buffers            4923392 bytes
Database mounted.
 
SQL> recover database until scn 12233788;
ORA-00277: illegal option to the UNTIL recovery flag SCN

 

 

해결 방법 : sqlplus가 아닌 rman에서 명령어 사용

rman 에서 사용

1
2
3
4
5
6
7
8
9
RMAN> recover database until scn 12233788;
 
Starting recover at 23-APR-21
using channel ORA_DISK_1
 
starting media recovery
media recovery complete, elapsed time: 00:00:00
 
Finished recover at 23-APR-21

 

 

원인 : sqlplus 에 없는 명령을 사용해서 발생한 메세지

sqlplus 가 아닌 rman 에서 until scn 명령을 사용해야함

 

 

참조 : positivemh.tistory.com/720 (관련 시나리오)

www.dba-oracle.com/t_rman_160_recover_until_scn.htm