![Phân tích tư tưởng của nhân dân qua đoạn thơ: Những người vợ nhớ chồng… Những cuộc đời đã hóa sông núi ta trong Đất nước của Nguyễn Khoa Điềm](https://timtailieu.net/upload/document/136415/phan-tich-tu-tuong-cua-nhan-dan-qua-doan-tho-039-039-nhung-nguoi-vo-nho-chong-nhung-cuoc-doi-da-hoa-song-nui-ta-039-039-trong-dat-nuoc-cua-nguyen-khoa-136415.jpg)
Define a Primary Key and Other Indexes
Số trang: 5
Loại file: pdf
Dung lượng: 25.40 KB
Lượt xem: 3
Lượt tải: 0
Xem trước 2 trang đầu tiên của tài liệu này:
Thông tin tài liệu:
2,3 Xác định một khóa và các chỉ số chỉ số chính được sử dụng để cải thiện hiệu suất khi truy vấn dữ liệu, chẳng hạn như tìm kiếm trên các lĩnh vực và phân loại thông tin.
Nội dung trích xuất từ tài liệu:
Define a Primary Key and Other Indexes 2.3 Define a Primary Key and Other IndexesIndexes are used to improve performance when querying data, such as searching on fieldsand sorting information. The primary key is an index that ensures that you have at leastone unique value in each record, such as a Customer ID. This How-To discusses what thebest candidates are for primary keys, as well as how to create them and other indexes.You have created a base table and have even entered data into it. How do you make surethat you have a way of finding specific records? LastName and FirstName fields wontwork because you can have duplicates of those. You also want to make sure that whenyou search on fields, you get the best possible performance from SQL Server. Indexescan be created to help performance. How do you define a primary key field to make surethat you have unique records and can create other indexes as well?TechniqueWithin the Server Explorer, you can use a field, such as a Social Security Number, andmake that into a primary key field. By making a field the primary key field, you will needto make that field unique and prohibit null values there. The alternative to a currentunique field is to create a field that is automatically incremented, called an identity field.This identity field can also be set as the primary key field, again so that the record ismade unique. The primary key field will also be indexed.Besides creating the special primary key field, you can create indexes that perform twomain functions: • Performance. Used to increase performance when the column is used for search criteria and sorting and when youre loading ranges of records. • Constraints. This is one of the jobs that the primary key field performs- constraining the data that users can put into the table.Note When creating indexes for performance purposes only, take care that you dont go overboard. Although indexes help performance when searching and sorting, they can hurt performance when adding and updating data. This is mainly true when importing or adding large amounts of data. The other point is that when the table is small, you can over-index as well.While youre in the table designer, you can get to Indexes, located on the Property Pagesdialog box, by choosing Indexes/Keys from the View menu. You can see the PropertyPages dialog box in Figure 2.4. Figure 2.4. You can create all the necessary indexes using this dialog box.Within Indexes, you have some options to specify, such as whether you would like tohave the values in the index be unique You will want to have tables where you have a lotof data and you will be deleting or updating large amounts of records at a time. You alsowill use a field in a range situation, such as using BETWEEN, >, >=, 1. Place the cursor in the first row, if it isnt already there. Click the right mouse button, and choose Insert Column from the menu. Next, fill in the properties of the field as follows: Property Value Column Name CustomerID DataType int Length 4 Allow Nulls Unchecked Identity Yes2. When you specify that you want to make this an identity field, the next two properties will be used. The first, Identity Seed, is what the columns values will be started at. The next property, Identity Increment, will be how records that are added will be incremented.3. Right-click in the Column Name property of the CustomerID column, and then choose Set Primary Key from the menu. You have now set the CustomerID to be the primary key, and the screen should look similar to Figure 2.5. The index that you just created when you specified CustomerID to be the primary key falls into the constraint category of indexes. Figure 2.5. You need to have one primary key field per table. 4. To create other indexes that will help performance, choose Indexes/Keys from the View menu to open the Property Pages dialog box. 5. On the Indexes page, click the New button, and then fill in the following properties to add an index for the LastName field: Index Name with IX_LastName and Column Name with LastName.Tip If you sort on multiple columns such as LastName and FirstName together, which is quite common, you could add the FirstName column underneath the LastName column in the last step. This is called a compound index.How It WorksWhen you create tables, you create your primary key columns and indexes at the sametime. You can come up with indexes at a later date as well.CommentsBe sure to create a primary key column for each of your tables, and use identity columnsfor primary columns whenever possible.SQL Server will take advantage of indexes you have created, but just be careful not toover-index. Remember to examine what columns you will be sorting and querying on.With particularly large tables, indexes become more important than ever.
Nội dung trích xuất từ tài liệu:
Define a Primary Key and Other Indexes 2.3 Define a Primary Key and Other IndexesIndexes are used to improve performance when querying data, such as searching on fieldsand sorting information. The primary key is an index that ensures that you have at leastone unique value in each record, such as a Customer ID. This How-To discusses what thebest candidates are for primary keys, as well as how to create them and other indexes.You have created a base table and have even entered data into it. How do you make surethat you have a way of finding specific records? LastName and FirstName fields wontwork because you can have duplicates of those. You also want to make sure that whenyou search on fields, you get the best possible performance from SQL Server. Indexescan be created to help performance. How do you define a primary key field to make surethat you have unique records and can create other indexes as well?TechniqueWithin the Server Explorer, you can use a field, such as a Social Security Number, andmake that into a primary key field. By making a field the primary key field, you will needto make that field unique and prohibit null values there. The alternative to a currentunique field is to create a field that is automatically incremented, called an identity field.This identity field can also be set as the primary key field, again so that the record ismade unique. The primary key field will also be indexed.Besides creating the special primary key field, you can create indexes that perform twomain functions: • Performance. Used to increase performance when the column is used for search criteria and sorting and when youre loading ranges of records. • Constraints. This is one of the jobs that the primary key field performs- constraining the data that users can put into the table.Note When creating indexes for performance purposes only, take care that you dont go overboard. Although indexes help performance when searching and sorting, they can hurt performance when adding and updating data. This is mainly true when importing or adding large amounts of data. The other point is that when the table is small, you can over-index as well.While youre in the table designer, you can get to Indexes, located on the Property Pagesdialog box, by choosing Indexes/Keys from the View menu. You can see the PropertyPages dialog box in Figure 2.4. Figure 2.4. You can create all the necessary indexes using this dialog box.Within Indexes, you have some options to specify, such as whether you would like tohave the values in the index be unique You will want to have tables where you have a lotof data and you will be deleting or updating large amounts of records at a time. You alsowill use a field in a range situation, such as using BETWEEN, >, >=, 1. Place the cursor in the first row, if it isnt already there. Click the right mouse button, and choose Insert Column from the menu. Next, fill in the properties of the field as follows: Property Value Column Name CustomerID DataType int Length 4 Allow Nulls Unchecked Identity Yes2. When you specify that you want to make this an identity field, the next two properties will be used. The first, Identity Seed, is what the columns values will be started at. The next property, Identity Increment, will be how records that are added will be incremented.3. Right-click in the Column Name property of the CustomerID column, and then choose Set Primary Key from the menu. You have now set the CustomerID to be the primary key, and the screen should look similar to Figure 2.5. The index that you just created when you specified CustomerID to be the primary key falls into the constraint category of indexes. Figure 2.5. You need to have one primary key field per table. 4. To create other indexes that will help performance, choose Indexes/Keys from the View menu to open the Property Pages dialog box. 5. On the Indexes page, click the New button, and then fill in the following properties to add an index for the LastName field: Index Name with IX_LastName and Column Name with LastName.Tip If you sort on multiple columns such as LastName and FirstName together, which is quite common, you could add the FirstName column underneath the LastName column in the last step. This is called a compound index.How It WorksWhen you create tables, you create your primary key columns and indexes at the sametime. You can come up with indexes at a later date as well.CommentsBe sure to create a primary key column for each of your tables, and use identity columnsfor primary columns whenever possible.SQL Server will take advantage of indexes you have created, but just be careful not toover-index. Remember to examine what columns you will be sorting and querying on.With particularly large tables, indexes become more important than ever.
Tìm kiếm theo từ khóa liên quan:
công nghệ máy tính phần mềm kỹ thuật lập trình lập trình dữ liệu Define a Primary KeyTài liệu liên quan:
-
Kỹ thuật lập trình trên Visual Basic 2005
148 trang 283 0 0 -
NGÂN HÀNG CÂU HỎI TRẮC NGHIỆM THIẾT KẾ WEB
8 trang 225 0 0 -
Giới thiệu môn học Ngôn ngữ lập trình C++
5 trang 208 0 0 -
6 trang 206 0 0
-
Bài giảng Nhập môn về lập trình - Chương 1: Giới thiệu về máy tính và lập trình
30 trang 179 0 0 -
Luận văn: Nghiên cứu kỹ thuật giấu tin trong ảnh Gif
33 trang 156 0 0 -
Báo cáo thực tập Công nghệ thông tin: Lập trình game trên Unity
27 trang 122 0 0 -
Giáo trình về phân tích thiết kế hệ thống thông tin
113 trang 114 0 0 -
LUẬN VĂN: Tìm hiểu kỹ thuật tạo bóng cứng trong đồ họa 3D
41 trang 111 0 0 -
Bài giảng Kỹ thuật lập trình - Chương 10: Tổng kết môn học (Trường Đại học Bách khoa Hà Nội)
67 trang 109 0 0