z

BLOG ARTICLE 개발 | 82 ARTICLE FOUND

  1. 2009.09.08 oracle connect by
  2. 2009.07.31 iBatis Connection reset error
  3. 2009.07.23 vimrc, .bash_profile
  4. 2009.06.12 Open SSL Command Line HOW TO
  5. 2009.05.14 Oracle Sample Scheme 설치

oracle connect by

2009. 9. 8. 19:24

PROTECTED ARTICLE. TYPE THE PASSWORD.

증상 :  서버 IDLE 시간이 지속되면서 쿼리 수행 시 디비 연결이 뒈짐.

해결: sqlmap-config.xml에 다음의 속성 추가

<dataSource type="DBCP"> <-- 데이터 소스는 SIMPLE, JNDI가 아닌 DBCP로 설정
<property name="Pool.ValidationQuery" value="select SYSDATE from DUAL"/>

일정 간격으로 DB에 쿼리를 날려 연결 끊겼으면 풀에 있는 커넥션을
복구하는 메카니즘 인듯함.

commons-dbcp,
commons-pool,
commons-collection 세개의 라이브러리가 필요

http://commons.apache.org 에서 다운로드
AND

vimrc, .bash_profile

2009. 7. 23. 12:49

PROTECTED ARTICLE. TYPE THE PASSWORD.

AND

* Sample Scheme Install

> sqlplus /nolog
sql>conn sys/패스워드@SERVICENAME OR SID [as sysdba]

1) scott 유저의 생성 및 권한부여

SQL> create user scott identified by tiger
2 default tablespace users
3 temporary tablespace temp;

SQL > grant connect , resource to scott;

2) Sample Table Install ($ORACL_HOME/sqlplus/demo 설치 스크립트 저장소)

> sqlplus scott/tiger

SQL>@?/sqlplus/demo/demobld

3) 설치확인
> sqlplus scott/tiger

SQL> select * from tab;

AND