Viewing 11 posts - 1 through 11 (of 11 total)
And the other error looks like an application is using raiserror or something to throw a custom error message that may not be defined in sysmessages....
May 30, 2012 at 11:22 am
The SQLISPackage error is something out of an SSIS package. So you'll want to investigate the package for errors.
May 30, 2012 at 11:21 am
Are the service accounts the same? What was the exact error you got?
February 22, 2012 at 6:26 pm
Yes. The easiest way is to go set something up like you want it in SSMS, then script out the alert.
And in terms of further automation, your best bet...
February 21, 2012 at 2:42 pm
One for each severity level. Here's how to test:
--create an alert, using severity 9
EXEC msdb.dbo.sp_add_alert @name=N'RWTest',
@message_id=0,
@severity=9,
@enabled=1,
@delay_between_responses=0,
@include_event_description_in=0,
@database_name=N'master',
@category_name=N'[Uncategorized]',
@job_id=N'00000000-0000-0000-0000-000000000000'
GO
-- now add a message that...
February 18, 2012 at 2:31 pm
The SQL Server Agent service account will definately need enough rights to restart the service, I just don't know if that's full administrator rights. For some reason this limitation...
January 25, 2012 at 7:54 am
Hi George,
Good point on the proxy usage.
As for the T-SQL, I see the code in the article for sp_add_proxy and the other stored procs, can you tell me more about...
January 25, 2012 at 7:43 am
Yes, unfortunately although these roles exist for the most part you need to be a sysadmin or the job owner to do anything useful.
January 11, 2012 at 4:06 pm
By default the output in SQL Server Agent goes to the msdb.dbo.sysjobhistory table (that's what you see when you ask to view history from the job).
To get the...
January 3, 2012 at 10:05 am
Indeed - my mistake on the caption - it should say "Figure 3: New Database Mail Account". I'll get that changed.
RE:
In the "Review the Database Mail Logs", I think...
July 29, 2011 at 10:49 am
Indeed, looks like an editing error. I'll email the editors right away and let them know.... In the meantime I attached the correct screenshot here.
June 29, 2011 at 7:15 am
Viewing 11 posts - 1 through 11 (of 11 total)