전체 글(370)
-
sh 계정 생성
$ORACLE_HOME/demo/sales_history/sql_main.sql 실행. 해당파일이 생성되지 않았으면 개별적으로 다운받아서 실행. 파일 용량이 큰 관계로 올리지 못하였다. 대략 17M 정도되며, 분할하여 올리려고 하였지만 회사 컴퓨터라 분할 할 여유가 되질 못하였다. specify password for SH as parameter 1: --> sh 계정에 대한 password 지정 Enter value for 1: ****** specify default tablespace for SH as parameter 2: --> default tablespace 지정 Enter value for 2: users specify temporary tablespace for SH as paramete..
2011.12.26 -
Diagnostics) Oracle10g DB 접속 안될때 sqlplus 에서 SYSTEMSTATE DUMP 받기
http://kr.forums.oracle.com/forums/thread.jspa?threadID=619271&tstart=0 ========================================================================= PURPOSE -------------------------------------------------------------------------------- Oracle10g 이상에서는 HANG 발생으로 DB 접속 안될때 OS 디버거 사용안하고도 sqlplus -prelim 옵션으로 간단하게 SYSTEMSTATE DUMP 를 받을 수 있다. EXPLANATIONS ----------------------------------------------..
2011.12.22 -
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