반응형
전체 테이블 검색
- 현재 사용자가 엑세스 할 수 있는 관계형 테이블 (ALL_TABLES)
SELECT *
FROM ALL_TABLES
WHERE TABLE_NAME = '테이블명';
- 데이터베이스의 모든 관계형 테이블 (DBA_TABLES )
SELECT *
FROM DBA_TABLES
WHERE TABLE_NAME = '테이블명';
- 현재 사용자가 소유한 관계형 테이블 (USER_TABLES )
SELECT *
FROM USER_TABLES
WHERE TABLE_NAME = '테이블명';
관련 속성
OWNER : Owner of the table
TABLE_NAME : Name of the table
TABLESPACE_NAME : Name of the tablespace containing the table; NULL for partitioned, temporary, and index-organized tables
CLUSTER_NAME : Name of the cluster, if any, to which the table belongs
IOT_NAME : Name of the index-organized table, if any, to which the overflow or mapping table entry belongs. If the IOT_TYPE column is not NULL, then this column contains the base table name.
STATUS : If a previous DROP TABLE operation failed, indicates whether the table is unusable (UNUSABLE) or valid (VALID)
반응형
'IT > 데이터베이스' 카테고리의 다른 글
백업과 복구 (0) | 2021.01.09 |
---|---|
트랜잭션과 동시성 제어 (0) | 2021.01.08 |
데이터베이스와 아키텍쳐 구성 (0) | 2021.01.07 |
H2 Database not found (2) | 2019.12.03 |
sqldeveloper 자동정렬 (0) | 2017.06.15 |