Viewing 15 posts - 33,076 through 33,090 (of 49,552 total)
A CTE, despite its name, is not a table. It's a named select statement. Think of it as a temporary view, defined and used within the same SQL query.
May 5, 2010 at 8:08 am
Index rebuilds (not index reorganise) always do a fullscan update of the statistics. The entire index has to be read to rebuild it, so there's no reason to do a...
May 5, 2010 at 8:00 am
Yes, you can use the missing index DMVs, however less logic goes into producing those recommendations than the recommendations produced by DTA. Neither should be trusted without verification, all suggestions...
May 5, 2010 at 2:01 am
Yes.
A table scan (only present when you don't have a clustered index) is a scan of the data pages of the table.
An index scan reads the leaf pages of the...
May 5, 2010 at 1:44 am
Jason P. Burnett (5/4/2010)
True however, I am not sure that would cause any more growth in your log than suspending your log backups during the duration of the full backup.
Correct.
May 5, 2010 at 1:40 am
karthik -450760 (5/4/2010)
Trying using DBCC Checkdb in the database..
It won't be possible to run checkDB while the database is suspect. That can only be run if the database is online/emergency....
May 5, 2010 at 1:31 am
You won't be able to run a backup with the database suspect.
Check the SQL error log, there will be some message in there saying why the database is suspect. Post...
May 4, 2010 at 3:06 pm
There's a kb article on it iirc. I ran into that back when I first installed Vista (year and a half ago). Almost forgot about it until now.
May 4, 2010 at 2:43 pm
Maninder S. (5/4/2010)
May 4, 2010 at 2:43 pm
Interval - it depends. What's the maximum amount of data loss allowed in the case of a disaster? Log backup interval should be lower than that.
Each backup to its own...
May 4, 2010 at 2:30 pm
Viewing 15 posts - 33,076 through 33,090 (of 49,552 total)