Viewing 15 posts - 31 through 45 (of 334 total)
Poor summary about column considerations in an index. For the complete picture, I suggest http://sqlinthewild.co.za/index.php/2009/01/19/index-columns-selectivity-and-equality-predicates/">
http://sqlinthewild.co.za/index.php/2009/01/19/index-columns-selectivity-and-equality-predicates/
November 23, 2010 at 12:52 am
You can only judge if an index is well-used if it has some statistics (about hits and updates). If an index doen't exists in the DM view, it doesn't say...
September 10, 2010 at 4:20 am
The answer was already given on the SQLTeam site by Saggi Neumann:
Since the DMV sys.dm_db_index_usage_stats also tracks changes in indexes (not only seeks and scans) in the user_updates column, it...
September 10, 2010 at 3:17 am
Secondly, that won't work for a server that you might want to monitor that doesn't actually have SQL Server installed on it!
Since I'm a DBA, i'm only interested in...
June 23, 2010 at 3:05 am
5/5: New version deployed
- FILEGROUP_NAME() function implemented (actually ... discovered :Whistling:)
- removed join to sysindexes (not used)
Waiting for approval!
May 5, 2010 at 9:33 am
WOW! :w00t::w00t: that was an easy one! Sometimes you're working on a solution which can be replaced by a very few lines ( I feel stupid :ermm::ermm::ermm: )
Have a drink...
May 5, 2010 at 9:06 am
It's how you define pressure: I was considering a negative pressure as no pressure (I had to explain that :unsure: ).
April 22, 2010 at 1:03 am
Another update! I was triggered by the Question of the day
can a CTE be used in a view
. (The answer is yes 😀 )
So I moved the select part...
April 21, 2010 at 1:39 am
Another update:
- new columns: perc_seeks, perc_scans, perc_lookups. these columns represents the index method represented as a percentage
- The ratio calculation is changed: Since a lookup is better than a seek...
April 14, 2010 at 8:18 am
Another minor modification: indexes with only updates and no hits now have a negative ratio (instead of 0). The ratio calculation for those indexes is updates * -1.
For those of...
April 6, 2010 at 3:24 am
I just posted an updated version (waiting for approval, so be patient). I removed the join to sysobjects (thanks to Jason who pointed to this). I replaced the <TAB> character...
April 1, 2010 at 1:56 am
Which commands and in which order do I have to execute to stop/remove this trace?
March 30, 2010 at 6:46 am
crainlee2 (3/29/2010)
What is the purpose of this elaborate query?
(NOTE: I have commented out the ALTER INDEX (DISABLE) statement until I get an explanation of what the query is supposed...
March 29, 2010 at 4:03 pm
Nested tasks not possible?
Situation: from a main routine, I execute a subroutine with sp_exec. inside this subroutine, some calculations are done (a generated SQL statment). If I execute this SQL...
March 24, 2010 at 4:44 am
Viewing 15 posts - 31 through 45 (of 334 total)