2012-10-07
DBMS/오라클] 테이블 리스트 보기
select *
from dictionary
select *
from all_all_tables
select *
from user_tables;
--//현재 사용자 정보
select *
from user_users
--// 사용자 테이블의 이름과 설명.
select *
from user_tab_comments
select *
from user_tab_privs
--// 사용자테이블리스트와 해당 테이블의 컬럼명 및 속성.
select *
from user_tab_cols
select *
from user_tab_columns
select *
from user_tab_col_statics
--// 오라클에서 데이터딕셔너리에서 사용자 테이블의 이름 가져오는 쿼리
select rownum, aat.*
from all_all_tables aat
where aat.owner ='LASADM'
select table_name, column_name, data_type, data_length, nullable, data_default
from cols --// user_tab_columns ==> cols 와 동일
where table_name = 'BL_TB_LAW_CONTRACT_MF'
--// 사용자 테이블의 이름과 설명.
select *
from user_tab_comments
--// 오라클에서 데이터딕셔너리에서 사용자 테이블의 정보 가져오는 쿼리
select rownum, utc.table_name, utc.column_name, utc.data_type, utc.data_length, utc.nullable, utc.data_default, acc.comments
from cols utc --// user_tab_columns utc ==> cols utc 와 동일
join all_col_comments acc
on utc.table_name = acc.table_name
and utc.column_name = acc.column_name
--where utc.table_name = 'BL_TB_LAW_CONTRACT_MF'
피드 구독하기:
댓글 (Atom)
댓글 없음:
댓글 쓰기