Viewing 15 posts - 226 through 240 (of 341 total)
With a table that large, I doubt statistics were calculated using 100% coverage, assuming not all the search arguments in your query are the first columns in indexes.
For a start,...
February 19, 2008 at 7:08 am
Re 1:
All reads are from the buffer cache, aka logical reads. If the data pages are not in the buffer cache, physical reads are first performed to bring the...
February 12, 2008 at 8:44 am
This was what we did previously. We had one large database, with a lot of large tables and indexes that grew over time. When we wanted to identify...
February 12, 2008 at 8:26 am
Here's a suggestion: copy the backup files to a redundant box, and run a RESTORE VERIFYONLY on those files using SQL Server 2005 Express Edition. SSEE actually allows you...
February 3, 2008 at 8:07 pm
Red Gates' SQL Backup does not support object level restore. Other products do, but there is a caveat with that feature, the last time we looked. In short,...
February 1, 2008 at 6:25 pm
>> Sometimes this query takes 10 seconds, but at other times it runs for 10 minutes and does not complete.
Perhaps when it took 10 seconds, the data pages were...
February 1, 2008 at 7:30 am
Profiler displays the physical reads. The first time you run a query, SQL Server retrieves data from disk, and places them in the buffer cache. These disk (physical)...
January 31, 2008 at 10:17 pm
Red Gates' SQL Backup has a nice transaction log restore feature, where you could just pass something like this:
EXEC master..sqlbackup '-sql "RESTORE LOG mydb FROM DISK = [e:\backups\mydb*.sqb] WITH RECOVERY"'
and...
January 31, 2008 at 9:46 pm
It would appear that you are backing up to a remote drive. I would suggest backing up to a local drive first, and see if that completes successfully.
January 31, 2008 at 9:36 pm
The msdb..backupset table contains most of the information you need. For file/tape information, link to the backupmediaset and backupmediafamily tables. Only details of successful backups are recorded in these tables.
As...
August 7, 2007 at 8:22 pm
In SQL Server 2005, you have the option to perform page-level restores. See Performing Page Restores in SQL Server 2005 Books Online for details.
August 6, 2007 at 9:43 pm
You need to ensure that the SQL Backup service startup user has rights to access the network share.
August 3, 2007 at 5:49 am
That's a lot of backups for a 2 GB database
If you have the CPU, time and space to spare, why not?
As for backing...
May 15, 2007 at 12:05 am
>> when does the LSN get updated
Technically, the databases' LSN get 'updated' when new transactions are created in the database. These transactions then get written to the transaction log file. ...
May 14, 2007 at 11:52 pm
If you were restoring to a new database, SQL Server would have to first create and allocate space for the 66 GB data/log files, which may take a while. If...
March 9, 2007 at 4:23 am
Viewing 15 posts - 226 through 240 (of 341 total)