Hi,
I have created a stored procedure in SQL as below
CREATE PROC dbo.HBM_TestRun1
AS
select * from HBM060 -- custom table
GO
GRANT EXECUTE ON HBM_TestRun1 TO DYNGRP
but when I write prototype procedure in dexterity as below:
sproc returns long Ret_Code;
call sproc "HBM_TestRun1",Ret_Code;
it shows error message "cannot find script HBM_TestRun1"
Till yesterday morning, I am able to call stored procedures perfectly from dexterity
but now I am not able to call any new stored procedure.
I did another activity, to modify (add another parameter) to an existing SP, for which prototype Stored Procedure is working correctly, and surprisingly the prototype procedure compiled successfully without giving error for new parameter. I then add new parameter and it won't compile. Meaning, the dexterity is not able to refresh the db connection.
Can anyone, help me out in resolving this issue.
GP Version is 10 with SP5 (10.00.1579)
Dexterity Version 10.0.332.0
Note: the spelling of SQL procedure and prototype is exactly same (as shown in the above code).
Regards,
Waliullah
*This post is locked for comments