Home > Database > Mysql Tutorial > body text

在SQL Server中使用SQL语句查询一个存储过程被其它所有的存储过

WBOY
Release: 2016-06-07 18:07:09
Original
1072 people have browsed it

在项目开发中如果有时修改了一个存储过程,但是如何能够快速的查找到使用了这个存储过程的其它存储过程呢

这个问题对于规模稍微大些的项目而言,显得尤其重要了,数据库中如果有几百个存储过程,
难道还一个个找不成,即使自己很了解业务和系统,时间长了,也难免能记得住。

如何使用SQL语句进行查询呢?

下面就和大家分享下SQL查询的方法:

代码如下:
select distinct name
from syscomments a,sysobjects b
where a.id=b.id and b.xtype='p' and text like '%pro_GetSN%'


上面的蓝色字体部分表示要查询的存储过程的名称。


作者 weizhiai12
Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template