摘要:
列出SQL Server 2005中存在的所有储存过程?USE [your_database_name_here]; GO SELECT * FROM sys.all_objects WHERE ([type] = 'P' OR [type] = 'X' OR [type] = 'PC') ORDER BY [name]; GO 用户自定义存储过程?USE [your_database_name_here]; GO SELECT * FROM sys.all_objects WHERE ([type] = 'P' OR [type 阅读全文
posted @ 2011-05-11 15:40
荣耀轩辕
阅读(178)
评论(0)
推荐(0)
浙公网安备 33010602011771号