码迷,mamicode.com
首页 > 其他好文 > 详细

查询表、存储过程、触发器的创建时间和最后修改时间

时间:2015-01-27 12:51:44      阅读:159      评论:0      收藏:0      [点我收藏+]

标签:

--查询建立时间

--表

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

查询表、存储过程、触发器的创建时间和最后修改时间

标签:

原文地址:http://www.cnblogs.com/GoogleGetZ/p/4252207.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!