oracle 에서 쿼리 실행 시간 보기
- 데이타베이스/Oracle
- 2011. 8. 15. 14:21
/**
* 문서번호: nabiro_201108151420
* 검색어: nabiro, oracle, 오라클, 쿼리 실행 시간, query excution time
* 출처:
* 참조:
**/
쿼리 수행 시간 보기
쿼리 수행 시간 보기
set timing on
select table_name, constraint_name, constraint_type
from user_constraints
where table_name=’EMP3’;
'데이타베이스 > Oracle' 카테고리의 다른 글
oracle 10g Express Edition (xe) 에서 scott 계정 사용하기 (0) | 2011.08.16 |
---|---|
oracle 에서 테이블 목록 또는 테이블 컬럼 확인 쿼리 (0) | 2011.08.15 |
oracle 에서 계정에 권한 주기 (0) | 2011.08.15 |
oracle 에서 계정 생성하기 (0) | 2011.08.15 |
oracle 에서 tablespace 생성하기 (0) | 2011.08.15 |