I'm accessing a stored procedure from ADO.NET. The stored procedure should eventually returns a single result set.
To compute this result, a temporary table is filled with a SELECT INTO statement.
The problem is that the result of the SELECT INTO statement is also returned as a result set to .NET.
Can this be suppressed? Or should I not use SELECT INTO, but CREATE TABLE followed by an INSERT statement?