Deps updates, handle more tables + LK code
This commit is contained in:
parent
f649b5f953
commit
5fe140714e
14 changed files with 583 additions and 79 deletions
|
|
@ -24,9 +24,11 @@ class StoredProcedure(OrderedDict):
|
|||
FROM sys.objects AS SO
|
||||
INNER JOIN sys.parameters AS P
|
||||
ON SO.OBJECT_ID = P.OBJECT_ID
|
||||
WHERE SO.name LIKE '%Jeeves_Esales_%' OR
|
||||
SO.name LIKE '%JAPP_spr_LogTrade_%' AND
|
||||
SO.OBJECT_ID IN ( SELECT OBJECT_ID
|
||||
WHERE (
|
||||
SO.name LIKE '%Jeeves_Esales_%' OR
|
||||
SO.name LIKE '%JAPP_spr_LogTrade_%'
|
||||
) AND
|
||||
SO.OBJECT_ID IN ( SELECT OBJECT_ID
|
||||
FROM sys.objects
|
||||
WHERE TYPE IN ('P','FN'))
|
||||
ORDER BY [Schema], SO.name, P.parameter_id"""
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue