Viewing 15 posts - 211 through 225 (of 341 total)
Red Gate Software has a couple of tools to help you with copying your local files to a remote location. Offers full error logging, has email notification on failure,...
May 2, 2008 at 2:04 am
Another possible reason for a log backup to fail is if you have never made a full backup of the database. As suggested, do check the SQL Server logs...
May 2, 2008 at 1:59 am
Run RESTORE FILELISTONLY on the file e.g.
RESTORE FILELISTONLY FROM DISK = ' '
April 25, 2008 at 4:44 am
You are backing up to a network share. Does the SQL Server Agent service startup user have rights to write to that network share?
April 16, 2008 at 6:13 am
If the statistics did not exist, they can't be updated.
To create the statistics, use the CREATE STATISTICS command. Or you could have SQL Server create it automatically by running...
March 24, 2008 at 6:07 am
If space is at a premium, you might want to consider using a third party backup tool that can compress backups and restore from compressed files.
March 20, 2008 at 8:57 am
If both queries retrieve the same data, and you ran them in a batch, there is the possibility that the 2nd query was just fetching data from the buffer pool,...
March 20, 2008 at 8:51 am
From BOL:
CHECKSUM
Requests that the backup operation verify each page for checksum
and torn page, if enabled and available, and also to generate a checksum for the entire backup.
It isn't...
March 18, 2008 at 8:23 am
Have you tried reversing the order of the queries and compare the timings then? Or run each query individually, preceding each with a DBCC DROPCLEANBUFFERS to clear the buffer...
March 13, 2008 at 11:30 pm
In SQL Server 2005, you can create backups with the CHECKSUM option. This generates a checksum for the backup streams. Then instead of running a full restore, you...
March 13, 2008 at 11:11 pm
Yes. Your fastest restore sequence would be as follows:
- restore full backup taken at 12:00 am
- restore differential backup taken at 4:00 am
- restore transaction log taken at 4:30...
March 11, 2008 at 7:48 am
Did you have a chance to compare the execution plans for that stored procedure, when it was performing well as well as when it was performing poorly? The...
March 5, 2008 at 8:03 am
If so, what happens if I restore the second backup (with commited transactions applied) and then restore the log file, which also has those same transactions in it?
SQL Server knows...
March 5, 2008 at 7:54 am
As mentioned, once the query has been ran, the data that it retrieves is in the buffer cache, hence subsequent queries that retrieve the same data completes much faster, until...
February 29, 2008 at 1:48 am
The presence of the search argument "LIKE '%ring%'" does not automatically force a table scan. There are 2 other search arguments, both of which could cause the query optimizer...
February 19, 2008 at 7:30 am
Viewing 15 posts - 211 through 225 (of 341 total)