테이블 목록보기
sp_tables
select * from information_schema.tables
컬럼 상세내용보기
sp_columns 테이블명
select * from information_schema.columns where table_name = '테이블명'
select column_name, data_type, character_maximum_length, column_default from information_schema.columns where table_name = '테이블명'
'Programming & > Database' 카테고리의 다른 글
리눅스에서 oracle 재시작 (0) | 2010.03.16 |
---|---|
mysql root 패스워드 분실시 패스워드 변경하기 (0) | 2010.02.22 |
ASP에서 Oracle연동하기 (0) | 2009.07.08 |
Mysql Grant 명령을 이용한 User 생성 및 권한 설정 (0) | 2009.07.05 |
MySQL 에서 LOAD DATA 문법을 이용하여 CSV 파일 입력하기 (0) | 2009.06.29 |