在项目开发中如果有时修改了一个存储过程,但是如何能够快速的查找到使用了这个存储过程的其它存储过程呢
这个问题对于规模稍微大些的项目而言,显得尤其重要了,数据库中如果有几百个存储过程,
难道还一个个找不成,即使自己很了解业务和系统,时间长了,也难免能记得住。
如何使用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
Stellungnahme:Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn