DB정보 가져오는 쿼리
DB목록 select name,dbid from master.dbo.sysdatabases where name not in ('master','tempdb','model','msdb','pubs','northwind') order by dbid -- defaut DB를 제외 테이블 목록 SELECT NAME FROM DBID명(ex: northwind).dbo.SYSOBJECTS WHERE TYPE='U' 테이블 변경 사항 감지 select name, xtype, schema_ver from DBID명(ex: northwind).dbo.sysobjects where xtype = 'u' and schema_ver 0 and name ='테이블명' 컬럼 추가 : +16 컬럼 삭제 : +16 컬럼 수정 ㄱ...