摘要: 1、sys.all_objects(系统视图)数据库中所有的对象,包含了创建时间和最近修改时间。--查找存储过程--所有的存储过程select * from sys.all_objects where type='P' order by modify_date desc--2009年3月5号后新建的存储过程select * from sys.all_objects where type='P' a... 阅读全文
posted @ 2009-05-15 23:21 BB_Coder 阅读(402) 评论(0) 推荐(0)