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 查詢某個表被哪些存儲過程調用 ...