본문 바로가기

프로그램&DB/MS-SQL

MS-Sql 테이블 및 저장프로시저 목록 가져오기

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 = '테이블명'


[출처] http://udt785.tistory.com/50