Viewing 15 posts - 31 through 45 (of 210 total)
What I'm looking for is an example database or table that has meaningful data to work with. It'll take me all day to add 100,000 rows of test data into...
May 18, 2006 at 12:02 pm
If you are not backing up your transaction logs and have no need for point in time recovery than you should change the recovery model of your database to simple. ...
May 15, 2006 at 10:31 am
To answer your question, there is nothing wrong with running backups in parallel. If your system is I/O bound you will see a performance hit by doing so.
May 3, 2006 at 12:56 pm
Every best practices guide out there says that you should absolutely backup to disk first. Disk gives you faster backups, faster restores, more reliability, and more options than you have...
May 3, 2006 at 12:54 pm
Also take a look at table partitioning in SQL Server 2005. In SQL 2005 you can partition a table into multiple filegroups giving you substantial performance and storage efficienty enhancements.
April 21, 2006 at 8:16 am
Try doing a RESTORE HEADERONLY FROM ... and see if there are multiple backups in the file. There will be one row in the result set for each backup. If...
April 14, 2006 at 9:34 am
Couple of other things?
Why not try backing up LiteSpeed to a SAN disk. You've noted that SAN backups are substantially faster than a backup to a TSM server. LiteSpeed backups...
March 28, 2006 at 2:31 pm
Althought not explicitly clear in the review, the reviewer seemed to be comparing using LiteSpeed directly to a TSM server (not backing up to disk) to using TDP to backup...
March 28, 2006 at 2:23 pm
This command is simply building a restore string. After this is run you can run the restore string by running exec sp_executesql @bkpstring
I personally do not like running sql this...
March 6, 2006 at 11:10 am
In the scenario where you do a native backup or litespeed backup to disk and then have veritas pick the file off of disk and send it to tape, is...
March 2, 2006 at 9:30 am
What script are you running? What error messages are you seeing as output or in the SQL Server error log?
March 2, 2006 at 9:22 am
You're a perfect candidate for a backup compression utility like LiteSpeed for SQL Server from Quest Software. LiteSpeed compresses your database backup files by 75-95% so they can be written...
March 1, 2006 at 11:30 am
I've been able to put data files on external drives as long as windows see's the drive as a physical drive letter.
February 17, 2006 at 8:27 am
Tape is a very volitile media and Disk is much more stable. I highly recommend backing up to disk first so that you can be sure that you have at...
February 17, 2006 at 7:07 am
Viewing 15 posts - 31 through 45 (of 210 total)