MS-Sql 테이블 및 저장프로시저 목록 가져오기
1. 테이블 목록 가져오기
select distinct table_name from information_schema.columns
2. 저장프로시저 목록 가져오기
select distinct specific_name from INFORMATION_SCHEMA.PARAMETERS
3. 테이블 컬럼 목록 가져오기
select Column_Name from information_schema.columns where table_name = '테이블명'
'프로그램&DB > MS-SQL' 카테고리의 다른 글
MS-SQL UPDATE 문에서 Case When 사용하여 전체 업데이트 (0) | 2013.08.27 |
---|---|
[MS-Sql] Select문을 이용한 Update 쿼리 (0) | 2012.12.11 |
[MSSQL] select update 쿼리 (0) | 2012.11.06 |
MSSQL 테이블 복사 (0) | 2012.07.05 |
Mass SQL 인젝션으로 삽입된 악성코드 일괄 삭제 (0) | 2009.04.15 |