일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- find
- ssh
- xargs
- grep
- vscode
- Source
- web.xml
- 단축키
- resource
- port
- 네트워크
- Mac
- context
- JavaScript
- IntelliJ
- plugin
- GIT
- Quartz
- import
- Eclipse
- bash
- VirtualBox
- netsh
- lsof
- profile
- maVen
- Windows
- tomcat
- Windows 10
- 줄바꿈 문자
- Today
- Total
develog
[mssql] sysobjects, xtype 본문
select * |
사용자 테이블 | select * from sysobjects where xtype = 'U' order by name; |
저장 프로시저 | select * from sysobjects where xtype = 'P' order by name; |
스칼라 함수 | select * from sysobjects where xtype = 'FN' order by name; |
뷰 | select * from sysobjects where xtype = 'V' order by name; |
xtype
AF = 집계 함수(CLR) |
sysobjects, xtype
sys.sysobjects (TRANSACT-SQL) - SQL Server
sys.sysobjects(Transact-SQL)sys.sysobjects (Transact-SQL) 이 문서의 내용 --> 적용 대상: SQL Server Azure SQL Database Azure SQL Data Warehouse 병렬 데이터 웨어하우스 APPLIES TO: SQL Server Azure SQL Database Azure SQL Data Warehouse Parallel Data Warehouse 데이터베이스에서 만들어진 각 개체(
docs.microsoft.com