TAILIEUCHUNG - Microsoft SQL Server 2008 R2 Unleashed- P123

Microsoft SQL Server 2008 R2 Unleashed- P123:SQL Server 2005 provided a number of significant new features and enhancements over what was available in SQL Server 2000. This is not too surprising considering there was a five-year gap between these major SQL Server 2008 is not as much of a quantum leap forward from SQL Server 2005 | 1164 CHAPTER 34 Data Structures Indexes and Performance Manually Updating Statistics Whether or not you ve disabled AutoStats you can still manually update index statistics by using the UPDATE STATISTICS T-SQL command whose syntax is as follows UPDATE STATISTICS table view index statistics_name index lstatistics_name .n WITH FULLSCAN SAMPLE number PERCENT ROWS RESAMPLE ALL COLUMNS INDEX NORECOMPUTE If neither the FULLSCAN nor SAMPLE option is specified the default behavior is to perform a sample scan to calculate the statistics and SQL Server automatically computes the appropriate sample size. The FULLSCAN option forces SQL Server to perform a full scan of the data in the table or index to calculate the statistics. This generates more accurate statistics than using sampling but is also the most time-consuming and I O-intensive method. When you use the SAMPLE option you can specify a fixed number of rows or a percentage of rows to sample to build or update the index statistics. If the sampling ratio specified ever results in too few rows being sampled SQL Server automatically corrects the sampling based on the number of existing rows in the table or view. At a minimum approximately 1 000 data pages are sampled. The RESAMPLE option specifies that the statistics be generated using the previously defined sampling ratio. This RESAMPLE option is useful for indexes or column statistics created with different sampling values. For example if the index statistics were created using FULLSCAN and the column statistics were created using a 50 sample specifying the RESAMPLE option would update the statistics using FULLSCAN on the indexes and using the 50 sample for the others. Specifying ALL COLUMNS or INDEX specifies whether the UPDATE STATISTICS command affects all existing statistics or only column or index statistics. By default if no option is specified the UPDATE STATISTICS statement affects all statistics. As previously discussed SQL Server automatically updates the index

TỪ KHÓA LIÊN QUAN
TAILIEUCHUNG - Chia sẻ tài liệu không giới hạn
Địa chỉ : 444 Hoang Hoa Tham, Hanoi, Viet Nam
Website : tailieuchung.com
Email : tailieuchung20@gmail.com
Tailieuchung.com là thư viện tài liệu trực tuyến, nơi chia sẽ trao đổi hàng triệu tài liệu như luận văn đồ án, sách, giáo trình, đề thi.
Chúng tôi không chịu trách nhiệm liên quan đến các vấn đề bản quyền nội dung tài liệu được thành viên tự nguyện đăng tải lên, nếu phát hiện thấy tài liệu xấu hoặc tài liệu có bản quyền xin hãy email cho chúng tôi.
Đã phát hiện trình chặn quảng cáo AdBlock
Trang web này phụ thuộc vào doanh thu từ số lần hiển thị quảng cáo để tồn tại. Vui lòng tắt trình chặn quảng cáo của bạn hoặc tạm dừng tính năng chặn quảng cáo cho trang web này.