SQL Unplugged 2013 세미나
세미나 소식&내용 / 2013. 10. 8. 16:49

SQL Unplugged 2013 세미나(http://www.microsoft.com/ko-kr/sqlserver/event/sqlunplugged2013/default.aspx) 안내입니다.
|
SQL Unplugged 2013 세미나(http://www.microsoft.com/ko-kr/sqlserver/event/sqlunplugged2013/default.aspx) 안내입니다.
타켓 DB에 테이블(Table)이 몇개가 존재하는지 확인하기 위해 아래와 같이 "information_schema.tables" 테이블을 조회하면 된다.
USE MYDB GO
SELECT COUNT(*) FROM information_schema.tables WHERE TABLE_TYPE = 'base table'
|