SQL 쿼리 테이블, 저장 프로세스, 트리거 생성 시간 및 최종 수정 시간 예

821 단어

--      

-- 

select * from sysobjects where id=object_id(N'  ') and xtype='U' 

--     

select * from syscolumns where id=object_id(N'  ')  

--     

select * from sysobjects where id=object_id(N'dqtx') and xtype='P' 

 

--        

--    

select name,modify_date from sys.all_objects where name = '    ' and type='P' order by modify_date desc

--   

select name,modify_date from sys.all_objects where name = '    ' and type='TR' order by modify_date desc

-- 

select * from sys.all_objects where name = '    ' and type='u' order by modify_date desc

좋은 웹페이지 즐겨찾기