select distinct object_name(id) from syscomments where id in (select id from sysobjects where t ...
sql 查詢某個表被那些存儲過程用到select distinct object name id from syscommentswhere id in select object id from sys.objects where type P and UPPER text like YN C order by object name id type char 對象類型。可以是下列值之一: C ...
2019-05-11 15:57 0 989 推薦指數:
select distinct object_name(id) from syscomments where id in (select id from sysobjects where t ...
--1.查詢某個表被哪些存儲過程使用到 : select distinct object_name(id) from syscomments where id in ( select object_id from sys.objects ...
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 ...
當我們剛開始接觸一些已經成型的項目時,不復雜還好,復雜的話,比如說ERP項目,其中業務邏輯復雜可能會各種存儲過程之間來回調用,我們可以用 View Code 該語句可以查詢到哪里調用過這個表或者存儲過程,更快捷的查找問題,和熟悉項目 ...
View Code https://www.cnblogs.com/wsy0202/p/12496708.html https://blog. ...