Total(378)
-
Datafile resize에 대한 오해(?)
용량이 부족할 때 데이터 파일을 추가 해주는 형식으로 주로 하였기에, resize 할 때 문제를 생각해 보지 않았다. autoextensible 되고 있는 데이터 파일을 resize를 하면 resize 한 만큼의 용량으로 자동 증가가 되는 줄 알았다. 하지만 아래 결과를 보게 된다면 생각이 달라질 것이다. 테이블 스페이스를 생성하고 상태 변경까지 각각의 size를 확인해 볼 것이다. 1. 테이블 스페이스 생성 ### create tablespace tbs_auto ### datafile '/oracle/oradata/orcl/Disk3/tbs_auto.bdf' size 1m ### autoextend on next 8k maxsize 3m; TABLESPACE AUT current(MB) Max exte..
2012.01.20 -
PCI Device 문제(XP 서비스팩2)
Windows XP 설치 후 PCI Device 가 잡히질 않아 고생을 했다. 사운드가 듣기 싫은 삐삐 거리는 소리만 들려 PCI Device가 오디오 드라이브와 관련 됐을 것이라 추측하였다. 그래서 오디오와 관련된 드라이브를 찾아서 설치하려 하였지만, 설치를 못한다는 에러만 보일뿐이다. [해결방안] 서비스팩2이하라면 KB888111을 설치한다. 그러면 PCI Device 가 사라지고 audio 관련된 문구가 나타난다.(역시나 오디오였음.) 해당 드라이버를 설치하니 제대로 설치가 되었다. 장치관리자에서 드라이브 업데이트를 클릭하고 권장 또는 고급으로 들어가서 업데이트를 하면 쉽게 할 수 있다.
2012.01.16 -
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