Viewing 15 posts - 31 through 45 (of 197 total)
Glad it meets your needs. We've been running something similar here for 4 or 5 years and it's worked great for us!
September 19, 2013 at 11:12 am
The easiest way is probably to look at the Disk Usage report in SSMS. You can access it by right clicking on the database in question, selecting reports, standard reports...
September 19, 2013 at 9:06 am
Please check out the following, it should come close to meeting your needs: http://www.mssqltips.com/sqlservertip/1584/auto-generate-sql-server-restore-script-from-backup-files-in-a-directory/
You may need to modify it to accomodate your file naming standards but it should...
September 18, 2013 at 2:01 pm
fluffydeadangel (12/20/2012)
George M Parker (12/20/2012)
December 20, 2012 at 11:34 am
Totally disagree with the answer to the question.
"You can use UNIQUE constraints to make sure that no duplicate values are entered in specific columns that do not participate in...
December 20, 2012 at 10:50 am
The primary difference is internal fragmentation versus external fragmentation. The Reorganize fixes external fragmentation when the 8k pages are physically out of sequence. The Rebuild fixes internal fragmentation when there...
December 20, 2012 at 10:41 am
DKlein (12/7/2012)
December 7, 2012 at 9:22 am
mani@123 (12/7/2012)
GilaMonster (12/7/2012)
mani@123 (12/7/2012)
It is automatically updated but I wanted it to be done by on my by determing some percentage conditions over the modified count value.
Why?
Have you tested and...
December 7, 2012 at 9:06 am
Be wary of running sp_UpdateStats if you are regularly rebuilding your indexes. Rebuilding an index causes the statistics to be updated with a FULL SCAN. If you then run sp_UpdateStats...
December 7, 2012 at 8:47 am
You can also look into using the TABLEDIFF.EXE utility that ships with SQL Server. It can compare tables in two different databases and generate the scripts to synch the data...
December 5, 2012 at 4:42 pm
sqlfriends (12/5/2012)
December 5, 2012 at 4:30 pm
capnhector (11/30/2012)
November 30, 2012 at 3:58 pm
Just be aware that the next transaction log backup will still need to include the extents that were changed during the index rebuild while in BULK LOGGED so it won't...
November 29, 2012 at 1:11 pm
Great question and one that took some digging to determine the correct answers.
November 29, 2012 at 10:43 am
Viewing 15 posts - 31 through 45 (of 197 total)