-- 테이블 목록 조회
SELECT OBJECT_NAME
FROM USER_OBJECTS
WHERE OBJECT_TYPE ='TABLE'
ORDER BY OBJECT_NAME
-- 칼럼 목록 조회
SELECT TABLE_NAME, COLUMN_NAME, DATA_TYPE, DATA_LENGTH, DATA_PRECISION, DATA_SCALE, NULLABLE
FROM COLS
-- WHERE TABLE_NAME NOT LIKE '%SYNC'
ORDER BY TABLE_NAME, COLUMN_ID
※ Oracle SID 확인
SQL> select instance from v$thread;
※ Oracle DB_NAME 확인
SQL> select name from v$database;
※ Oracle User 확인
SQL> select * from all_users;
※ 등록된 User 목록 보기
SQL> select username, user_id from dba_users order by username;
※ User가 소유한 모든 테이블 보기
SQL> select table_name from user_tables;
※ 사용자 정보 확인
SQL> select username, default_tablespace,temporary_tablespace from dba_users;
※ 오브젝트 조회
SQL> select * from all_objects where object_name like '명';
※ 테이블 조회
SQL> select * from all_tables where table_name like '명';
※ 시퀀스 정보 보기
SQL> select * from user_sequences;
※ 시노님 조회
SQL> select * from all_synonyms where synonym_name='명';
※ 테이블 인덱스 정보 조회
SQL> select * from user_indexes where table_name='테이블명';
※ 테이블의 컬럼 정보 조회
SQL> select * from all_tab_columns where table_name='테이블명';
※ table comment 쿼리
SQL> select * from all_tab_comments where table_name='테이블명';
※ column comment 쿼리
SQL> select * from all_col_comments where table_name='테이블명';
'Database' 카테고리의 다른 글
10G purge 휴지통 비우기/복원 기능 (0) | 2015.05.12 |
---|---|
sqlplus 백스페이스 사용 (0) | 2014.10.19 |
Flashback Technology (0) | 2014.10.15 |
Oracle Event Tour (0) | 2014.10.10 |
AWR Report (0) | 2014.09.29 |