※ 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 all_ind_columns where table_name='테이블명';
※ 테이블의 컬럼 정보 조회
SQL> select * from all_tab_columns where table_name='테이블명';
※ table comment 쿼리
SQL> select * from all_tab_comments where table_name='테이블명';
[출처] 오라클 select 를 이용한 내용 확인|작성자 plzyouloveme
※ column comment 쿼리
SQL> select * from all_col_comments where table_name='테이블명';
'SQL > Query' 카테고리의 다른 글
Oracle | 누적합계(단계별 합계) 구하기 (0) | 2014.07.22 |
---|---|
SQL에서 연도별 현황을 그룹함수를 써서 카운트 (0) | 2014.07.22 |
[본문스크랩] 오라클 에서 MS-SQL 쿼리문, 함수 차이점 (0) | 2014.06.11 |
[본문스크랩] 오라클 모니터링 하기 위한 쿼리 2 (0) | 2014.06.11 |
SELECT한 내용을 INSERT하기 (0) | 2014.06.11 |
테이블 컬럼상세 조회하기 (0) | 2014.06.11 |
월별 통계 정보 구하기 쿼리 (0) | 2014.06.11 |
지정 연,월에 해당하는 날짜수만큼 row를 생성하기 (0) | 2014.06.11 |