반응형
SQL sever management studio 에서 특정 데이트베이스의 테이블 리스트를 불러오기 위해 쓸 수 있는 3가지의 쿼리가 있음.
-- Gets the list of tables only
Select * from SYSOBJECTS where XTYPE = 'U'
-- Gets the list of tavbles only
Select * from SYS.TABLES
-- Gets the list of tables and views
Select * from INFORMATION_SCHEMA.TABLES
-- Gets the list of different object types(XTYPE) in da database
Select Distinct XTYPE from SYSOBJECTS
-- Gets the list of views
Select * from SYS.VIEWS
-- Gets the list of Procedures
Select * from SYS.PROCEDURES
반응형
'Database > SQL Server' 카테고리의 다른 글
SQL Server - 파라미터 옵션(NULL값 True) 주고 실전에 사용하기 (0) | 2020.12.10 |
---|---|
SQL Server - 재사용 가능한 스크립트 Re-runnable sql server script (0) | 2020.12.10 |
SQL Server - 무작위 데이터로 큰 테이블 만들기 Creating a large table with random data (0) | 2020.12.09 |
SQL Server - 서브 쿼리 Subqueries, 상관 서브 쿼리 Correlated sub query (0) | 2020.12.09 |
SQL Server - 트랜잭션 (Transaction) (0) | 2020.12.09 |