B
Brian
Hello all, I am just trying this for the first time and here is the
situation
I have created a Pass through query that all I want it to do it call a
stored procedure on a MSSQL server
Here is:
DECLARE @LLC Int
? mbomGetMaxLLC ("@LLC int")
This tells me the Count field is incorrect.
the actual procedure looks like this
CREATE PROCEDURE mbomGetMaxLLC @LLC int OUT AS begin SET nocount on
select @LLC = (select max(LLC) from IVR10015) end set nocount off
GO
This works but I don't know how to call it to return the value of @LLC
I have set up my ODBC connect Str which I beleive to be correct and set
Return records to be yes.. Not sure what the scoop is. I have looked around
and found nothing to helpfull.
situation
I have created a Pass through query that all I want it to do it call a
stored procedure on a MSSQL server
Here is:
DECLARE @LLC Int
? mbomGetMaxLLC ("@LLC int")
This tells me the Count field is incorrect.
the actual procedure looks like this
CREATE PROCEDURE mbomGetMaxLLC @LLC int OUT AS begin SET nocount on
select @LLC = (select max(LLC) from IVR10015) end set nocount off
GO
This works but I don't know how to call it to return the value of @LLC
I have set up my ODBC connect Str which I beleive to be correct and set
Return records to be yes.. Not sure what the scoop is. I have looked around
and found nothing to helpfull.