We have a complex stored procedure that aggregates data (uses a group by clause, among many other things). This query, when run in the SQL Query Analyzer, returns the following SQL Server warning:
Null value is eliminated by an aggregate or other SET operation
But, it still returns the data after this statement.
When I call the stored procedure from VB code, it works okay with ODBC (OLE DB for ODBC provider). But, the exact same call, the exact same code, fails (the recordset remains closed) when I use OLE DB.
Any advice would be appreciated!
Null value is eliminated by an aggregate or other SET operation
But, it still returns the data after this statement.
When I call the stored procedure from VB code, it works okay with ODBC (OLE DB for ODBC provider). But, the exact same call, the exact same code, fails (the recordset remains closed) when I use OLE DB.
Any advice would be appreciated!