Viewing 15 posts - 151 through 165 (of 171 total)
Ray Mond (8/24/2010)
Run sp_who2, find if the BACKUP processes are being...
August 26, 2010 at 2:18 am
Steve Jones - Editor (8/25/2010)
August 25, 2010 at 9:09 am
CirquedeSQLeil (8/24/2010)
As for the...
August 25, 2010 at 1:51 am
CirquedeSQLeil (8/24/2010)
What is your allowable data loss in the event of a server down?
How many backups do you intend...
August 24, 2010 at 4:07 pm
CirquedeSQLeil (8/24/2010)
Let's start with some information gathering.How big are the databases?
How many databases?
Have you considered transaction log backups?
What is the recovery model of your databases?
Thank you for your reply.
I'm going...
August 24, 2010 at 3:15 pm
Ray Mond (8/24/2010)
Run sp_who2, find if the BACKUP processes are being...
August 24, 2010 at 8:20 am
This is the stored procedure that runs the 'Truncate Transaction log'
ALTER PROCEDURE [dbo].['name of stored procedure']
AS
BACKUP LOG 'Databasename'
WITH
TRUNCATE_ONLY
August 24, 2010 at 8:09 am
The hard drive is formatted in NTFS and the only job that runs every half hour throughout the day is the "Truncate Transaction log" job but when I re-run the...
August 24, 2010 at 7:21 am
When I check drive E, it has one of the databases backup files but with the file size of 0, which obviously means that nothing has been backed up.
The...
August 24, 2010 at 4:48 am
All the Databases are live so I'm concerned backing up any of then during the day. I will set the job to run, just one of the databases (the main...
August 24, 2010 at 3:30 am
I set the backup to run at 4am because there are no other backups that occur at that time except for the "Truncate transaction log" job. The job continually runs...
August 24, 2010 at 3:15 am
Thank you for the reply.
When I try to run the Truncate Log job it gives me the following error message:
Msg 3023, Level 16, State 3, Procedure 'stored procedure name', Line...
August 24, 2010 at 3:01 am
Sorry I forgot to let you know that only differential back up occurs and it is on the external hard drive.
Thank you
August 20, 2010 at 8:56 am
The Differential back up happens on the daily biases. Currently it looks like if it’s appending but I need it to backup all the data that I have not been...
August 20, 2010 at 8:54 am
It’s not maintenance plan, I have done the back up through SQL Server agent. It takes about 1 hour and 30 minutes to back up all databases. It looks like...
August 20, 2010 at 8:31 am
Viewing 15 posts - 151 through 165 (of 171 total)