/* 테이블 정보 가져오기 */
select table_name, initial_extent, next_extent, pct_free, pct_used
from user_tables
where table_name like 'TZ%';
/* 컬럼 정보 가져오기 */
select column_nm.*
from user_tables, (
select table_name, column_name, data_type, nullable, data_length, column_id
from All_tab_columns
where owner = '***'
) column_nm
where user_tables.table_name = column_nm.table_name
and user_tables.table_name like 'TZ%'
반응형
'DB > ORACLE' 카테고리의 다른 글
오라클 clob입력 설정 (0) | 2015.03.09 |
---|---|
오라클 AMPERSAND(&)등의 특수 문자 insert하기 (0) | 2015.03.09 |
ORA-01659 (0) | 2015.03.09 |
ORA-01033: ORACLE initialization or shutdown in progress (0) | 2015.03.05 |
ORA-12519 (0) | 2015.03.05 |