B
BJ Freeman
I have a db that redirects stored procedures to other DB on the server
example:
Procedure ADP_CompleteXMLOrderImport
As
set nocount on
EXECUTE db0102070001..ADP_CompleteXMLOrderImport
EXECUTE db0102070002..ADP_CompleteXMLOrderImport
EXECUTE db0102070003..ADP_CompleteXMLOrderImport
EXECUTE db0102070004..ADP_CompleteXMLOrderImport
return
ADP_CompleteXMLOrderImport is called from an ADP.
up till a while ago this worked with no problems.
Now EXECUTE db0102070003..ADP_CompleteXMLOrderImport
redirect to some other db.
all the other exec work fine.
If I run this from the query analyzer it work fine.
the Profiler shows: EXECUTE ADP_CompleteXMLOrderImport
So I am convince it has something to-do with the ADP
Any thoughts where I should look, or further troubles shooting steps I might
try.
example:
Procedure ADP_CompleteXMLOrderImport
As
set nocount on
EXECUTE db0102070001..ADP_CompleteXMLOrderImport
EXECUTE db0102070002..ADP_CompleteXMLOrderImport
EXECUTE db0102070003..ADP_CompleteXMLOrderImport
EXECUTE db0102070004..ADP_CompleteXMLOrderImport
return
ADP_CompleteXMLOrderImport is called from an ADP.
up till a while ago this worked with no problems.
Now EXECUTE db0102070003..ADP_CompleteXMLOrderImport
redirect to some other db.
all the other exec work fine.
If I run this from the query analyzer it work fine.
the Profiler shows: EXECUTE ADP_CompleteXMLOrderImport
So I am convince it has something to-do with the ADP
Any thoughts where I should look, or further troubles shooting steps I might
try.