Home Database Mysql Tutorial SQLServer2005 评估和管理索引

SQLServer2005 评估和管理索引

Jun 07, 2016 pm 04:20 PM
manage index Evaluate

SQLServer2005动态管理视图(DMVs)返回会话、事务、请求的服务器状态信息。它可用于诊断、内存和过程调优、监控(SQLServer2000不支持)。SQLServer引擎跟踪详细的资源使用情况,用select语句从DMVs中可查到,但是这些信息不会长期驻留在磁盘上。 由于索引提供

   SQLServer2005动态管理视图(DMVs)返回会话、事务、请求的服务器状态信息。它可用于诊断、内存和过程调优、监控(SQLServer2000不支持)。SQLServer引擎跟踪详细的资源使用情况,用select语句从DMVs中可查到,但是这些信息不会长期驻留在磁盘上。

  由于索引提供了代替表扫描的一个选择,,且DMVs返回索引使用计数,所以可以比较索引的成本和其性能。这个比较包括保持索引最新的成本,与使用索引而不是表扫描读数据的性能之比。谨记一个更新或删除操作先要读数据从而定位数据,然后对定位的数据进行写操作。一个插入操作在所有的索引上只是写操作。因此,一个大量的插入将使写操作次数超过读操作次数。一个大量的更改操作(包括更新和删除),读和写的次数通常很接近(假定没有'记录找不到'的情况发生)。一个大量的读操作,读的次数将超过写。引用约束如外键还要求额外的读操作(对于插入、更新、删除而言)去确保引用完整性得到维护

  哪些表和索引是没用或者很少用的?

  ---1. 未使用的表和索引。表都有一个索引ID,如果是0则为堆表,1则为聚集索引

  Declare @dbid int

  Select @dbid = db_id('Northwind')

  Select objectname=object_name(i.object_id)

  , indexname=i.name

  , i.index_id

  from sys.indexes i, sys.objects o

  where objectproperty(o.object_id,'IsUserTable') = 1

  and i.index_id NOT IN (select s.index_id

  fromsys.dm_db_index_usage_stats s

  where s.object_id=i.object_idand

  i.index_id=s.index_id and

  database_id = @dbid )

  and o.object_id = i.object_id

  order by objectname,i.index_id,indexname asc

  --2.缺失的索引

  SELECT TOP 50

  [Total Cost] = ROUND(avg_total_user_cost * avg_user_impact * (user_seeks + user_scans),0)

  , avg_user_impact

  , TableName = statement

  , [EqualityUsage] = equality_columns

  , [InequalityUsage] = inequality_columns

  , [Include Cloumns] = included_columns

  ,user_seeks , user_scans

  FROM sys.dm_db_missing_index_groups g

  INNER JOIN sys.dm_db_missing_index_group_stats s

  ON s.group_handle = g.index_group_handle

  INNER JOIN sys.dm_db_missing_index_details d ON d.index_handle = g.index_handle

  WHERE statement LIKE '%tablename%'

  ORDER BY [Total Cost] DESC;

  --3.使用很少的索引和频繁使用的索引一样,都会记录在sys.dm_db_index_usage_stats中。为了找出这些索引,需要查看 诸如user_seeks、 user_scans、user_lookups和user_updates的列。

  ;WITH IXC AS(

  SELECT IXC.object_id,

  IXC.index_id,

  IXC.index_column_id,

  IXC.is_descending_key,

  IXC.is_included_column,

  column_name = C.name

  FROM sys.index_columns IXC

  INNER JOIN sys.columns C ON IXC.object_id = C.object_id AND IXC.column_id = C.column_id

  )

  SELECT TOP 50

  o.name AS 表名

  , i.name AS 索引名

  , i.index_id AS 索引id

  , dm_ius.user_seeks AS 搜索次数

  , dm_ius.user_scans AS 扫描次数

  , dm_ius.user_lookups AS 查找次数

  , dm_ius.user_updates AS 更新次数

  , p.TableRows as 表行数

  ,index_columns = Stuff(IXC_COL.index_columns,1,2,N'')

  ,index_columns_include = Stuff(IXC_COL_INCLUDE.index_columns_include,1,2,N'')

  ,'DROP INDEX ' + QUOTENAME(s.name) + '.' + QUOTENAME(OBJECT_NAME(i.OBJECT_ID))

  + '.' + QUOTENAME(i.name) AS '删除语句'

  FROM sys.dm_db_index_usage_stats dm_ius

  INNER JOIN sys.indexes i ON i.index_id = dm_ius.index_id AND dm_ius.OBJECT_ID = i.OBJECT_ID

  INNER JOIN sys.objects o ON dm_ius.OBJECT_ID = o.OBJECT_ID

  INNER JOIN sys.schemas s ON o.schema_id = s.schema_id

  INNER JOIN (SELECT SUM(p.rows) TableRows, p.index_id, p.OBJECT_ID

  FROM sys.partitions p GROUP BY p.index_id, p.OBJECT_ID) p

  ON p.index_id = dm_ius.index_id AND dm_ius.OBJECT_ID = p.OBJECT_ID

  CROSS APPLY(

  SELECT index_columns = (

  SELECT N', ' + quotename(column_name) + CASE is_descending_key

  WHEN 1 THEN N' DESC '

  ELSE N''

  END

  FROM IXC

  WHERE object_id = I.object_id

  AND index_id = I.index_id

  AND is_included_column = 0

  ORDER BY index_column_id

  FOR xml path(''),root('r'),TYPE

  )。value('/r[1]','nvarchar(max)')

  ) IXC_COL

  OUTER APPLY(

  SELECT index_columns_include = (

  SELECT N', ' + quotename(column_name)

  FROM IXC

  WHERE object_id = I.object_id

  AND index_id = I.index_id

  AND is_included_column = 1

  ORDER BY index_column_id

  FOR xml path(''),root('r'),TYPE

  )。value('/r[1]','nvarchar(max)')

  ) IXC_COL_INCLUDE

  WHERE OBJECTPROPERTY(dm_ius.OBJECT_ID,'IsUserTable') = 1

  AND dm_ius.database_id = DB_ID()

  --AND i.type_desc = 'nonclustered'

  --AND i.is_primary_key = 0

  --AND i.is_unique_constraint = 0

  and o.name='tablename' --根据实际修改表名

  ORDER BY (dm_ius.user_seeks + dm_ius.user_scans + dm_ius.user_lookups) ASC

  结论:user_updates很大,而发现user_seeks和user_scans很少或者就是0,那就说明该索引一直在更新,

  但是从来不被使用,仅仅创建和修改,没有为查询提供任何帮助,就可以考虑删除了

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

