简体   繁体   中英

All stored procedures listed by create date?

任何人都知道一个简单的查询来获取由createdate排序的SQL 2005数据库中的所有存储过程的列表?

one way

select name from sys.procedures
where type = 'P'
order by create_date

select * from sys.objects,其中[type] ='P'按create_date顺序排序

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM