select distinct object_name(id) from syscomments where id in (select id from sysobjects where t ...
.查询某个表被哪些存储过程使用到 : select distinct object name id from syscomments where id in select object id from sys.objects where type P and text like TableName .查找那些过程对该表做了更新操作: select distinct object name id ...
2020-08-17 14:06 0 660 推荐指数:
select distinct object_name(id) from syscomments where id in (select id from sysobjects where t ...
1.查询某个表被哪些存储过程(以下简称 SP)使用 : select distinct object_name(id) fromsyscomments where id in (select object_id from sys.objects where type='P ...
1.查询某个表被哪些存储过程(以下简称 SP)使用 : select distinct object_name(id) fromsyscomments where id in (select object_id from sys.objects where type='P ...
1.查询某个表被哪些存储过程(以下简称 SP)使用到 : select distinct object_name(id) from syscomments where id in (select object_id from sys.objects where type ='P ...
1.查询某个表被哪些存储过程(以下简称 SP)使用到 : select distinct object_name(id) from syscomments where id in (select object_id from sys.objects where type ='P ...
--sql2008 查询某个表被那些存储过程用到select distinct object_name(id) from syscommentswhere id in (select object_id from sys.objects where type ='P')and UPPER ...
查询建立时间 -- 表 select * from sysobjects where id = object_id(N ' 表名 ') and xtype = ' U ...
sql server 查询某个表被哪些存储过程调用 ...