R
Rod Scoullar
I'm trying to return rows from a stored procedure which includes a temporary
table.
The stored procedure returns the expected rows when executed through SQL
Query Analyser.
On execution in the design page of an .adp project I receive a message "The
stored procedure executed successfully but did not return any records."
The stored procedure has the form.
CREATE/ALTER PROCEDURE ProcedureName
(
@Parameter int
}
AS
SELECT Fields
INTO #TempTable
FROM Table
/* the actual query is more complex */
SELECT Fields FROM #TempTable
RETURN
Any suggestions would be most appreciated.
Rod Scoullar.
table.
The stored procedure returns the expected rows when executed through SQL
Query Analyser.
On execution in the design page of an .adp project I receive a message "The
stored procedure executed successfully but did not return any records."
The stored procedure has the form.
CREATE/ALTER PROCEDURE ProcedureName
(
@Parameter int
}
AS
SELECT Fields
INTO #TempTable
FROM Table
/* the actual query is more complex */
SELECT Fields FROM #TempTable
RETURN
Any suggestions would be most appreciated.
Rod Scoullar.