Viewing 8 posts - 1 through 8 (of 8 total)
-databasename, "-" should be "--" for comment
April 7, 2015 at 5:58 am
March 14, 2011 at 9:14 am
I once Supported an Finance/Accounts System which used Triggers to alert agents when a sale had been made. One day the trigger to could send out any mails... The system...
March 14, 2011 at 8:57 am
Bad Idea..
So not send mail from a trigger.
Get the Trigger to write Whatever you want into some table.
Create a SQL Server Job to poll the said table every couple of...
March 11, 2011 at 9:05 am
Check the syspublications table in Published database.
select replicate_ddl from <Published_DB>.dbo.syspublications Where name = (Select name from sysarticles where name = 'Your Table Name')
If the value returned = 0, you have...
March 11, 2011 at 8:56 am
Do a Full backup 1x a week (say Saturday night). Then do Differential Backups Daily (if you must) and caryy on with the Log backups as normal.
March 27, 2008 at 5:18 am
So SQLAgent Account is sysadmin on SQL Server, and Local Admin on OS. Then Change the Job owner to "sa" and Try again.
November 27, 2007 at 3:37 am
Grant SQLAgent explicit permission to be able to login to the SQL Server. Place the SQLServerAgent Login in Admin Group on the local Server/Box.
November 27, 2007 at 2:19 am
Viewing 8 posts - 1 through 8 (of 8 total)