Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- profile
- vscode
- web.xml
- maVen
- ssh
- VirtualBox
- port
- lsof
- 줄바꿈 문자
- plugin
- Windows
- Mac
- GIT
- grep
- bash
- tomcat
- xargs
- import
- Eclipse
- netsh
- JavaScript
- 단축키
- Windows 10
- 네트워크
- resource
- find
- context
- Quartz
- IntelliJ
- Source
Archives
- Today
- Total
develog
[MSSQL] INFORMATION_SCHEMA 본문
테이블 | select * from INFORMATION_SCHEMA.TABLES where table_type = 'BASE TABLE' order by table_name ; |
뷰 | select * from INFORMATION_SCHEMA.TABLES where table_type = 'VIEW' order by table_name ; |
컬럼 | select * from INFORMATION_SCHEMA.columns order by table_name, ORDINAL_POSITION ; |
프로시저 | select * from INFORMATION_SCHEMA.ROUTINES where routine_type = 'PROCEDURE' order by routine_name ; |
펑션 | select * from INFORMATION_SCHEMA.ROUTINES where routine_type = 'FUNCTION' order by routine_name ; |
'DB > MSSQL' 카테고리의 다른 글
[MSSQL] 테이블 전체 주석 조회 (0) | 2015.04.09 |
---|---|
[MSSQL] 주석 (0) | 2015.04.09 |
[MSSQL] 테이블, 컬럼 코멘트 조회 (0) | 2015.04.09 |
[MSSQL] Management Studio 단축키 (0) | 2015.04.09 |
[MSSQL] SYSOBJECTS (0) | 2015.04.09 |
Comments