반응형 Dev/DataBase43 ORA-12519, TNS:no appropriate service handler found 어느날 갑자기 DB가 다음의 오류를 내면서 접속하지 못하였다. Caused by: java.sql.SQLException: Listener refused the connection with the following error: ORA-12519, TNS:no appropriate service handler found The Connection descriptor used by the client was: 현재 프로세스를 더 만들지 못해서 발생하는듯 하다. 현재 프로세스 확인방법 select * from v$resource_limit where resource_name = 'processes'; RESOURCE_NAME CURRENT_UTILIZATION MAX_UTILIZATION LIMIT_VALUE.. 2013. 8. 1. 오라클 날짜 재귀 쿼리. 쿼리상에서 날짜별로 데이터를 구할 필요성이 생겨서 사용하게된 쿼리. Connect By로 LEVEL을 참조하여서 작동된다. select --to_date('2013-04-01', 'YYYY-MM-DD') startDT --,to_date('2013-06-11', 'YYYY-MM-DD') endDT to_char(to_date('2013-04-01', 'YYYY-MM-DD')+ (level -1), 'YYYYMMDD') as sendtime , level lv from dual connect by level 2013. 6. 11. [Oracle] Commit 데이터 복구. 쿼리를 잘못 실행해서 데이터를 날린 경우가 종종 발생한다. 이러한 경우 commit 된 상태에서 해당 데이터를 볼 수 있는 쿼리. /* 20분 전의 데이터를 보여주는 쿼리 */ select * from temp_table as of timestamp(systimestamp - interval '20' minute); 2013. 6. 10. Oracle TableSpace 생성 * 테이블 스페이스 생성 create tablespace [테이블스페이스명]datafile '[데이터파일경로]' size 10m[데이터파일크기]autoextend on next 10m[증가시 늘어날 크기] maxsize 50m;[최대 증가 크기] * 테이블 스페이스 삭제drop tablespace [테이블스페이스명] * 사용자 추가 시 테이블 스페이스 지정create user [사용자] identified by [패스워드]default tablespace [테이블스페이스]temporary tablespace TEMP; * 사용자 권한 주기grant connect to [사용자명];grant resource to [사용자명];grant connect, resource, create view to [사용자명.. 2012. 5. 4. 이전 1 ··· 7 8 9 10 11 다음 반응형