![]() | |
![]() |
| | Thread Tools | Display Modes |
#1
| |||
| |||
|
#2
| |||
| |||
|
#3
| |||
| |||
|
|
SQL Server reports that the stored procedure executed successfully because there are no errors. Just because your SQL statement attempts to update non-existing SSN, it does not mean you will get an error. You have to handle this using application logic, not to expect SQL Server to report an error. If you really do want to get an error when invalid SSN update is attempted, then you can add something like the code below at the end of your stored procedure, just after the UPDATE statement: IF @@ROWCOUNT = 0 RAISERROR ('Invalid SSN.', 16, 1) The @@ROWCOUNT function returns the number of rows affected by the last statement. Then if 0 rows have been updated it means the SSN is invalid and RAISERROR will force an error. However, based on the requirements that you need to return @SQLCode and @ErrMsg, you are probably looking for something like this: 1). Add two OUTPUT parameters to the stored procedure for @@SQLCode and @ErrMsg: @SQLCode CHAR(1) OUTPUT, @ErrMsg VARCHAR(20) OUTPUT 2) Inside the stored procedure, just after the UPDATE check if rows have been updated and set those two parameters: IF @@ROWCOUNT = 0 SELECT @SQLCode = 'E', @ErrMsg = 'Invalid SSN.' 3) Then when you declare those two parameters and pass to the stored procedure with the OUTPUT keyword. This is just one example on how you can return the error code and message, based on your application architecture different variations can be used. You can probably go only with error message as the error code is redundant, but not sure about your specs. HTH, Plamen Ratchevhttp://www.SQLStudio.com |
#4
| |||
| |||
|
#5
| |||
| |||
|
|
In general if I have an option I would prefer to handle e-mail notifications at the application layer (that is the .NET application for example), where this is much easier and more natural. In that case you just pass the output parameters back to the application layer and use the utilities at hand to send the e-mail notification. Based on your notes seems that you need to send the e-mail notification from inside the stored procedure. Here are a couple options: 1). If on SQL Server 2000 then you can use the built-in extended stored procedure xp_sendmail. An example will be something like this: EXEC master.dbo.xp_sendmail * * * *@recipients=N't... (AT) company (DOT) com', * * * *@message=N'Invalid SSN.' You can read more about all options and configuration for for xp_sendmail here:http://technet.microsoft.com/en-us/l.../ms189505.aspx 2). On SQL Server 2005 you can use sp_send_dbmail. Here is an example: EXEC msdb.dbo.sp_send_dbmail * * * *@profile_name = 'Test', * * * *@recipients = 't... (AT) company (DOT) com', * * * *@body = 'Invalid SSN.', * * * *@subject = 'Automated notification' More about sp_send_dbmail here:http://msdn2.microsoft.com/en-us/library/ms190307.aspx 3). On SQL Server 2000 (and I have seen posts it works on SQL Server 2005 too) you can use the third party extended stored procedure xp_smtp_sendmail. It is using directly SMTP (while xp_sendmail uses MAPI), like sp_send_dbmail does. More info about it here:http://sqldev.net/xp/xpsmtp.htm Note that all those methods for sending e-mail are not automatically available. Read the information at the above links on security and configuration. HTH, Plamen Ratchevhttp://www.SQLStudio.com |
![]() |
| Thread Tools | |
| Display Modes | |
| |