博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
存储过程系列之存储过程sql查询存储过程的使用
阅读量:5782 次
发布时间:2019-06-18

本文共 769 字,大约阅读时间需要 2 分钟。

1.查询某个表被哪些存储过程(以下简称 SP)使用到 :

 select distinct object_name(id) from syscomments where id in

 (select object_id from sys.objects where type ='P') and text like'%TableName%'

 

2.查找那些过程对该表做了更新操作:

 select distinct object_name(id) from syscomments where id in

 (select object_id from sys.objects where type ='P') and text like'%update tablename%'

 

3.查询当前数据库中所有SP:

 select name as 存储过程  from sysobjects where type = 'P'

 

SQL server 查询某个表在哪些存储过程(SP)中使用

1.查询某个表被哪些存储过程(以下简称 SP)使用到 :

select distinct object_name(id) from syscomments where id in

(select object_id from sys.objects where type ='P') and text like'%TableName%'

 

2.查找那些过程对该表做了更新操作:

select distinct object_name(id) from syscomments where id in

(select object_id from sys.objects where type ='P') and text like'%update tablename%'

 

转载地址:http://ircyx.baihongyu.com/

你可能感兴趣的文章
报错:System.Data.Entity.Infrastructure.DbUpdateException 更新条目时出错
查看>>
[APM] 解读2016之APM国内篇:快速增长的APM市场和技术
查看>>
【学习Android NDK开发】Java通过JNI调用native方法
查看>>
文本数据的机器学习自动分类方法(转)
查看>>
SGU148 B-Station(堆)
查看>>
DotNetBar 6.6.0.1 Crack
查看>>
正确地做事与做正确的事同样重要
查看>>
ASP.NET MVC是否会成为ASP.NET未来主流的UI平台?
查看>>
[转] 企业版IDP的申请及“In House”发布
查看>>
hadoop实战之动态添加节点
查看>>
跟小静读CLR via C#(15)--String,熟悉而又陌生
查看>>
《转》OpenStack Ceilometer 安装配置和API说明
查看>>
用Nifi 从web api 取数据到HDFS
查看>>
Swift - 用UIScrollView实现视差动画效果
查看>>
iOS开发之——从零开始完成页面切换形变动画
查看>>
微信扫描二维码登录网站技术原理
查看>>
Mac休眠之后唤醒时无法使用鼠标
查看>>
删除变量PHP之session的使用
查看>>
张小龙:用停留时长衡量一个APP的好坏是错误的!
查看>>
聚焦ISC 2018:几位大佬都说了点啥?
查看>>