Hello!
Is it possible for MS Access to invoke a stored procedure which is located on an SQL Server?
The following MS Access query returns the "Tests" table (located on the SQL Server):
SELECT *
FROM [ODBC;Driver={SQL Server};Server=111.111.111.111;Database=MYDB;UID=MYUID;PWD=MYPW;].Tests;
but THIS query
SELECT *
FROM [ODBC;Driver={SQL Server};Server=111.111.111.111;Database=MYDB;UID=MYUID;PWD=MYPW;].MyStoredProc;
Results in
"The Microsoft Jet database engine cannot find the input table or query..."
MyStoredProc is not a table, it's a stored procedure.
Might this be a SQL Server permissions issue? MYUID is a dbReader with execute permission over MyStoredProc...
This seems like an SQL Server question too, is it kosher to post twice - once in each forum?
Any help is gratefully received,
Cheers.
Is it possible for MS Access to invoke a stored procedure which is located on an SQL Server?
The following MS Access query returns the "Tests" table (located on the SQL Server):
SELECT *
FROM [ODBC;Driver={SQL Server};Server=111.111.111.111;Database=MYDB;UID=MYUID;PWD=MYPW;].Tests;
but THIS query
SELECT *
FROM [ODBC;Driver={SQL Server};Server=111.111.111.111;Database=MYDB;UID=MYUID;PWD=MYPW;].MyStoredProc;
Results in
"The Microsoft Jet database engine cannot find the input table or query..."
MyStoredProc is not a table, it's a stored procedure.
Might this be a SQL Server permissions issue? MYUID is a dbReader with execute permission over MyStoredProc...
This seems like an SQL Server question too, is it kosher to post twice - once in each forum?
Any help is gratefully received,
Cheers.