当前位置: 数据库>sqlserver
sql2005 批量查询数据库中自定义对象的脚本
来源: 互联网 发布时间:2014-08-29
本文导语: 本文为大家介绍的是如何批处理查询这些信息,有兴趣的朋友,请继续下文。 1、批量查看或者导出视图、存储过程、触发器和函数: 代码示例: select name , xtype , object_definition (id ) from sysobjects where xtype in ('V' , 'P' , 'TR' , 'IF' ...
本文为大家介绍的是如何批处理查询这些信息,有兴趣的朋友,请继续下文。
1、批量查看或者导出视图、存储过程、触发器和函数:
代码示例:
select name , xtype , object_definition (id ) from sysobjects
where xtype in ('V' , 'P' , 'TR' , 'IF' , 'TF' , 'FN' )
order by xtype , name
where xtype in ('V' , 'P' , 'TR' , 'IF' , 'TF' , 'FN' )
order by xtype , name
当然也可以使用 sys .sql_modules系统表实现同样的功能:
代码示例:
select b. name , b. xtype , a . definition from sys .sql_modules a , sys .sysobjects b
where a . object_id = b. id
order by b. xtype
where a . object_id = b. id
order by b. xtype
把以上的两段代码,复制到sql查询分析器中执行吧,多练习才是提高技术水平的法宝。
附:
object_definition 官方参考:
http://msdn.microsoft.com/zh-cn/library/ms176090.aspx