Viewing 15 posts - 3,571 through 3,585 (of 7,496 total)
- You did a good assessment of your options.
- As you know, clustering is mainly to overcome hardware failures.
The big advantage is that it is addressable using the...
July 17, 2009 at 6:20 am
It is indeed something you need to know about when trying to handle the files.
BOL has good info at http://msdn.microsoft.com/en-us/library/ms178037%28SQL.90%29.aspx
July 17, 2009 at 5:57 am
shrinking a log file will not move log data !
A log file can only be shrunk to the last active virtual log !
Hence, you may have to execute the shrink...
July 16, 2009 at 11:35 pm
Whenever I move sqlserver files, I always xcopy the current folders (without files) to the new location including the authorisations !
(/O parameter)
I'm sure ROBOCOPY will also have such an option.
You...
July 15, 2009 at 1:24 pm
- You can expect the log file to be as big as the data file, depending on how "intelligent" your perform index rebuilds.
- If someone performed massive updates, e.g. implemented...
July 15, 2009 at 1:18 pm
- sys.configurations is the source system object for sp_configure.
It is a system object, so where it gets it data from shouldn't matter.
(you can nolonger update catalog tables directly)
- AFAIK the...
July 15, 2009 at 1:08 pm
Best is to work with minimal rights.
So go for the solution provided by K. Brian Kelley !
But as a little safeguard, you could implement a database trigger to only allow...
July 15, 2009 at 2:05 am
Have you run dbcc checkdb lately ?
I always use shrinkfile in stead of shrinkdb.
(what are the sizes of your db files)
Keep in mind your shrink operation will perform heavy...
July 15, 2009 at 1:36 am
Nice article !
This is a time saver !
Thank you for sharing the experience.
July 15, 2009 at 1:01 am
- that would be a table with +- 4,000,000,000 rows .... nice
- double check you have an index on that identity column
- Make sure you use the propper technique to...
July 14, 2009 at 6:59 am
set identity_insert is at session level !
So it will only be active with your session for your session !
Why are you trying to fill the gaps ?
Are you reaching the...
July 14, 2009 at 4:50 am
for sql2000 the current service pack is sp4. (and at least sp2 is required with win 2003).
for sql2005 the current service pack is sp3.
July 14, 2009 at 4:44 am
you could generate your drop statements using this query
Select *
from sysobjects
where xtype = 'u'
and category = 0 --(in sql2005 that would become is_ms_shipped = 0)
order by name
Doublecheck you...
July 14, 2009 at 3:28 am
isabel (7/13/2009)
Now I have problem with performing my regular restore...
July 14, 2009 at 12:11 am
With partitioned objects, I would avoid nonaligned indexes !
(because it may narrow down features and options to perform tasks.)
Unless you can prove performance is better with a nonaligned index to...
July 13, 2009 at 5:48 am
Viewing 15 posts - 3,571 through 3,585 (of 7,496 total)