전체 글(380)
-
grep -i
grep 에서 -i 옵션은 대소문자를 구분하지 않겠다. ex) 1. grep -i ora- alert_prod.log alert_prod.log 파일에서 ora- 와 ORA- 로 되어있는 것들을 찾겠다.(대소문자 구분 안함) 2. grep ora- alert_prod.log alert_prod.log 파일에서 ora-로 되어있는 것들을 찾겠다. (대소문자 구분)
2011.12.22 -
ALL_COL_COMMENTS
http://docs.oracle.com/cd/B28359_01/server.111/b28320/statviews_1036.htm ALL_COL_COMMENTSALL_COL_COMMENTS displays comments on the columns of the tables and views accessible to the current user. Related Views DBA_COL_COMMENTS displays comments on the columns of all tables and views in the database. USER_COL_COMMENTS displays comments on the columns of the tables and views owned by the current us..
2011.12.22 -
시스템 shutdown 한 날짜
유닉스에서는 shutdown 한 로그 기록을 아래경로에 남겨놓는다. vi /var/adm/shutdownlog 참고로 uptime은 시스템이 재가동 된 후 얼마동안 지속되고 있는지를 확인 할 수 있다.
2011.12.22 -
10g에서 sys_connect_by_path 사용법
create table temp_nation as select 'Seoul' city, 'Korea' country from dual union all select 'Busan' city, 'Korea' country from dual union all select 'Inchon' city, 'Korea' country from dual union all select 'LA' city, 'America' country from dual union all select 'Newyork' city, 'America' country from dual union all select 'Mexicocity' city, 'Mexico' country from dual ; select country, substr(max..
2011.12.01 -
[스크랩] CHECKPOINT NOT COMPLETE에 대해서
http://forums.oracle.com/forums/thread.jspa?threadID=468708 제품 : ORACLE SERVER 작성날짜 : 2003-06-10 CHECKPOINT NOT COMPLETE에 대해서 ================================ database가 전체적으로 멈춘것처럼 어떠한 새로운 작업도 진행이 안되는 경우, alertSID.log file를 확인해 보면 아래와 같은 message가 적힌 경우가 있다. Checkpoint not complete 이러한 message가 의미하는 것은 무엇이며, 왜 발생하는지, 그리고 어떠한 조치가 가능한지 자세히 살펴본다. 1. checkpoint란 무엇인가? ~~~~~~~~~~~~~~~~~~~~~~~~~ checkp..
2011.11.23 -
특정 IP만 접속
sqlnet.ora에 설정한다. tcp.validnode_checking = yes tcp.invited_nodes=(127.0.0.1,127.0.0.2) tcp.NODELAY=yes listener 재시작..
2011.11.21