How to use Redis to implement distributed transaction management How to use Redis to implement distributed transaction management Nov 07, 2023 pm 12:07 PM

How to use Redis to implement distributed transaction management Introduction: With the rapid development of the Internet, the use of distributed systems is becoming more and more widespread. In distributed systems, transaction management is an important challenge. Traditional transaction management methods are difficult to implement in distributed systems and are inefficient. Using the characteristics of Redis, we can easily implement distributed transaction management and improve the performance and reliability of the system. 1. Introduction to Redis Redis is a memory-based data storage system with efficient read and write performance and rich data

How to implement student performance management function in Java? How to implement student performance management function in Java? Nov 04, 2023 pm 12:00 PM

How to implement student performance management function in Java? In the modern education system, student performance management is a very important task. By managing student performance, schools can better monitor students' learning progress, understand their weaknesses and strengths, and make more targeted teaching plans based on this information. In this article, we will discuss how to use Java programming language to implement student performance management functions. First, we need to determine the data structure of student grades. Typically, student grades can be represented as a

What are the Oracle index types? What are the Oracle index types? Nov 16, 2023 am 09:59 AM

Oracle index types include: 1. B-Tree index; 2. Bitmap index; 3. Function index; 4. Hash index; 5. Reverse key index; 6. Local index; 7. Global index; 8. Domain index ; 9. Bitmap connection index; 10. Composite index. Detailed introduction: 1. B-Tree index is a self-balancing tree data structure that can efficiently support concurrent operations. In Oracle database, B-Tree index is the most commonly used index type; 2. Bit Graph index is an index type based on bitmap algorithm and so on.

What to do if the right-click menu management cannot be opened in Windows 10 What to do if the right-click menu management cannot be opened in Windows 10 Jan 04, 2024 pm 07:07 PM

When we use the win10 system, when we use the mouse to right-click the desktop or the right-click menu, we find that the menu cannot be opened and we cannot use the computer normally. At this time, we need to restore the system to solve the problem. Win10 right-click menu management cannot be opened: 1. First open our control panel, and then click. 2. Then click under Security and Maintenance. 3. Click on the right to restore the system. 4. If it still cannot be used, check whether there is something wrong with the mouse itself. 5. If you are sure there is no problem with the mouse, press + and enter. 6. After the execution is completed, restart the computer.

Learn to use pipenv: Create and manage virtual environments Learn to use pipenv: Create and manage virtual environments Jan 16, 2024 am 09:34 AM

pipenv tutorial: Create and manage virtual environments, specific code examples are required Introduction: With the popularity of Python, the number of project development is also increasing. In order to effectively manage the Python packages used in projects, virtual environments have become an essential tool. In this article, we'll cover how to use pipenv to create and manage virtual environments, and provide practical code examples. What is pipenv? pipenv is a virtual environment management tool widely used by the Python community. It integrates p

Unusable task manager Unusable task manager Dec 26, 2023 pm 10:02 PM

Many friends encounter certain software getting stuck when using their computers. When the computer cannot move, you need to call up the task manager to end the process, but you find that the task manager cannot be opened. What is going on? It may be that your files are lost or a virus has invaded. The specific solution is Let’s take a look at the methods below. The solution to the problem that the Task Manager cannot be used generally has the following methods to open the Task Manager: 1. Ctrl+Shift+Esc key combination 2. Ctrl+alt+del key combination 3. Right-click on the blank space and select " "Start Task Manager" can also open "Task Manager" 4. Open the "Run" dialog box and enter "taskmgr.exe" to open the Task Manager.

How to solve the problem that the index exceeds the array limit How to solve the problem that the index exceeds the array limit Nov 15, 2023 pm 05:22 PM

The solutions are: 1. Check whether the index value is correct: first confirm whether your index value exceeds the length range of the array. The index of the array starts from 0, so the maximum index value should be the array length minus 1; 2. Check the loop boundary conditions: If you use the index for array access in a loop, make sure the loop boundary conditions are correct; 3. Initialize the array: Before using an array, make sure that the array has been initialized correctly; 4. Use exception handling: You can use the exception handling mechanism in the program to catch errors where the index exceeds the bounds of the array, and handle it accordingly.

How to partition a disk How to partition a disk Feb 25, 2024 pm 03:33 PM

How to partition disk management With the continuous development of computer technology, disk management has become an indispensable part of our computer use. As an important part of disk management, disk partitioning can divide a hard disk into multiple parts, allowing us to store and manage data more flexibly. So, how to partition disk management? Below, I will give you a detailed introduction. First of all, we need to make it clear that there is not only one way to partition disks. We can flexibly choose the appropriate disk partitioning method according to different needs and purposes. often

See all articles