2012. 3. 28. 17:18
로그마이너를 사용하기 위래 평소 사용하던대로 아래 쿼리를 실행시켰지만
EXECUTE DBMS_LOGMNR.ADD_LOGFILE(LOGFILENAME => '/home/oracle/oracle/oradata/orcl/redo02.log' , OPTIONS => DBMS_LOGMNR.NEW);
아래와 같은 에러 메세지가 발생했다.
ORA-06550: line 1, column 11:
PLS-00103: Encountered the symbol "DBMS_LOGMNR" when expecting one of the following:
PLS-00103: Encountered the symbol "DBMS_LOGMNR" when expecting one of the following:
:= . ( @ % ;
The symbol ":=" was substituted for "DBMS_LOGMNR" to continue.
-------------------------------------------
해결 방법!!
EXECUTE DBMS_LOGMNR.ADD_LOGFILE(...);
대신에
EXEC DBMS_LOGMNR.ADD_LOGFILE(...);
를 사용한다.
이상!!
'Oracle > SQL' 카테고리의 다른 글
view 테이블 정의 등 (0) | 2013.02.06 |
---|---|
DEAD SESSION 정리(sqlnet.ora에 expire_time 설정) (0) | 2012.04.23 |
오라클 DATE 연산(날짜, 시간 연산) (0) | 2012.03.13 |
sqlplus 방향키 안될 때 적용 파일 (0) | 2011.08.22 |
Linux 오라클 사용 10g - 서비스 시작, 명령어 (0) | 2011.08.22 |