Wrox Programmer Forums
Go Back   Wrox Programmer Forums > SQL Server > SQL Server ASP
|
SQL Server ASP Discussions about ASP programming with Microsoft's SQL Server. For more ASP forums, see the ASP forum category.
Welcome to the p2p.wrox.com Forums.

You are currently viewing the SQL Server ASP section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
 
Old April 19th, 2005, 05:26 PM
Authorized User
 
Join Date: Sep 2004
Posts: 62
Thanks: 0
Thanked 1 Time in 1 Post
Default Using CDONTS to send SQL server errors

I have SQL server databases that are stored and hosted remotely - is there a way to set up a stored procedure or something that will email any database errors to a specific address once they are raised? Anything like this I can do?

 
Old April 22nd, 2005, 06:15 AM
Registered User
 
Join Date: Apr 2005
Posts: 4
Thanks: 0
Thanked 0 Times in 0 Posts
Default


hi,

i can tell you how to send an email from sql server. you should put that code where you think it is necessary (in an sp, trigger, job etc..)

DECLARE @rc int
EXEC @rc = master.dbo.xp_smtp_sendmail
 @FROM = N'[email protected]',
 @FROM_NAME = N'Your name',
 @TO = N'[email protected]',
 @replyto = N'[email protected]',
 @CC = N'',
 @BCC = N'',
 @priority = N'NORMAL',
 @subject = N'your subject',
 @message = N'your message',
 @messagefile = N'',
 @type = N'text/plain',
 @attachment = N'attcahmentfilepath',
 @attachments = N'',
 @codepage = 0,
 @server = N'youremailservers ip'

you can read "xp_smtp_sendmail" sP documentation for details..

hope it works






Similar Threads
Thread Thread Starter Forum Replies Last Post
Send mail from sql server Manoah SQL Server 2005 1 July 15th, 2008 01:32 AM
SQL Server 2000 Driver for JDBC Errors cash Java Databases 2 December 22nd, 2006 01:18 AM
CDONTS send mail for Earthlink egerdj Wrox Book Feedback 1 February 17th, 2004 05:50 PM





Powered by vBulletin®
Copyright ©2000 - 2020, Jelsoft Enterprises Ltd.
Copyright (c) 2020 John Wiley & Sons, Inc.