SSMS에서 Database/Table 리스트를 가져오는 쿼리는 아래와 같습니다.
1. Database List
select * from master.dbo.sysdatabases order by 1
2. Table List
select * from information_schema.tables order by TABLE_NAME
'프로그래밍 > SSMS' 카테고리의 다른 글
[CURSOR] CURSOR를 이용한 TRY, CATCH (0) | 2021.04.16 |
---|---|
[MsSql] Atler Assembly(Dll Function) (0) | 2014.02.03 |