Please start any new threads on our new
site at https://forums.sqlteam.com. We've got lots of great SQL Server
experts to answer whatever question you can come up with.
| Author |
Topic |
|
SamC
White Water Yakist
3467 Posts |
Posted - 2002-09-19 : 10:05:52
|
| I have a procedure that returns the errorError = [Microsoft][ODBC SQL Server Driver][SQL Server]Warning: Null value is eliminated by an aggregate or other SET operation.Err Num = -2147217900to ASP usingerr.description, err.numI've tried to use SET NOCOUNT ONto no avail. The results of the procedure are correct, and I'd like ASP to think it worked too.Any help appreciated.SamCEdited by - SamC on 09/19/2002 10:08:53 |
|
|
robvolk
Most Valuable Yak
15732 Posts |
Posted - 2002-09-19 : 10:12:07
|
| You can add SET ANSI_WARNINGS OFF to your procedure, that will clear the message.FWIW it's not actually an error, just a message. |
 |
|
|
SamC
White Water Yakist
3467 Posts |
Posted - 2002-09-19 : 10:23:50
|
| Thanks Rob.SamC |
 |
|
|
|
|
|