3. Based on actual conditions, discuss the misunderstandings of index use
The purpose of the theory is to apply. Although we have just listed when clustered or nonclustered indexes should be used, in practice the above rules are easily overlooked or cannot be comprehensively analyzed based on actual conditions. Below we will talk about the misunderstandings in index use based on practical problems encountered in practice so that everyone can master the methods of index establishment.
1. The primary key is a clustered index
This idea is extremely wrong and a waste of clustered indexes. Although SQL SERVER defaults to establishing clustered indexes on primary keys.
Usually, we will create an ID column in each table to distinguish each piece of data, and this ID column is automatically increased, with a step size generally 1. This is the column Gid in our example of office automation. At this point, if we set this column as the primary key, SQL SERVER will default to the clustered index. This is beneficial, which is that it allows your data to be physically sorted by ID in the database, but the author believes that this is of little significance.
It is obvious that the advantages of clustered indexes are obvious, and there can only be one rule for clustered indexes in each table, which makes clustered indexes more precious.
From the definition of clustered indexes we mentioned earlier, we can see that the biggest advantage of using clustered indexes is that they can quickly narrow the query scope according to query requirements and avoid full table scanning. In practical applications, because the ID number is automatically generated and we do not know the ID number of each record, it is difficult for us to use the ID number to query in practice. This makes it a waste of resources to make the primary key of the ID number a clustered index. Secondly, making fields with different ID numbers as clustered indexes does not comply with the rule of "a large number of different values should not be established"; of course, this situation is only for users to frequently modify the record content, especially when index items are indexed, but it has no effect on query speed.
In the office automation system, whether it is the file that needs to be signed by the user on the homepage of the system, the meeting or the user's file query, the field is inseparable from the "date" and the user's own "user name".
Typically, the homepage of office automation will display documents or meetings that each user has not signed for. Although our where statement can only limit the current user's not signing for it, if your system has been established for a long time and the amount of data is large, then every time each user opens the homepage, it will not make much sense to do so. Most users have browsed the files of one month ago, and doing so can only increase the overhead of the database. In fact, we can completely allow users to open the homepage of the system, the database only querys the file that the user has not read in the past three months, and use the "date" field to limit table scanning and improve query speed. If your office automation system has been in place for 2 years, your home page will theoretically display 8 times faster, or even faster.
Previous page1234Next pageRead the full text