|
sql
newsgroups
|
|||||||||||||||||||||||
|
|||||||||||||||||||||||
SQL SERVER 2000 INDEX USAGEHi,
Can anybody help me, i'd like to know if there is a way to get index usage in SQL SERVER 2000 through Transact sql, no through the Index Tuning Advisor. Just like does SQL 2005 with dm_db_index_usage_stats. Thanks in advance, or just for reading. Hi
There is no such possibilty in SQL Server 2000. I can think about runing SQL Server Profiler to get a number of scaned objects , but it is not the same <GeneroDu***@gmail.com> wrote in message Show quote news:d49268a5-2635-43bd-96d8-1e5b744ba8b2@r60g2000hsc.googlegroups.com... > Hi, > > Can anybody help me, i'd like to know if there is a way to get index > usage in SQL SERVER 2000 through Transact sql, no through the Index > Tuning Advisor. Just like does SQL 2005 with dm_db_index_usage_stats. > > Thanks in advance, or just for reading. The incredible new metadata is one of the main reasons I encourage people to
upgrade. There is a lot of information available in 2005 that has no equivalent in 2000. The sys.dm_db_index_usage_stats view is my absolute favorite. There was no good way to get this info prior to 2005. (Using the Index Tuning Wizard was similar, but not nearly as easy or complete, and you said you didn't want to use this tool.) -- Show quoteHTH Kalen Delaney, SQL Server MVP www.InsideSQLServer.com http://sqlblog.com <GeneroDu***@gmail.com> wrote in message news:d49268a5-2635-43bd-96d8-1e5b744ba8b2@r60g2000hsc.googlegroups.com... > Hi, > > Can anybody help me, i'd like to know if there is a way to get index > usage in SQL SERVER 2000 through Transact sql, no through the Index > Tuning Advisor. Just like does SQL 2005 with dm_db_index_usage_stats. > > Thanks in advance, or just for reading. |
|||||||||||||||||||||||