Viewing 15 posts - 661 through 675 (of 757 total)
GilaMonster (11/10/2011)
derekr 43208 (11/9/2011)
No, no, no. Nothing whatsoever to do with the data pages....
November 10, 2011 at 7:55 am
How do we get forwarding pointers?
Never with an index. Only possible with a heap.
Can this happen with a table with just non-clustered indexes on it.
Thanks
November 9, 2011 at 11:26 pm
NC Index, if the leaf pages order does not match the table/clustered index pages order - Fragmentation
No, not at all. An index is fragmented if its pages physical order do...
November 9, 2011 at 11:23 pm
GilaMonster (11/8/2011)
So if index X...
November 8, 2011 at 11:10 pm
Thanks
I though that because the non-clustered indexes leaf pages have a pointer to the clustered index, if the Clustered index was fragmented, then NC index would also be fragmented.
Am I...
November 8, 2011 at 7:50 am
Thanks
Would that still apply even if the 2 indexes were covering the same columns?
Thanks
November 8, 2011 at 7:41 am
Thanks
If I have a table with a clustered index and a non-clustered index on it
If the Clustered index is fragmented, does that mean that the non-clustered index is also...
November 8, 2011 at 7:35 am
Ninja's_RGR'us (11/2/2011)
http://sqlinthewild.co.za/index.php/2010/03/23/left-outer-join-vs-not-exists
When using the not exists
Can my 1st select statement have a "where" clause in it before the "not exists"
I tried this
select name from sys.databases where recovery_model_desc <> 'SIMPLE'
and name...
November 3, 2011 at 12:26 am
Ninja's_RGR'us (11/2/2011)
http://sqlinthewild.co.za/index.php/2010/03/23/left-outer-join-vs-not-exists
Thanks
November 3, 2011 at 12:06 am
Ninja's_RGR'us (11/2/2011)
I would possibly use not exists because it's clearer to me and it can't fail if a name is null. I...
November 2, 2011 at 1:35 pm
Ninja's_RGR'us (11/2/2011)
Might be better like this =>
SELECT database_name, MIN(backup_finish_date) AS FirstBackup
FROM msdb.dbo.backupset
WHERE [type] = 'D' --Full backup
GROUP BY database_name
ORDER BY database_name
Cool
Is my original script okay though? - To check which...
November 2, 2011 at 9:02 am
Ninja's_RGR'us (11/2/2011)
derekr 43208 (11/2/2011)
viiki.seth (11/2/2011)
If there is a job to purge bakup history, the query *might not* give you database names whose log backups have been taken.
Would a maintenance plan...
November 2, 2011 at 8:53 am
viiki.seth (11/2/2011)
If there is a job to purge bakup history, the query *might not* give you database names whose log backups have been taken.
Would a maintenance plan that deletes old...
November 2, 2011 at 8:38 am
Evil Kraig F (11/2/2011)
derekr 43208 (11/2/2011)
One thing, the total rows returned is 121311 but the last value for SalesOrderDetailID is 121317Is that normal?
Yep. It's the number of attempted inserts,...
November 2, 2011 at 1:05 am
Viewing 15 posts - 661 through 675 (of 757 total)