oracle 에서 테이블 목록 또는 테이블 컬럼 확인 쿼리
- 데이타베이스/Oracle
- 2011. 8. 15. 14:19
/**
* 문서번호: nabiro_201108151415
* 검색어: nabiro, oracle, 오라클, 테이블 목록, table list, query, 쿼리, 컬럼, column
* 출처:
* 참조:
**/
테이블 목록 확인 쿼리
select object_name from user_objects where object_type = ‘TABLE’;
select object_name from user_objects where object_type = ‘SEQUENCE’;
또는
select * from tab;
사용자 테이블 리스트 보기
select table_name from user_tables;
테이블 제약 조건 보기
select table_name, constraint_name, constraint_type
from user_constraints
where table_name=’EMP3’;
테이블 목록 조회
select object_name from user_objects where object_type=’TABLE’;
컬럼 조회
select column_name, data_type, data_length, data_precision, data_scale, nullable from cols where table_name=’테이블명’;'데이타베이스 > 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 |