Viewing 5 posts - 1 through 5 (of 5 total)
thanks for the direction.
SQL Agent firing - Check
RS Processing Subscriptions - Check
SMTP delivering emails - Check (for many of the subscriptions)
Subscription invalid (I think this may be the issue with...
March 26, 2015 at 1:05 pm
for the Scheduled jobs, it is a single job with Dynamic SQL for each database or do you have seperate Stored procedures for each production database?
March 22, 2012 at 1:41 pm
Here is the culprit. Part of a Stored Procedure.
IF @Option = 0
BEGIN
EXEC sp_dboption @DBName, 'trunc. log on chkpt.', 'FALSE'
END
ELSE
BEGIN
EXEC sp_dboption @DBName, 'trunc. log on chkpt.', 'TRUE'
END
The procedure passes in the...
March 13, 2012 at 4:20 pm
I found that there is a VB 6 windows application that seems to be changing the database to Full. I have reviewed the code but could not find anything...
March 13, 2012 at 1:37 pm
Thanks. I have found the error in the log and I have found that many of the databases are getting changed to Full model then getting moved back to Simple...
March 13, 2012 at 11:43 am
Viewing 5 posts - 1 through 5 (of 5 total)