Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

...

For example, when you want to view information on a specific logical file, choose Logical Files from the Association controls. The Association area changes to display all the files groups associated with the selected Logical File. Note that the Tab heading and the Main area remain unchanged. In the Association area, click the row of the logical file you want to view detailed information for. The Tab heading indicates the newly selected entity; the Main area displays an overview of the logical file you want to investigate, and the Association area shows general details on the file groups that are associated with the Logical File you selected.

See “About About Precise for SQL Server tabs” on page 22tabs.

About the Recommend tab

Precise for SQL Server uses the Microsoft® Index Tuning Wizard to achieve recommended indexes or statistics for the selected table. This helps the optimizer choose a better access plan and enhances the performance of the statements or batches that access the selected table. The recommendations are based on a workload. The workload contains all the statements stored in the PMDB that were executed during the selected time period that have an average duration time exceeding the value defined in the registry (where 0 is the default). The recommend indexes process only performs the recommend process on indexes or statistics additions.

...

  • the name of the user, object, and database it is associated with
  • a summary of the time it spent in SQL Server, during the time frame you selected
  • its size (in pages)

See “About About the Table and Table Contain Same Column entities” on page 113 and “About entities and About the Index and Unused Index entities” on page 117entities.

About the Active Objects Association area

...

  • Properties. Displays general table details, such as, number of columns, file group, and whether or not the table uses a clustered index.
  • In MS-SQL. Displays the Using CPU and I/O Wait counters of the selected table, over the selected time period, based on its contribution to overall performance, when accessed by the execution plan.
  • Space Allocation. Displays the amount of free space and used space (in MB) in the selected table, over the selected time period, and specifies whether the space is populated by an index or data.
    The values may be incorrect due to out-of-date space usage information. To update the values, use the DBCC UPDATEUSAGE command to recalculate the space usage fields. For more information, see SQL Server Books Online.
  • Schema

