Viewing 8 posts - 1 through 8 (of 8 total)
Yes, Brent Ozar's resources are really handy - I do use them myself, but how is BlitzIndex going to identify missing indexes? It's going to use SQL Server's DMVs so,...
January 11, 2015 at 10:09 am
Gazareth,
Thanks for the speedy reply.
Actually, I forgot to mention my SQL version - worryingly, it is 2012 SP2.
If it was fixed in 2012 RTM, has it perhaps been broken again...
December 5, 2014 at 5:59 am
Then there's the way today's small, infrequently-accessed tables can sometimes become tomorrow's big and/or frequently-accessed ones...
😉
September 12, 2014 at 5:39 am
I would be concerned with the example that "hides" the fact that a table is actually on a different server. That could cause huge performance issues if the real location...
September 12, 2014 at 3:23 am
Did you ever get a resolution to this? I have a SSIS package I'm working on that uses change tracking and I need to combine several tables at the source...
August 6, 2013 at 5:43 am
A heap is an un-ordered table (see http://blogs.msdn.com/b/sqlserverstorageengine/archive/2006/09/19/761437.aspx).
Oh, and apologies for missing the "object_id" in my code - slip of the keyboard...
September 11, 2012 at 7:53 am
Out of interest, any particular reason why you removed the MASTER database references? That's where the sys.dm_db_index_physical_stats function and sys.databases view reside so specifying their location merely saves SQL Server...
September 10, 2012 at 8:48 am
This will give you a list of indexes in a database, together with their sizes/fragmentation/statistics last updated/etc:
DECLARE @DatabaseID INT
SELECT @DatabaseID = DB_ID()
SELECT [sd].[name] [DatabaseName] ,
...
September 7, 2012 at 5:08 am
Viewing 8 posts - 1 through 8 (of 8 total)