...

  • Changes. Displays an overtime graph that indicates whether changes were made to the selected table and a breakdown of its indexes or columns into the following groups:

      ...

        • Table Change in

      ...

        • Property. Indicates any change made to one of the table's properties, such as if the table was renamed.

      ...

        • Table Change in

      ...

        • Structure. Indicates any change made to the table's structure, such as whether a new column was added to the table.

      ...

        • Index Change in

      ...

        • Property. Indicates any change made to one of the index's properties, such as whether the index was changed from clustered to non-clustered.

      ...

        • Index Change in

      ...

        • Structure. Indicates any change made to the index's structure, such as whether a new key was added to the index.

      ...

        • Index Created/

      ...

        • Dropped. Indicates any addition or deletion of indexes.

      ...

      • Rows. Displays the number of rows in the selected table, over the selected time period, as collected by the Collect Space Utilization process.

      Anchor
      AboutviewingdatastorageandfragmentationinformationintheShowContigview
      AboutviewingdatastorageandfragmentationinformationintheShowContigview
      About viewing data storage and fragmentation information in the Show Contig view

      The Show Contig view displays data storage and fragmentation information for the selected table. The following information is displayed:

      • Minimum Record

      ...

      • Size. Indicates the minimum record size in the data pages.
      • Maximum Record

      ...

      • Size. Indicates the maximum record size in the data pages.
      • Average Record

      ...

      • Size. Indicates the average record size in the data pages.
      • Number of Forwarded

      ...

      • Records. When there is not enough free space to write an updated record in its page, SQL Server allocates the updated record to another page and instructs the old record to point to the new location.
        The Number of forwarded records is the number of records allocated to another page, since there was no free space in the original page.
        Accessing forwarded records adversely affects performance because additional I/O is performed. Check the number of forwarded records in your table or index in relation to the total number of records. If the ratio is high, consider reorganizing the table or index to achieve a better performance. To reorganize an index, use DBCC DBREINDEX. If the index is a clustered index, a Reindex action will reorganize the data pages.

      ...

      • Pages. Displays the number of data pages.

      ...

      • Extents. Displays the number of extents used to store the data pages.
      • Extent

      ...

      • Switches. The number of times SQL Server moved from one extent to another while scanning the data pages (not including the first extent access).
      • Scan

      ...

      • Density. Indicates the ratio between the optimum number of extent switches and the actual number of extent switches. This value determines the general level of fragmentation in a table. The higher the value, the better. The scan density is not valid, if the table spans multiple files.
      • Best

      ...

      • Count. The optimum number of extent switches. This number can be achieved, if the extents and pages are perfectly linked, and there is no fragmentation.
      • Actual

      ...

      • Count. Number of times the SQL Server moved from one extent to another while scanning the data pages (including the first extent access).
      • Average Free Bytes per

      ...

      • Page. Average free bytes per page in the data pages.
      • Average Page Density (%)

      ...

      • . The average page density is a percentage indicating how full the data pages are. Space that cannot be utilized due to row size constraints is counted as used. The higher the percentage, the better.
        When space is available within the index pages, that is, when the indexes are not making the most efficient use of space, scanning the table involves more read operations than if no free space were available on the pages. However, keeping free space on the pages is sometimes desirable to accommodate future expansion in the storage of the table's data and to reduce the potential for page splits. You can request to keep free space available by specifying a low fill factor value, when you create an index. For example, a fill factor of "10" means that the pages will be 10% full while creating the index. Having room on a page means that there is space to insert more rows without having to split a page. Splitting is a relatively expensive operation and can lead to a break of contiguity between pages, because the new page is not usually contiguous to the page being split.
      • Logical Fragmentation (%)

      ...

      • . The logical fragmentation indicates how well ordered the data pages are inside an extent and between extents.
        "Well ordered" means that the number of the current page scanned is higher than the previous one. The logical fragmentation is computed by dividing the number of out-of-order pages by the number of the data pages. The lower the value, the less fragmentation there is. This is relevant only when there is a clustered index on the table, because ordered pages are important.
      • Extent Fragmentation (%)

      ...

      • . The extent fragmentation indicates how well the extents, which contain the data pages, are physically contiguous on the disk.
        The page number of its first page identifies an extent. If the extents 8, 16, 24, or 32 make up an index, then we can see that the extents are contiguous on the disks, which means there are no gaps. On the other hand, if the extents 8, 24, 32, and 64 make up an index, then we can see that we have a gap. The extent fragmentation is computed by dividing the number of gaps by the number of extents, so in this example, the extent fragmentation is 1/4, or 25 percent.
        The lower the value, the less fragmentation there is.
        This number is not relevant to heaps, because physical order has no importance in the data pages.
      Info

      ...

      By default, not all dbcc fields are displayed in the Show Contig view.

      About viewing changes made to the table and index levels in the Change Log Summary

      The Change Log Summary view displays changes made to the table and index levels vs. resource consumption, over a selected time period, to enable you to locate schema changes that caused performance problems. The following information is displayed:

      • Change Log

      ...

      • Summary.
        • Sample Date. Indicates the estimated last change date of the table (and/or its sub-objects). This value reflects the date that the change was first identified by the Precise for SQL Server Schema Changes Process, not the date the object was changed.
        • Object

      ...

        • Type. Indicates whether the object is a table or index.
        • Object.

      ...

        • Displays the table or index name.
        • Change

      ...

        • Type. Indicates the type of change detected. The following change types are reported:

          ...

              • Created. Indicates that the index was created

          ...

              • Dropped. Indicates that the index was dropped

          ...

              • Change in Structure

          ...

              • Table. Indicates any change that was made to the table's column(s) and the creation or deletion of the table's trigger(s).

          ...

              • Index. Indicates any change that was made to the index keys of the index or to the index depth.

          ...

              • Change in Properties

          ...

              • Table. Indicates any change that was made to one of the following table's properties: Name, Owner or File Group.

          ...

              • Index. Indicates any change that was made to one of the following index's properties: File Group, Fill Factor, Is Auto Statistics, Is Clustered Index, Is Pad Index, Is Page Lock Disallowed and Is Row Lock Disallowed.
          • In MS-

          ...

          • SQL. Displays resource consumption of the selected table, over a selected time period, based on its contribution to overall performance, when accessed by the execution plan.
          • Schema

          ...

          • Changes. Displays an overtime graph that indicates whether changes were made to the selected table and a breakdown of its indexes or columns into the following groups:

              ...

                • Table Change in

              ...

                • Property. Indicates any change made to one of the table's properties, such as if the table was renamed.

              ...

                • Table Change in

              ...

                • Structure. Indicates any change made to the table's structure, such as whether a new column was added to the table.

              ...

                • Index Change in

              ...

                • Property. Indicates any change made to one of the index's properties, such as whether the index was changed from clustered to non-clustered.

              ...

                • Index Change in

              ...

                • Structure. Indicates any change made to the table's index properties, such as whether a new key was added to the index.

              ...

                • Index Created/

              ...

                • Dropped. Indicates any addition or deletion of indexes.

              About viewing schema changes made on a selected table in the Change Log Detailed view

              The Change Log Detailed view details the schema changes made on the selected table and its sub-objects (column, index and index key).

              The following table information is monitored by the schema change process:■    Name

              • Name

              ...

              • File Group

              ...

              • Exec is ANSI null on

              ...

              • Table has Cluster Index

              ...

              • Insert Trigger Count

              ...

              • Owner

              ...

              • No. of Columns

              ...

              • Table has Index

              ...

              • Delete Trigger Count

              ...

              • Update Trigger Count

              ...

              • Partition Schema

              ...

              • Partition Function

              Anchor
              AboutviewingusageinformationandaccessmethodsintheUsageReport
              AboutviewingusageinformationandaccessmethodsintheUsageReport
              About viewing usage information and access methods in the Usage Report

              The Usage Report view displays usage information and access methods based on statements stored in the PMDB. The following information is displayed:

              • Report was run with the following parameters

              ...

              • . Displays usage information of the selected index, as follows:

                  ...

                    • Start Date. Indicates the minimum execution date for a statement, within the selected time period.

                  ...

                    • End Date. Indicates the maximum execution date for a statement, within the selected time period.
                  • Statement

                  ...

                  • Explain. Displays the following items:

                      ...

                        • Statement Access the

                      ...

                        • Object. Indicates the total number of statements that were explained successfully in the PMDB that refer to the selected table, within the selected time period.

                      ...

                        • Statement Not Access the

                      ...

                        • Object. Indicates the total number of statements that were explained successfully in the PMDB that do not refer to the selected table, within the selected time period.

                      ...

                        • Statements Not Explained

                      ...

                        • Yet. Indicates the total number of statements in the PMDB that were not yet explained, within the selected time period.

                      ...

                        • Statements Explained Unsuccessfully. Indicates the total number of statements in the PMDB that were explained unsuccessfully, within the selected time period.
                      • Table

                      ...

                      • Profile. Displays a breakdown, by statement type, of the number of statements that referred to the specified table (SELECT, INSERT, UPDATE, DELETE); for example, 100 statements performed SELECT on the specified table. The In MS-SQL counters (Using CPU and I/O Wait) are also displayed.

                      About viewing common access patterns for tables or index (SQL Server 2005 only)

                      The Common Access Patterns view displays information that indicates to what extent a table or index was used. The following information is displayed:

                      • User

                      ...

                      • Operations. Displays the number of user seeks, scans, lookups or updates.
                      • System

                      ...

                      • Operations. Displays the number of system seeks, scans, lookups or updates.
                      • User vs. System

                      ...

                      • Operations. Graph comparing user operations to system operations, over the selected time period.
                      • Last User or System Seek, Lookups, Scans or Updates

                      ...

                      • . Displays when the last user or system seek, lookup, scan or update operation occurred.

                      About viewing operational statistics

                      The Operational Statistics view displays information that indicates whether or not an index or table is being used. The following graphs are displayed:■    Range

                      • Range scan vs. Singleton lookups

                      ...

                      • Physical I/O operations

                      ...

                      • Locking and Latching contentions

                      ...

                      • Locking and Latching contention waits

                      About the Table and Table Contain Same Column entities Association area

                      You can view general details of the entities associated with the selected Table entity in the Association area. It is possible to associate to the Table entity from the following entities: Database, Column, Index, Physical Disk, Logical Volume, HP Storage Device, HDS Storage Device, Statement, Batch, Stored Procedure, Function and Trigger.

                      The following additional information is available for SQL Server 2005 objects:Partitions    Indicates

                      • Partitions. Indicates the number of partitions defined for the selected table.
                      • Table

                      ...

                      • Partitioned. Indicates whether or not the table is partitioned.
                      • Partition

                      ...

                      • Schema. Indicates under which file groups to map the partition.
                      • Partition

                      ...

                      • Function. Displays the name of the function that defines how the table should be partitioned.

                      Anchor
                      AbouttheIndexandUnusedIndexentities
                      AbouttheIndexandUnusedIndexentities
                      About the Index and Unused Index entities

                      The Index entity displays general details regarding resource consumption, space utilization and schema changes for the selected index.

                      ...

                      The following views are available:■    Overview

                      • Overview

                      ...

                      • Show Contig

                      ...

                      • Statistics

                      ...

                      • Schema Changes

                      ...

                      • Usage Report

                      ...

                      • Common Access Patterns (SQL Server 2005 only)

                      ...

                      • Operational Statistics (SQL Server 2005 only)

                      About getting an overview of space utilization and schema changes for a selected index

                      The Overview displays space utilization and schema changes for a selected index, as follows:Properties    Displays

                      • Properties. Displays general details on the index such as number of keys, fill factor, and whether the index is clustered or unique.
                      • In MS-

                      ...

                      • SQL. Displays Using CPU and I/O Wait of the selected index over a selected time period, based on its contribution to overall performance when accessed by the execution plan.
                      • Space

                      ...

                      • Allocation. Displays the amount of free space and used space (in MB) in the selected index, over the selected time period.

                        Info

                      ...

                      • The values may be incorrect due to out-of-date space usage information. To update the values, use the DBCC UPDATEUSAGE command to recalculate the space usage fields. For more information, see SQL Server Books Online.

                      • Schema

                      ...

                      • Changes. Displays an overtime graph that indicates whether there where index changes, broken down into the following groups:

                          ...

                            • Change in Property. Indicates any change made to the index properties, such as if the index was changed from clustered to non-clustered.

                          ...

                            • Change in Structure. Indicates any change made to the index structure, such as if a new key was added to the index.

                          ...

                          • Rows. Displays the number of rows in the selected index, over the selected time period, as collected by the Collect Space Utilization process.

                          Anchor
                          AboutviewingdatastorageandfragmentationinformationofaselectedindexintheShowContigview
                          AboutviewingdatastorageandfragmentationinformationofaselectedindexintheShowContigview
                          About viewing data storage and fragmentation information of a selected index in the Show Contig view

                          The Show Contig view displays data storage and fragmentation information for the selected index. The following information is displayed:

                          • Minimum Record

                          ...

                          • Size. Displays the minimum record size of the pages in the leaf level of the index.
                          • Maximum Record

                          ...

                          • Size. Displays the maximum record size of the pages in the leaf level of the index.
                          • Average Record

                          ...

                          • Size. Displays the average record size of the pages in the leaf level of the index.
                          • Number of Forwarded

                          ...

                          • Records

                          ...

                          • . When there is not enough free space to write an updated record in its page, SQL Server allocates the updated record to another page and instructs the old record to point to the new location.
                            The Number of forwarded records is the number of records allocated to another page, because there was no free space available in the original page.
                            Every access to a forwarded record requires an additional step than access to a regular record, which affects performance. Check the number of forwarded records in your table or index in relation to the total number of records. If the ratio is high, consider reorganizing the table or index to achieve better performance. Use DBCC DBREINDEX to reorganize an index. If the index is a clustered index, reindexing will reorganize the data pages.

                          ...

                          • Pages. Displays the number of pages in the leaf level of the index.
                          • Number of

                          ...

                          • Extents. Number of extents used to store the pages in the leaf level of the index.
                          • Extent

                          ...

                          • Switches. Displays the number of times SQL server moved from one extent to another while scanning the leaf level pages (not including the first extent access).
                          • Scan

                          ...

                          • Density. Indicates the ratio between the optimum number of extent switches and the actual number of extent switches. This value determines the general level of fragmentation in an index. The higher the value, the less fragmentation there is in the index. The scan density is not valid if the table spans multiple files.
                          • Best

                          ...

                          • Count. Displays the optimum number of extent switches. This number can be achieved, if the extents and pages are perfectly linked, and there is no fragmentation.
                          • Actual

                          ...

                          • Count. Displays the number of times SQL Server moved from one extent to another while scanning the index pages (including the first extent access).
                          • Average Free Bytes per Page

                          ...

                          • . Displays the average free bytes per page in the leaf level pages.
                          • Average Page Density (%)

                          ...

                          • . The average page density is a percentage indicating how full the index pages are.
                            Space that cannot be utilized due to row size constraints is counted as used. The higher the percentage, the better.
                            When space is available within the index pages, that is, when the indexes are not making the most efficient use of space, this means that scanning the table involves more read operations than if no free space were available on the pages. However, maintaining free space on the pages is sometimes desirable to accommodate future expansion in the storage of the table's data and to reduce the potential for page splits. You can request to keep free space available by specifying a low fill factor value, when you create an index. For example, a fill factor of "10" means that the pages will be 10% full while creating the index. Having room on a page means that there is space to insert more rows without having to split a page. Splitting is a relatively expensive operation and can lead to a break of contiguity between pages, because usually the new page is not contiguous to the page being split.
                          • Logical

                          ...

                          • Fragmentation. Indicates how well ordered the leaf pages are inside an extent and between extents. Well ordered means that the number of the current page scanned is higher than the previous one. Logical fragmentation is computed by dividing the number of out-of-order pages by the number of pages in the table. The lower the value, the less fragmentation there is in the index. This is relevant only when there is a clustered index on the table because then there is significance to ordered pages.
                          • Extent Fragmentation (%)

                          ...

                          • . The extent fragmentation indicates how well the extents, which contain the leaf pages, are physically contiguous on the disk.
                            The page number of its first page identifies an extent. If the extents 8, 16, 24, or 32 make up an index, then we can see that the extents are contiguous on the disks, which means there are no gaps. On the other hand, if the extents 8, 24, 32, and 64 make up an index, then we can see that we have a gap. The extent fragmentation is computed by dividing the number of gaps by the number of extents, so in this example, the extent fragmentation is 1/4, or 25 percent.
                            The lower the number, the less fragmentation there is.
                            This number is not relevant to heaps, because physical order has no importance in the data pages.

                            Info

                          ...

                          • By default, not all dbcc fields are displayed

                          ...

                          • ion the Show Contig view.

                          Anchor
                          Aboutviewingdistributionstatisticsforaselectedindex
                          Aboutviewingdistributionstatisticsforaselectedindex
                          About viewing distribution statistics for a selected index

                          The Statistics view displays distribution statistics for the selected index.

                          General

                          Displays general information on the distribution statistics, as follows:

                          • Statistics

                          ...

                          • Updated. Indicates the last time the statistics were updated.
                          • Row

                          ...

                          • Sampled. Indicates the number of rows sampled for the statistics calculation.
                          • Average Key

                          ...

                          • Length. Indicates the average length of all the keys in the index.

                          ...

                          • Steps. The number of steps that were sampled and used in the statistics calculation. A "step" is a range of key values (the first key in the index) that were sampled.
                            The following values are recorded for each step:

                              ...

                                • High value in the range

                              ...

                                • Density = 1 / (1+No. of distinct values in the range)

                              ...

                                • No. of rows in the range (not including the High value)

                              ...

                                • No. of rows equal to the "High value"

                              ...

                                • No. of distinct values in the range (not including the "High value")

                              ...

                                • Avg. No. of rows per distinct value ("No. Of rows in range" / "No. of distinct values in the range")
                              • Rows

                              ...

                              • Sampled. The percentage of rows sampled for the statistics calculation.

                              About Density

                              Indicates how selective an index is, as follows:Density    This

                              • Density. This indicator provides a measure of how selective the index is. The more selective an index is, the more useful it is, since this means that more rows can be eliminated from consideration. For example, a unique index is the most selective index since each index entry can point to only one row.
                                Density = 1/No. of unique values. Density values can be between "0" and "1". The lower the Density value, the more selective the index.
                              • Average

                              ...

                              • Length. Indicates the average length of the specified set of keys.

                              ...

                              • Columns. The left-based subset of key columns in the index (including the first column alone). If there is a clustered index on the table, its keys are considered part of the key in every non-clustered index row, because non-clustered index rows point to the clustered index rows. For example, if there is a non-clustered index with the columns, "CustomerID" and "OrderDate". The table also contains a clustered index, "OrderID".
                                The columns will be:

                                  ...

                                    • CustomerID

                                  ...

                                    • CustomerID, OrderDate

                                  ...

                                    • CustomerID, OrderDate, OrderID

                                  About Distribution

                                  Displays additional distribution statistics for the selected index, as follows:

                                  • High

                                  ...

                                  • Value. Each row in the Distribution table represents information about a range of key values (the first key in the index). This range is called a "Step". "High value" is the upper value in the range.
                                  • Rows in

                                  ...

                                  • Range. Indicates the number of rows in the sample that have the specified key range values, not including the high value in the range.
                                  • Rows Equal to High

                                  ...

                                  • Value. Indicates the number of rows from the sample that have the same value as the specified High value
                                  • Distinct Values in

                                  ...

                                  • Range. Indicates the number of distinct values inside the range not including the High value.
                                  • Rows per Distinct Values in Range (Avg)

                                  ...

                                  • . The average number of rows, per distinct value, in the specified range, not including the High value in the range. This value is computed by dividing the number of rows in the range by the number of distinct values in the range (the number of distinct values in the range always being greater than zero).

                                  ...

                                  • Density. Step Density means the uniqueness of the data values. This information provides a measure of how selective the index is. The more selective an index is, the more useful it is, because this means more rows can be eliminated from consideration. A unique index, for example, is the most selective index, where each index entry can point to only one row.
                                    Step Density = 1/(1+No. of distinct values in the range) In this case, we calculate the density of the current step.
                                    Step Density values can be between "0" and "1". The lower the Step Density value, the more unique the data values.

                                  About viewing schema changes for a selected index and index key

                                  The Schema Changes view shows a table that summarizes the schema changes made on the selected index and index keys. For example, this would include whether the first key of an index was dropped, making the index unusable in statements.

                                  The following index information is monitored by the schema change process:■    File

                                  • File Group

                                  ...

                                  • Fill Factor

                                  ...

                                  • Is Pad Index

                                  ...

                                  • Index Depth

                                  ...

                                  • Is Page Lock Disallowed

                                  ...

                                  • No of Keys

                                  ...

                                  • Is Clustered Index

                                  ...

                                  • Is Unique

                                  ...

                                  • Is Auto Statistics

                                  ...

                                  • Is Row Lock Disallowed

                                  ...

                                  • Position

                                  ...

                                  • Order by

                                  ...

                                  • Partition Schema

                                  ...

                                  • Partition Function

                                  Anchor
                                  Aboutviewingausagereport
                                  Aboutviewingausagereport
                                  About viewing a usage report

                                  The Usage Report view displays usage information and access methods based on statements stored in the PMDB. The following information is displayed:

                                  • Report was run with the following parameters

                                  ...

                                  • . Displays usage information of the selected index, as follows:

                                      ...

                                        • Start Date. Indicates the minimum execution date for a statement, within the selected time period.

                                      ...

                                        • End Date. Indicates the maximum execution date for a statement, within the selected time period.
                                      • Statement

                                      ...

                                      • Explain. Displays statement explain, as follows:

                                          ...

                                            • Statement Access the

                                          ...

                                            • Object. Indicates the total number of statements that were explained successfully in the PMDB that refer to the selected index, within the selected time period.

                                          ...

                                            • Statement Not Access the

                                          ...

                                            • Object. Indicates the total number of statements that were explained successfully in the PMDB that do not refer to the selected index, within the selected time period.

                                          ...

                                            • Statements Not Explained

                                          ...

                                            • Yet. Indicates the total number of statements in the PMDB that were not yet explained, within the selected time period.

                                          ...

                                            • Statements Explained Unsuccessfully. Indicates the total number of statements in the

                                          ...

                                            • PMDB that were explained unsuccessfully, within the selected time period.
                                          • Table

                                          ...

                                          • Profile. Displays a breakdown, by statement type, of the number of statements that referred to the specified table (SELECT, INSERT, UPDATE, DELETE); for example, 100 statements performed SELECT on the specified table. The In MS-SQL counters (Using CPU and I/O Wait) are also displayed.

                                          About viewing common access patterns for indexes (SQL Server 2005 only)

                                          The Common Access Patterns view displays information that indicates to what extent an index was used. The following information is displayed:

                                          • User

                                          ...

                                          • Operations. Displays the number of user seeks, scans, lookups or updates.
                                          • System

                                          ...

                                          • Operations. Displays the number of system seeks, scans, lookups or updates.
                                          • User vs. System

                                          ...

                                          • Operations. Graph comparing user operations to system operations, over the selected time period.
                                          • Last User or System Seek, Lookups, Scans or Updates

                                          ...

                                          • . Displays when the last user or system seek, lookup, scan or update operation occurred.

                                          About viewing operational statistics

                                          The Operational Statistics view displays information that indicates whether or not the index on a table is being used. The following graphs are displayed:■    Range

                                          • Range scan vs. Singleton lookups

                                          ...

                                          • Physical I/O operations

                                          ...

                                          • Locking and Latching contentions

                                          ...

                                          • Locking and Latching contention waits

                                          About the Index and Unused Index entities Association area

                                          You can view general details on the entities associated with the selected Index entity in the Association area. It is possible to associate to the Index entity from the following entities: Database, Table, Column, View, User, File Group, Physical Disk, Logical Volume, HP Storage Device, HDS Storage Device, Statement and Batch.

                                          The following additional information is available for SQL Server 2005 and later objects:Partitions    Indicates

                                          • Partitions. Indicates the number of partitions defined for the selected index.
                                          • Index

                                          ...

                                          • Partitioned. Indicates whether or not the index is partitioned.
                                          • Partition

                                          ...

                                          • Schema. Indicates under which file groups to map the partition.
                                          • Partition

                                          ...

                                          • Function. Displays the name of the function that defines how the index should be partitioned.
                                          • Index

                                          ...

                                          • Aligned. Indicates whether or not the index is aligned with its table.
                                          • Number of Non-key

                                          ...

                                          • Columns. Displays the number of non-key columns used within an index.
                                          • Index Non-Key

                                          ...

                                          • Columns. Displays the non-key column names.

                                          Anchor
                                          AboutthePartitionentitySQLServer2005only
                                          AboutthePartitionentitySQLServer2005only
                                          About the Partition entity (SQL Server 2005 only)

                                          The Partition entity displays information on how an index or table is partitioned. All tables and indexes in a database are considered to be partitioned , in SQL Server 2005, even if they are made up of only one partition. The data of partitioned tables and indexes is divided into units that can be spread across more than one file group in a database. The data is partitioned horizontally, so that groups of rows are mapped into individual partitions.

                                          The following view is available:■    Overview

                                          • Overview

                                          About getting an overview of an index or table that is partitioned

                                          The Overview displays general details on the selected index or table, as follows:Properties    The

                                          • Properties. The following information is displayed for each partition:

                                          ...


                                            • Object. Name of the object being partitioned.

                                              ■    Partition

                                            • Partition. Displays the partitions id.

                                              ■    Filigreed

                                            • Filigreed. Indicates where the data related to a partition is stored.

                                              ■    Rows

                                            • Rows. Displays the number of rows per partition.

                                          ...

                                            • Max Value

                                          ...

                                            • . Indicates the upper value of a partition.

                                          ...

                                            • Min Value

                                          ...

                                            • . Indicates the lower value of a partition.

                                          ...

                                            • Upper Boundary

                                          ...

                                            • . Indicates whether data falling on the maximum value will be assigned to the next partition or to the same partition—yes will assign it to the next partition; no to the same partition it falls in.
                                          • Space

                                          ...

                                          • Allocation. Displays the amount of space utilized by the partitions.

                                          ...

                                          • Rows. Displays the number of rows in a partition, over the selected time period.

                                          About the Partitions entity Association area

                                          You can view general details on the entities that are associated with the selected Partition entity in the Association area. It is possible to associate to the Partition entity from an Index or Table entity.About

                                          Anchor
                                          AbouttheColumnentity
                                          AbouttheColumnentity
                                          About the Column entity

                                          The Column entity displays general details and schema changes for the selected column. The following views are available:■    Overview

                                          • Overview

                                          ...

                                          • Schema Changes

                                          About getting an overview of a selected column

                                          The Overview displays general details on the selected column such as type, length, and default value.

                                          About viewing schema changes made on a selected column

                                          The Schema Changes view shows a table that summarizes the schema changes made on the selected column, such as, if the column length has changed.

                                          The following column information is monitored by the schema change process:■    Name

                                          • Name

                                          ...

                                          • Length

                                          ...

                                          • Precision

                                          ...

                                          • Type

                                          ...

                                          • Scale

                                          ...

                                          • Is Nullable

                                          About the Column entity Association area

                                          You can view general details on the entities that are associated with the selected Column entity in the Association area. It is possible to associate to the Column entity from the Table, Index, and View entities.

                                          SQL Server 2005 allows you to extend the functionality of non-clustered indexes by adding non-key columns to the leaf level of the non-clustered index. This allows you to create non-clustered indexes that cover more queries, thereby considerably improving query performance. The Non-Key Column field (displayed for SQL Server 2005 non-clustered indexes only), indicates whether or not the selected column is a non-key column.

                                          Anchor
                                          AbouttheViewandViewcontainSameColumnentities
                                          AbouttheViewandViewcontainSameColumnentities
                                          About the View and View Contain Same Column entities

                                          The View entity displays general details and schema changes for the selected view.

                                          ...

                                          The following views are available:■    Overview

                                          • Overview

                                          ...

                                          • Change Log Summary

                                          ...

                                          • Change Log Detailed

                                          About getting an overview of the View and View Contain Same Column entities

                                          The Overview displays general details on the view such as creation date, number of columns and displays the view text.

                                          About viewing the Change Log Summary of the selected view and its indexes

                                          The Change Log Summary displays schema changes made in the selected view and its indexes, as follows:

                                          • Change Log Summary

                                          ...

                                          • Table. The following information is displayed:
                                            • Sample

                                          ...

                                            • Date. The estimated last change date of the view (or/and its sub-objects). This value reflects the date that the change was first identified by the Precise for SQL Server Schema Changes Process, not the date that the object was changed.
                                            • Object

                                          ...

                                            • Type. Indicates whether the object type is a View or Index. Object—displays the name of the View Index.
                                            • Change

                                          ...

                                            • Type. Indicates the type of change detected. The following change types are reported:

                                              ...

                                                  • Created. Indicates that the index was created

                                              ...

                                                  • Dropped. Indicates that the index was dropped

                                              ...

                                                  • Change in Structure.
                                                    • View

                                              ...

                                                    • . Indicates any change that was made to the view's column(s).
                                                    • Index

                                              ...

                                                    • . Indicates any change that was made to the index keys of the index or to the index depth.

                                              ...

                                                  • Change in Properties.
                                                    • View

                                              ...

                                                    • . Indicates any change that was made to one of the following view's properties: Name and Owner.
                                                    • Index

                                              ...

                                                    • . Indicates any change that was made to one of the following index's properties: File Group, Fill Factor, Is Auto Statistics, Is Clustered Index, Is Pad Index, Is Page Lock Disallowed and Is Row Lock Disallowed.
                                              • Schema

                                              ...

                                              • Changes. Displays an overtime graph that indicates whether changes were made to the selected view and its indexes or columns, broken down into the following groups:

                                                  ...

                                                    • View Change in

                                                  ...

                                                    • Property. Indicates any change made to the view properties. For example, whether the view was renamed.

                                                  ...

                                                    • View Change in

                                                  ...

                                                    • Structure. Indicates any change made to the view structure. For example, whether a new column was added to the view.

                                                  ...

                                                    • Index Change in

                                                  ...

                                                    • Property. Indicates any change made to one of the view's index properties, such as, the index was changed from clustered to non-clustered.

                                                  ...

                                                    • Index Change in

                                                  ...

                                                    • Structure. Indicates any change made to the index structure, for example, whether a new key was added to the index.

                                                  ...

                                                    • Index Created/

                                                  ...

                                                    • Dropped. Indicates any addition or deletion of indexes.

                                                  About viewing Change Log Details

                                                  The Change Log Detailed view displays the schema changes made on the selected view and/or its sub-objects.

                                                  About the View and View Contain Same Column entities Association area

                                                  You can display general details on the entities that can be associated with the selected View entity in the Association area. It is possible to associate to the View entity from the Database, Table, Column and Index entities.

                                                  Anchor
                                                  AbouttheUserentity
                                                  AbouttheUserentity
                                                  About the User entity

                                                  The User entity displays general details of the selected user, such as, Roles and Database Access.

                                                  About the User entity Association area

                                                  You can view general details on the entities that can be associated to the selected User entity in the Association area. It is possible to associate to the User entity from the Database entity.

                                                  Anchor
                                                  AbouttheLogicalFileentity
                                                  AbouttheLogicalFileentity
                                                  About the Logical File entity

                                                  The Logical File entity displays general details, I/O activity and storage information on the selected database file.

                                                  The following views are available:■    Overview

                                                  • Overview

                                                  ...

                                                  • Statistics

                                                  About getting an overview of the Logical File entity

                                                  The Overview displays general details on the Logical File, as follows:Properties    Displays

                                                  • Properties. Displays general details on the Logical File such as full filename (including path), file group, and file growth.
                                                  • I/O

                                                  ...

                                                  • Wait. Displays the I/O wait for the selected Logical File, over the selected time period, as collected by the Collect DB File Statistics process.
                                                  • I/O Read

                                                  ...

                                                  • Wait. Displays the I/O read wait for the selected Logical File, over the selected time period, as collected by the Collect DB File Statistics process.
                                                  • I/O Write

                                                  ...

                                                  • Wait. Displays the I/O write wait for the selected Logical File, over the selected time period, as collected by the Collect DB File Statistics process.
                                                  • Bytes

                                                  ...

                                                  • Requested. Displays the I/O activity (bytes read and written) over the selected time period, for the selected Logical File, as collected by the Collect DB File Statistics process.

                                                  ...

                                                  • Requests. Displays the I/O activity (number of read/writes) over the selected time period, for the selected Logical File, as collected by the Collect DB File Statistics process.
                                                  • Space

                                                  ...

                                                  • Allocation. Displays free space and used space (in MB) over the selected time period, for the selected logical file, as collected by the Collect Space Utilization process.

                                                  About viewing I/O statistics on a Logical File

                                                  The Statistics view displays I/O statistics on the Logical File over the selected time period, as follows:

                                                  • I/O

                                                  ...

                                                  • Wait. Displays the I/O wait for the selected Logical File, over the selected time period, as collected by the Collect DB File Statistics process.
                                                  • Bytes

                                                  ...

                                                  • Requested. Displays the I/O activity (bytes read and written) over the selected time period, for the selected Logical File, as collected by the Collect DB File Statistics process.

                                                  ...

                                                  • Requests. Displays the I/O activity (number of read/writes) over the selected time period, for the selected Logical File, as collected by the Collect DB File Statistics process.

                                                  About the Logical File entity Association area

                                                  You can view general details on the entities associated to the Logical File entity in the Overview tab in the Association area. The Statistics tab shows information on I/O wait, bytes requested, number of requests, and size of logical files. It is possible to associate to the Logical File entity from the following entities: Instance, Database, File Group, Physical Disk, Logical Volume, HP Storage Device, HDS Storage Device, Symmetrix Storage Device and Clariion Storage Device.

                                                  Anchor
                                                  AbouttheFileGroupentity
                                                  AbouttheFileGroupentity
                                                  About the File Group entity

                                                  The File Group entity displays general details and space utilization, over the selected time period, for the selected file group.

                                                  About the Overview

                                                  The Overview displays general File Group details such as whether the file group is read-only and information regarding the file group's space utilization, over the selected time period, as follows:Properties    Displays

                                                  • Properties. Displays general File Group details such as whether the file group is read only, or whether this is the default file group.

                                                  ...

                                                  • Storage. Displays the amount of free space and used space of the selected file group, over the selected time period, based on the data collected by the Collect Space Utilization process.

                                                  About the File Group entity Association area

                                                  You can view general details on the entities that are associated to the selected File Group in the Association area. It is possible to associate to the File Group from the following entities: Database, Table, Index, Logical File, Physical Disk, Logical Volume, HP Storage Device and HDS Storage Device.

                                                  Anchor
                                                  AbouttheStatisticsentity
                                                  AbouttheStatisticsentity
                                                  About the Statistics entity

                                                  The statistic entity displays distribution statistics on the selected collection (set of columns). The following views are available:■    Overview

                                                  • Overview

                                                  ...

                                                  • Statistics

                                                  About getting an overview of the selected statistic

                                                  The Overview displays general details of the selected Statistic such as keys and an indication when the statistics were last calculated.

                                                  About viewing distribution statistics

                                                  The Statistics view displays distribution statistics for the selected statistic. see “About See About viewing distribution statistics for a selected index” on page 120index.

                                                  About the Statistics entity Association area

                                                  You can view general details on the selected Statistics entity in the Association area. It is possible to associate to the Statistics entity from the Table and Column entities.

                                                  Anchor
                                                  AbouttheStoredProcedureentity
                                                  AbouttheStoredProcedureentity
                                                  About the Stored Procedure entity

                                                  The stored procedure entity displays general details and resource consumption of the selected stored procedure. The following views are available:■    Overview

                                                  • Overview

                                                  ...

                                                  • Text

                                                  About getting an overview of a stored procedure

                                                  The Overview displays general properties of the stored procedure, provides resource consumption information, in addition to the number of times the selected stored procedure's statements were executed, based on the data collected by the Precise for SQL Server Collector for the selected time period.

                                                  The following information is displayed:Properties    Displays

                                                  • Properties. Displays general details of the stored procedure such as whether the stored procedure is an extended procedure, and whether the stored procedure was created during installation.
                                                  • In MS-

                                                  ...

                                                  • SQL. Displays the resource consumption of the selected stored procedure, based on the data collected by the Precise for SQL Server Collector for the selected time period.

                                                  ...

                                                  • Attributes. Displays selected attributes that exist for each stored procedure, such as if the stored procedure has the flag Anis Null On set to On or Off.
                                                  • Statement

                                                  ...

                                                  • Execution. Displays the number of times the selected stored procedure's statements were executed, based on the data collected by the Precise for SQL Server Collector for the selected time period.

                                                  About viewing the text of a stored procedure

                                                  The Text view displays the stored procedure's text.

                                                  About the Stored Procedure entity Association area

                                                  You can view general details on the entities associated with the selected Stored Procedure entity in the Association area. It is possible to associate to the Stored Procedure entity from the Database, Table, View, User, Stored Procedure and Function entities.

                                                  Anchor
                                                  AbouttheFunctionentity
                                                  AbouttheFunctionentity
                                                  About the Function entity

                                                  The function entity displays general details and resource consumption of the selected function. The following views are available:■    Overview

                                                  • Overview

                                                  ...

                                                  • Text

                                                  About getting an overview of the Function entity

                                                  The Overview displays general details of Function entity, as follows:Properties    Displays

                                                  • Properties. Displays general properties of the function, such as type of function (inline, scalar, etc.), and whether or not the function was created during installation.
                                                  • In MS-

                                                  ...

                                                  • SQL. Displays the resource consumption of the selected function, based on the data collected by the Precise for SQL Server Collector for the selected time period.

                                                  ...

                                                  • Attributes. Displays selected attributes that exist for each stored procedure, such as if the stored procedure has the

                                                  ...

                                                  • flag Anis Null On set to On or Off.
                                                  • Statement

                                                  ...

                                                  • Executions. Displays the number of executions of the selected function's statements, based on the data collected by the Precise for SQL Server Collector for the selected time period.

                                                  About viewing the text of a function

                                                  The Text view displays the text of the function.

                                                  About the Function entity Association area

                                                  You can view general details on the entities associated with the selected Function entity in the Association area. It is possible to associate to the Function entity from the Database, Table, View, User, Stored Procedure and Function entities.

                                                  Anchor
                                                  AbouttheTriggerentity
                                                  AbouttheTriggerentity
                                                  About the Trigger entity

                                                  The trigger entity displays general details and resource consumption of the selected trigger. The following views are available:■    Overview

                                                  • Overview

                                                  ...

                                                  • Text

                                                  About getting an overview of general trigger properties

                                                  The following information is displayed in the Overview:Trigger    Displays

                                                  • Trigger. Displays general trigger properties such as trigger name, and the name of the table on which the trigger is defined, and whether this is the first trigger fired when data is deleted from a table.
                                                  • In MS-

                                                  ...

                                                  • SQL. Displays resource consumption of the selected trigger, over a selected time period, based on the data on trigger statements collected by the Precise for SQL Server Collector.

                                                  ...

                                                  • Attributes. Displays selected attributes that exist for each stored procedure, such as if the stored procedure has the

                                                  ...

                                                  • flag Anis Null On set to On or Off.
                                                  • Statement

                                                  ...

                                                  • Executions. Displays the number of times the selected trigger's statements were executed, based on the data collected by the Precise for SQL Server Collector for the selected time period.

                                                  About viewing the text of a trigger

                                                  The Text view displays the text of the trigger.

                                                  About the Trigger entity Association area

                                                  You can view general details on the entities associated with the selected Trigger entity in the Association area. It is possible to associate to the Trigger entity from the Database, Table, View and User entities.

                                                  Anchor
                                                  AbouttheStatemententity
                                                  AbouttheStatemententity
                                                  About the Statement entity

                                                  The Statement entity displays access plan details and resource consumption for the selected statement. The following views are available:■    Overview

                                                  • Overview

                                                  ...

                                                  • Performance

                                                  ...

                                                  • SQL Text

                                                  About getting an overview of a statement

                                                  The Overview displays general details about the statement, along with details regarding its last access plan, as follows:Statement    Displays

                                                  • Statement. Displays general statement details such as statement ID, database and parsing user.
                                                  • Access

                                                  ...

                                                  • Plan. Provides details regarding to the last access plan of the statement, such as whether a table scan, index seek and index scan was performed.

                                                  About viewing the performance of a selected statement

                                                  The Performance view displays resource consumption information on the selected statement, as follows:

                                                  • In MS-

                                                  ...

                                                  • SQL. Displays resource consumption information for the selected statement, over the selected time period.
                                                  • Statement

                                                  ...

                                                  • Executions. Displays the number of statement executions carried out over the selected time period.

                                                  About viewing the SQL text of a selected SQL statement

                                                  The SQL Text view displays the text of the selected SQL statement.

                                                  About the Statement entity Association area

                                                  You can view general details on the entities associated with the selected Statement entity in the Association area. It is possible to associate to the Statement entity from the Table and Index entities.

                                                  The following tabs are available provide additional information in the Association area:Performance    Provides

                                                  • Performance. Provides general details and resource consumption of the statement.

                                                  ...

                                                  • Plan. Displays details on the last access plan of the statement such as whether a Table Scan was used, and whether an Index Seek was.

                                                  Anchor
                                                  AbouttheBatchentity
                                                  AbouttheBatchentity
                                                  About the Batch entity

                                                  The Batch entity displays access plan details and resource consumption for the selected batch. The following views are available:■    Overview

                                                  • Overview

                                                  ...

                                                  • Performance

                                                  ...

                                                  • SQL Text

                                                  About getting a general overview of batch details

                                                  The Overview displays general batch details such as last show plan and most recent plan, in addition to details regarding the selected batch's last access plan, as follows:Batch    Displays

                                                  • Batch. Displays general details of the batch such as database and parsing user.
                                                  • Access

                                                  ...

                                                  • Plan. Displays details on the last access plan of the batch such as, whether a table scan or index scan was performed.

                                                  About viewing the performance of a batch

                                                  The Performance view displays resource consumption and number of statement executions for a statement, as follows:

                                                  • In MS-

                                                  ...

                                                  • SQL. Displays resource consumption information for the selected statement, over the selected time period.
                                                  • Statement

                                                  ...

                                                  • Executions. Displays the number of statement executions carried out over the selected time period.

                                                  About viewing the SQL text of a batch

                                                  The SQL Text view displays the batch's text.

                                                  About the Batch entity Association area

                                                  You can view general details on the entities associated with the selected Batch entity in the Association area. It is possible to associate to the Batch entity from the Table and Index entities.

                                                  The following tabs are available in the Association area:Performance    Displays

                                                  • Performance. Displays general details and resource consumption for the selected batch.

                                                  ...

                                                  • Plan. Displays details on the last access plan of the selected batch such as whether a table scan or index seek was used.

                                                  Anchor
                                                  AboutthePhysicalDiskentity
                                                  AboutthePhysicalDiskentity
                                                  About the Physical Disk entity

                                                  The Physical Disk entity displays general details and I/O wait data for the selected physical disk.

                                                  About getting an overview of general physical disk details

                                                  The Overview displays general physical disk details along with I/O wait data for the selected physical disk, as follows:Properties    Displays

                                                  • Properties. Displays general physical disk details such as type, and number of logical volumes.
                                                  • I/O

                                                  ...

                                                  • Wait. Displays the I/O wait on the selected physical disk as collected by Precise for SQL Server Collector over the specified time period.

                                                  About the Physical Disk entity Association area

                                                  You can view general details on the entities associated with the selected Physical Disk entity in the Association area. It is possible to associate to the Physical Disk entity from the following entities: Database, Table, Index, Logical File, File Group, Logical Volume, Disk Partition, HP Storage Device and HDS Storage Device.

                                                  Anchor
                                                  AbouttheLogicalVolumeentity
                                                  AbouttheLogicalVolumeentity
                                                  About the Logical Volume entity

                                                  The Logical Volume entity displays general details and storage utilization for the selected logical volume.

                                                  About getting an overview of logical volume details

                                                  The Overview displays general logical volume details, in addition to the free space and used space of the selected logical volume, as collected by the Collect Space Utilization process over the specified time period, as follows:Properties    Displays

                                                  • Properties. Displays general details of the logical volume such as type, and number of Logical files stored in the logical volume.

                                                  ...

                                                  • Storage. Displays the free space and used space of the selected logical volume as collected by the Collect Space Utilization process over the specified time period.

                                                  About the Logical Volume entity Association area

                                                  You can view general details on the entities associated to the selected Logical Volume entity in the Association area. It is possible to associate to the Logical Volume entity from the following entities: database, table, index, logical file, file group, physical disk, disk partition, HP storage device and HDS storage device.

                                                  Anchor
                                                  AbouttheDiskPartitionentity
                                                  AbouttheDiskPartitionentity
                                                  About the Disk Partition entity

                                                  The Disk Partition entity displays general details for the selected disk partition, such as disk partition number in physical disk and disk partition number in logical volume, disk partition offset and length.

                                                  About the Disk Partition entity Association area

                                                  You can view general details on the entities associated to the selected Disk Partition entity in the Association area. It is possible to associate to the Disk Partition entity from the Physical Disk, Logical Volume, HP Storage Device and HDS Storage Device entities.

                                                  Anchor
                                                  AbouttheStorageUnitentity
                                                  AbouttheStorageUnitentity
                                                  About the Storage Unit entity

                                                  The Storage Unit entity displays a list of all storage entities connected to instances in the Tier. The Storage Unit entity can only be associated to from the Instance level.

                                                  For more information about the Storage Device entity, see “About About Storage Unit entities” on page 137entities.

                                                  About the Storage Unit entity Association area

                                                  You can view general details on the entities associated to the selected Storage Units in the Association area. This information is based on the mapping carried out by the Precise for SQL Server Storage agents that are installed.

                                                  ...

                                                  The following section describes a few examples on how you can use the Objects tab to identify performance problems.■    Analyzing

                                                  ...

                                                  ...

                                                  ...

                                                  ...

                                                  ...

                                                  ...

                                                  Anchor
                                                  Analyzinghowconfigurationchangesaffectresourceconsumption
                                                  Analyzinghowconfigurationchangesaffectresourceconsumption
                                                  Analyzing how configuration changes affect resource consumption

                                                  Changing an instance configuration parameter (or database parameter) may affect the performance of your system. Precise for SQL Server allows you to track the configuration changes and compare them with the resource consumption of your application, over time. This can be done by examining the Instance/Database Changes view in the Instance entity. The Instance/Database Changes view allows you to compare the changes made to the instance configuration parameters and the database options, with the resource consumption of the entire instance, over a selected time period. In this way you can pinpoint the changes that affect the resource consumption of the entire database.

                                                  ...

                                                  1. In the Time Frame list, choose the period of time you want to analyze.
                                                  2. In the Instance list, choose the item you want to analyze.
                                                  3. On the View controls in the Main area, click Instance/Database Changes. Compare the changes made to the instance configuration parameters and the database options, with the resource consumption of the entire instance, over the selected time period. This allows you to pinpoint the changes that affect the resource consumption of the entire database.
                                                  4. On the Association controls in the Association area, click Databases.
                                                  5. Compare the changes made to the instance configuration parameters and the database options, with the resource consumption of the entire instance, over the selected time period. This allows you to pinpoint the changes that affect the resource consumption of the entire database.
                                                  6. On the View controls in the Main area, click Database Created/Dropped. Analyze how changes to database options affect In MS-SQL resource consumption.

                                                  Anchor
                                                  Analyzinghowschemachangesaffecttheresourceconsumptionofvariousentities
                                                  Analyzinghowschemachangesaffecttheresourceconsumptionofvariousentities
                                                  Analyzing how schema changes affect the resource consumption of various entities

                                                  Changing the database schema may affect the performance of your system. These changes are done to improve the performance of your application. You need to monitor them to ensure that you have achieved your goals. Precise for

                                                  SQL Server allows you track the schema changes and compare them with the resource consumption of the entire database or a table. This allows you to detect changes that affect the resource consumption of the database. The Object Changes view of the Database entity allows you to check the database objects that where changed, dropped or created in reference to the resource consumption of the entire database over time. A summary of the schema changes is displayed. Drilling down to the specific object provides detailed information on the schema changes.

                                                  See “About About the Database entity” on page 60entity.

                                                  To analyze how schema changes affect the resource consumption of various entities

                                                  1. In the Time Frame list, choose the period of time you want to analyze.
                                                  2. In the Instance list, choose the item you want to analyze.
                                                  3. On the Association controls in the Association area, click Databases. Drill down to the database you want to analyze.
                                                  4. On the View controls in the Main area, click Object Changes. Check the database objects that where changed, dropped or created in reference to the resource consumption of the entire database over time and determine if they affect In MS-SQL resource consumption.
                                                  5. Drill down to a specific table entity. On the View controls in the Main area, click Change Log Detailed and view detailed information on the changes made to the table's schema.

                                                  Anchor
                                                  Examininganobjectsspaceusageovertime
                                                  Examininganobjectsspaceusageovertime
                                                  Examining an object's space usage over time

                                                  Space usage information, collected by the Collect Space Utilization process, allows you to examine the space allocated versus the space used, in a table and index. This enables you to easily keep track of object growth over time and decide how to spread database files over various disks and how to connect objects to file groups in the specified database.

                                                  ...

                                                  1. In the Time Frame list, choose the period of time you want to analyze.
                                                  2. In the Instance list, choose the item you want to analyze.
                                                  3. On the Association controls in the Association area, click Databases. Drill down to the database you want to analyze.
                                                  4. Drill down to a specific table entity. On the View controls in the Main area, click Overview.
                                                  5. In the Main area, analyze the Space over Time graph to determine how tablespace has been utilized over time.
                                                  Info

                                                  ...

                                                  The values might be incorrect due to out-of-date space usage information. To update the values, use the DBCC UPDATEUSAGE command to recalculate the space usage fields. For more information, see SQL Server Books Online for DBCC UPDATE USAGE.


                                                  Anchor
                                                  Examiningfragmentationoftabledataandindexes
                                                  Examiningfragmentationoftabledataandindexes
                                                  Examining fragmentation of table data and indexes

                                                  Fragmentation of table data and indexes may affect the performance of your system. The fragmentation occurs as a result of data modification (INSERT, UPDATE, and DELETE statements) performed on the table. Fragmentation increases the amount of page reads performed by the query, increasing their resource consumption.

                                                  ...

                                                  1. In the Time Frame list, choose the period of time you want to analyze.
                                                  2. In the Instance list, choose the item you want to analyze.
                                                  3. On the Association controls in the Association area, click Databases. Drill down to the database you want to analyze.
                                                  4. On the Association controls in the Association area, click Tables or Indexes. Drill down to a specific table or index entity (depending upon your selection).
                                                  5. On the View controls in the Main area, click Show Contig and analyze the fragmentation information displayed for the selected table or index. Determine whether the table or index is heavily fragmented and needs to be reorganized.

                                                  See “About About viewing data storage and fragmentation information in the Show Contig view” on page 114 and “About view and About viewing data storage and fragmentation information of a selected index in the Show Contig view” on page 118.view.

                                                  Anchor
                                                  Examiningaccessmethodstotablesandindexes
                                                  Examiningaccessmethodstotablesandindexes
                                                  Examining access methods to tables and indexes

                                                  Examining the access methods used on tables and indexes can help you make decisions regarding the types of indexes you should employ. For example if most of the statements accessing the specified table are of type update (INSERT, UPDATE, DELETE) and only a few are of type SELECT you should add as few indexes as possible to efficiently access data, on the one hand, and avoid overhead when performing updates, on the other hand. Also if you observe an increase in I/O wait you should consider rewriting the statements using the specified table or index, making sure you implement appropriate indexes and reorganize any table data and indexes that may suffer from fragmentation.

                                                  ...

                                                  1. In the Time Frame list, choose the period of time you want to analyze.
                                                  2. In the Instance list, choose the item you want to analyze.
                                                  3. On the Association controls in the Association area, click Databases. Drill down to the database you want to analyze.
                                                  4. On the Association controls in the Association area, click Tables or Indexes. Drill down to a specific table or index entity (depending upon your selection).
                                                  5. On the View controls in the Main area, click Usage Report to observe information on the access methods used on the table or index.

                                                  See “About About viewing usage information and access methods in the Usage Report” on page 116 and “About Report and About viewing a usage report” on page 121.report.

                                                  Anchor
                                                  Examiningthedistributionstatisticsofindexes
                                                  Examiningthedistributionstatisticsofindexes
                                                  Examining the distribution statistics of indexes

                                                  Distribution statistics of an index can help you determine whether or not the index is useful to the query optimizer. The information displayed in the Statistics view of the Index entity indicates the selectivity of an index; the more selective an index is, the more useful it is, since this means more rows can be eliminated from consideration.

                                                  See “About About viewing distribution statistics for a selected index” on page 120index.

                                                  To examine the distribution statistics of indexes

                                                  1. In the Time Frame list, choose the period of time you want to analyze.
                                                  2. In the Instance list, choose the item you want to analyze.
                                                  3. On the Association controls in the Association area, click Databases. Drill down to the database you want to analyze.
                                                  4. On the Association controls in the Association area, click Indexes. Drill down to a specific index.
                                                  5. On the View controls in the Main area, click Statistics and observe the distribution statistics for the selected index in the Distribution table.

                                                  Anchor
                                                  Determiningwhethertorecommendanindexforatable
                                                  Determiningwhethertorecommendanindexforatable
                                                  Determining whether to recommend an index for a table

                                                  The decision to add a specific index to a table is complex. The index can improve one statement and may negatively affect another. Therefore, before adding an index, you should examine every statement accessing the table to see how the new index will impact it.

                                                  ...

                                                  1. In the Time Frame list, choose the period of time you want to analyze.
                                                  2. In the Instance list, choose the item you want to analyze.
                                                  3. On the Association controls in the Association area, click Databases. Drill down to the database you want to analyze.
                                                  4. On the Association controls in the Association area, click Tables. Drill down to the table you want to analyze.
                                                  5. On the Recommend tab, analyze the statements that are associated with the selected table and observe their resource consumption.

                                                  The Recommend Indexes output shows a list of recommended indexes and statistics. For each recommended item, detailed information is displayed in the Details area, such as a list of key columns and the DDL of the Create Index or Statistics text.

                                                   

                                                  Precise. Performance intelligence from click to storage. Learn more > >

                                                  ...


                                                  Scroll Ignore
                                                  scroll-pdftrue
                                                  scroll-officetrue
                                                  scroll-chmtrue
                                                  scroll-docbooktrue
                                                  scroll-eclipsehelptrue
                                                  scroll-epubtrue
                                                  scroll-htmltrue
                                                  Newtabfooter
                                                  aliasIDERA
                                                  urlhttp://www.idera.com
                                                   | 
                                                  Newtabfooter
                                                  aliasProducts
                                                  urlhttps://www.idera.com/productssolutions/sqlserver
                                                   
                                                  Newtabfooter
                                                  aliasPurchase
                                                  urlhttps://www.idera.com/buynow/onlinestore
                                                   | 
                                                  Newtabfooter
                                                  aliasSupport
                                                  urlhttps://idera.secure.force.com/precise/
                                                   | 
                                                  Newtabfooter
                                                  aliasCommunity
                                                  urlhttp://community.idera.com
                                                   
                                                  |
                                                   
                                                  Newtabfooter
                                                  aliasResources
                                                  urlhttp://www.idera.com/resourcecentral
                                                   | 
                                                  Newtabfooter
                                                  aliasAbout Us
                                                  urlhttp://www.idera.com/about/aboutus
                                                   
                                                  Newtabfooter
                                                  aliasLegal
                                                  urlhttps://www.idera.com/legal/termsofuse

                                                  ...