You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 14 Next »

PW_PWII_INSTANCE_ID

Defines the instances in the Precise installation.

Column NameColumn Description
PWII_ID ID of the instance. Columns of XXXX_PWII_INSTANCE_ID have values from the column.
PWII_INSTANCE_NAMEName of the instance.
PWII_TECHNOLOGYTwo characters defining the technology of the instance (such as OR for Oracle and JE for J2EE).
PWII_SERVERName of the server on which the instance is installed.

PW_SQDL_INST_DB_DEFINITION_LOG

Tracks changes on instance/database definitions. It contains a list of all changes that occur in the instance/database definition.

Column NameColumn Description
SQDL_PWII_INSTANCE_IDID of the SQL Server instance.
SQDL_DATABASE_NAMEName of the database in which the change occurred.
SQDL_OLD_VALUEOld value, before the change.
SQDL_NEW_VALUENew value, after the change.
SQDL_CHANGE_TYPEType of the performed change (Created, Dropped, Updated).
SQDL_DATA_CHANGEDProperty that was changed.
SQDL_SAMPLE_DATEDate and time when the schema changes process ran. The actual change date is prior to the sample date and after the previous sample date.

PW_SQCL_SCHEMA_CHANGES_LOG

Contains a list of all changes that occur in the object’s index, key, and column definitions.

Column NameColumn Description
SQCL_PWIIID of the SQL Server instance.
SQCL_DATABASE_IDInternal ID of the database.
SQCL_OBJECT_IDID of the object, column, or index that was changed, depending on the type of the object that was changed.
SQCL_OBJECT_TYPEType of the object that was changed.
SQCL_OBJECT_NAMEName of the object that was changed.
SQCL_OBJECT_OWNEROwner of the object that was changed.
SQCL_PARENT_OBJECT_IDID of the parent object that was changed. For example, if an index was changed, the parent object ID is the table ID.
SQCL_PARENT_OBJECT_NAMEName of the parent object name that was changed. For example: If an index was changed, the parent object name is the table name.
SQCL_PARENT_OBJECT_OWNEROwner of the parent object owner that was changed. For example: If an index was changed, the parent object owner is the table owner.
SQCL_INDEX_IDID of the index that was changed. Relevant only for index key changes.
SQCL_INDEX_NAMEName of the index that was changed. Relevant only for index key changes.
SQCL_OLD_VALUEOld value (before the change).
SQCL_NEW_VALUENew value (after the change).
SQCL_CHANGE_TYPEType of the performed change (Created, Dropped, Updated).
SQCL_DATA_CHANGEDName of the property that was changed.
SQCL_SAMPLE_DATE

Date and time when the schema changes process run.

PW_SQID_SCHEMA_CHANGES_INST

Stores snapshots of the instances’ properties. Every time the schema change process runs, the current values are compared to the values in this table. All changes are stored in the log table, and this table is refreshed with the latest snapshots.

Column NameColumn Description
SQID_PWII_INSTANCE_IDID of the SQL Server instance.
SQID_CONFIG_OPTION_IDID of the instance property, as appearing in sp_configure.
SQID_CONFIG_OPTION_NAMEName of the instance property, as appearing in sp_configure.
SQID_CONFIG_OPTION_VALUEValue of the instance property.

PW_SQCO_SCHEMA_CHANGES_OBJECTS

Stores snapshots of the instance objects’ properties. The object can be a table or a stored object such as a view, trigger, user-defined function, or stored procedure. Every time the schema change process runs, the current values are compared to the values in this table. All changes are stored in the log table, and this table is refreshed with the latest snapshots.

Column NameColumn Description
SQCO_PWII_INSTANCE_IDID of the SQL Server instance.
SQCO_DATABASE_IDInternal ID of the database.
SQCO_OBJECT_IDID of the object that was changed.
SQCO_NAMEName of the object that was changed.
SQCO_OWNEROwner of the object that was changed.
SQCO_TYPEType of the object that was changed. See sysobjects documentation for a list of all available types.
SQCO_CREATE_DATECreation date of the object.
SQCO_FILE_GROUPFile group in which the object resides. Relevant only for tables.
SQCO_NUM_OF_COLUMNNumber of columns in the object.
SQCO_EXEC_IS_ANSI_NULL_ONValue of the object’s Ansi Null property. Relevant only for stored objects.
SQCO_TABLE_HAS_INDEXTRUE if the table has an index, FALSE if the table does not have an indexes.
SQCO_TABLE_HAS_CLUSTERED_INDEXTRUE if the table has a clustered index, FALSE if the table does not have a clustered index.
SQCO_DELETE_TRIGGER_COUNTNumber of delete triggers on the table.
SQCO_INSERT_TRIGGER_COUNTNumber of insert triggers on the table.
SQCO_UPDATE_TRIGGER_COUNTNumber of update triggers on the table.
SQCO_NUM_OF_PARTITIONSNumber of partitions per object.

PW_SQCK_SCHEMA_CHANGES_INDXKEY

Stores snapshots of the index keys. Every time the schema change process runs, the current values are compared to the values in this table. All changes are stored in the log table, and this table is refreshed with the latest snapshots.

Column NameColumn Description
SQCK_PWII_INSTANCE_IDID of the SQL Server instance.
SQCK_DATABASE_IDInternal ID of the database.
SQCK_OBJECT_IDID of the object on which the index is defined.
SQCK_INDEX_IDID of the index.
SQCK_COLUMN_IDID of the column.
SQCK_COLUMN_NAMEName of the column key.
SQCK_INDEX_NAMEName of the index.
SQCK_OBJECT_NAMEName of the table.
SQCK_OBJECT_OWNEROwner of the table.
SQCK_POSITIONPosition of the key in the index.
SQCK_ORDER_BYSorting of the key in the index.

PW_SQCI_SCHEMA_CHANGES_INDEXES

Stores snapshots of the indexes. Every time the schema change process runs, the current values are compared to the values in this table. All changes are stored in the log table, and this table is refreshed with the latest snapshots.

Column NameColumn Description
SQCI_PWII_INSTANCE_IDID of the SQL Server instance.
SQCI_DATABASE_IDInternal ID of the database.
SQCI_OBJECT_IDID of the object on which the index is defined.
SQCI_INDEX_IDID of the index.
SQCI_INDEX_NAMEName of the index.
SQCI_OBJECT_NAMEName of the table.
SQCI_OBJECT_OWNEROwner of the table.
SQCI_FILE_GROUPFile group in which the index resides.
SQCI_NUM_OF_KEYSNumber of keys in the index.
SQCI_FILL_FACTORFill factor of the index.
SQCI_IS_CLUSTERED_INDEXIndicates whether the index is clustered.
SQCI_IS_PAD_INDEXIndicates whether the index is padded.
SQCI_IS_UNIQUEIndicates whether the index is unique.
SQCI_INDEX_DEPTHIndex tree level.
SQCI_IS_AUTH_STATIndicates if the index has turned on the autostatistics.
SQCI_IS_PAGE_LOCK_DISALLOWEDIndicates whether an index page can be locked.
SQCI_IS_ROW_LOCK_DISALLOWEDIndicates whether an index row can be locked.

PW_SQCD_SCHEMA_CHANGES_DB

Stores snapshots of the database properties. Every time the schema change process runs, the current values are compared to the values in this table. All changes are stored in the log table, and this table is refreshed with the latest snapshots.

Column NameColumn Description
SQCD_PWII_INSTANCE_IDID of the SQL Server instance.
SQCD_DATABASE_IDInternal ID of the database.
SQCD_DATABASE_NAMEName of the database in which the change occurred.
SQCD_RECOVERYRecovery model of the database.
SQCD_AUTO_UPDATE_STATISTICSAuto-update statistics status of the database.
SQCD_ANSI_NULLAnsi null status of the database.
SQCD_AUTO_SHRINK_FILESAutoshrink files status of the database.
SQCD_CLOSE_CURSORS_ON_COMMITClose cursor on commit status of the database.
SQCD_STATUSAvailability status of the database.
SQCD_AUTOCREATES_STATISTICSAutocreate statistics status of the database.
SQCD_TRUNCATES_LOGTruncate log status of the database.
SQCD_COMPATIBILITY_LEVELCompatibility level of the database.
SQCD_OBJECT_SAMPLE_STATUSStatus of tracking changes on objects in the database.
SQCD_COLUMN_SAMPLE_STATUSStatus of tracking changes on columns in the database.
SQCD_INDEX_SAMPLE_STATUSStatus of tracking changes on indexes in the database.
SQCD_INDEX_K_SAMPLE_STATUSStatus of tracking changes on keys in the database.
SQCD_DATABASES_SAMPLE_STATUSStatus of tracking changes on database definitions in the database.
SQCD_PS_SAMPLE_STATUSTo support partition schema collecting.
SQCD_PS_FG_SAMPLE_STATUSTo support file group collecting pointed by partition schema.
SQCD_PF_SAMPLE_STATUSTo support partition function collecting.
SQCD_PF_VALUES_SAMPLE_STATUSTo support partition function values collecting of a particular partition function.
SQCD_AUTO_UPDATE_STATSDatabase option.
SQCD_PARAMS_FORCEDDatabase option.
SQCD_DATE_CORRELATIONDatabase option.

PW_SQCC_SCHEMA_CHANGES_COLUMNS

Stores snapshots of the columns. Every time the schema change process runs, the current values are compared to the values in this table. All changes are stored in the log table, and this table is refreshed with the latest snapshots.

Column NameColumn Description
SQCC_PWII_INSTANCE_IDID of the SQL Server instance.
SQCC_DATABASE_IDInternal ID of the database.
SQCC_OBJECT_IDID of the object to which the column belongs.
SQCC_COLUMN_IDID of the column.
SQCC_COLUMN_NUMBERNumber of the subprocedure when the procedure is grouped (0 for nonprocedure objects).
SQCC_COLUMN_NAMEName of the column.
SQCC_OBJECT_NAMEName of the object.
SQCC_OBJECT_OWNEROwner of the object.
SQCC_TYPEType of the column.
SQCC_LENGTHLength of the column.
SQCC_SCALEScale of the column.
SQCC_PRECISIONPrecision of the column.
SQCC_IS_NULL_ABLENullable property of the column.
SQCC_IS_TABLEIndicates whether the object is a table.

PW_SQRS_REPLIC_SNAP_STATS

Holds information on the object SQL Server: Replication Snapshot Object in Windows performance counters. For more details, search for "performance counters" on http://msdn.microsoft.com.

Column NameColumn Description
SQRS_PWII_INSTANCE_IDID of the SQL Server instance.
SQRS_INSTANCE_NAMEName of the snapshot agent.
SQRS_TIMESTAMPDate and time the statistic was sampled. On an hourly summary level, the date and time are GMT. On all other summary levels, the time is zeroed and SQRS_PWHG_ID should be used.
SQRS_PWHG_IDHour group ID.
SQRS_SNAP_DELIVERED_CMDS_AVGFor more information, search for "performance counters" on http://msdn.microsoft.com.
SQRS_SNAP_DELIVERED_TRANS_AVGFor more information, search for "performance counters" on http://msdn.microsoft.com.
SQRS_RECEIVED_TIMESTAMPLocal date and time the row was loaded into the PMDB.
SQRS_ROWIDUnique row number.

PW_SQRM_REPLIC_MERGE_STATS

Holds information on the object SQL Server: Replication Merge Object in Windows performance counters. For more details, search for "performance counters" on http://msdn.microsoft.com.

Column NameColumn Description
SQRM_PWII_INSTANCE_IDID of the SQL Server instance.
SQRM_INSTANCE_NAMEName of the merge agent.
SQRM_TIMESTAMPDate and time the statistic was sampled. On an hourly summary level, the date and time are GMT. On all other summary levels, the time is zeroed and SQRM_PWHG_ID should be used.
SQRM_PWHG_IDHour group ID.
SQRM_MINUTES_COUNT_SUMThe timeframe needed to calculated the row, in minutes.
SQRM_CONFLICTS_AVGFor more information, search for "performance counters" on http://msdn.microsoft.com.
SQRM_DOWNLOADED_CHANGES_AVGFor more information, search for "performance counters" on http://msdn.microsoft.com.
SQRM_UPLOADED_CHANGES_AVGFor more information, search for "performance counters" on http://msdn.microsoft.com.
SQRM_RECEIVED_TIMESTAMPLocal date and time the row was loaded into the PMDB.
SQRM_ROWIDUnique row number.

PW_SQRL_REPLIC_LOGREAD_STATS

Holds information on the object SQL Server: Replication Logreader Object in Windows performance counters. For more details, search for "performance counters" on http://msdn.microsoft.com.

Column NameColumn Description
SQRL_PWII_INSTANCE_IDID of the SQL Server instance.
SQRL_INSTANCE_NAMEName of the publisher instance.
SQRL_TIMESTAMPDate and time the statistic was sampled. On an hourly summary level, the date and time are GMT. On all other summary levels, the time is zeroed and SQRL_PWHG_ID should be used.
SQRL_PWHG_IDHour group ID.
SQRL_MINUTES_COUNT_SUMThe timeframe needed to calculated the row, in minutes.
SQRL_LOG_DELIVERED_CMDS_AVGFor more information, search for "performance counters" on http://msdn.microsoft.com.
SQRL_LOG_DELIVERED_TRANS_AVGFor more information, search for "performance counters" on http://msdn.microsoft.com.
SQRL_LOG_DELIVERY_LATENCY_AVGFor more information, search for "performance counters" on http://msdn.microsoft.com.
SQRL_RECEIVED_TIMESTAMPLocal date and time the row was loaded into the PMDB.
SQRL_ROWIDUnique row number.

PW_SQRD_REPLIC_DISTRIB_STATS

Holds information on the object SQL Server: Replication Distribution Object in Windows performance counters. For more details, search for "performance counters" on http://msdn.microsoft.com.

Column NameColumn Description
SQRD_PWII_INSTANCE_IDID of the SQL Server instance.
SQRD_INSTANCE_NAMEName of the publisher instance.
SQRD_TIMESTAMPDate and time the statistic was sampled. On an hourly summary level, the date and time are GMT. On all other summary levels, the time is zeroed and SQRD_PWHG_ID should be used.
SQRD_PWHG_IDHour group ID.
SQRD_DIST_DELIVERED_CMDS_AVGFor more information, search for "performance counters" on http://msdn.microsoft.com.
SQRD_DIST_DELIVERED_TRANS_AVGFor more information, search for "performance counters" on http://msdn.microsoft.com.
SQRD_DIST_DELIVERY_LATENCY_AVGFor more information, search for "performance counters" on http://msdn.microsoft.com.
SQRD_RECEIVED_TIMESTAMPLocal date and time the row was loaded into the PMDB.
SQRD_ROWIDUnique row number.

PW_SQRA_REPLIC_AGENT_STATS

Holds information on the object SQL Server: Replication Agents Object in Windows performance counters. For more details, search for "performance counters" on http://msdn.microsoft.com.

Column NameColumn Description
SQRA_PWII_INSTANCE_IDID of the SQL Server instance.
SQRA_TIMESTAMPDate and time the statistic was sampled. On an hourly summary level, the date and time are GMT. On all other summary levels, the time is zeroed and SQRA_PWHG_ID should be used.
SQRA_PWHG_IDHour group ID.
SQRA_MINUTES_COUNT_SUMThe timeframe needed to calculated the row, in minutes.
SQRA_DISTRIBUTION_AVGFor more information, search for "performance counters" on http://msdn.microsoft.com.
SQRA__LOGREADER_AVGFor more information, search for "performance counters" on http://msdn.microsoft.com.
SQRA_MERGE_AVGFor more information, search for "performance counters" on http://msdn.microsoft.com.
SQRA_QUEUEREADER_AVGFor more information, search for "performance counters" on http://msdn.microsoft.com.
SQRA_SNAPSHOT_TIMESTAMPFor more information, search for "performance counters" on http://msdn.microsoft.com.
SQRA_RECEIVED_TIMESTAMPLocal date and time the row was loaded into the PMDB.
SQRA_ROWIDUnique row number.

PW_SQBP_BUFFER_PART_STATS

Holds information on the object SQL Server: Buffer Partition Object in Windows performance counters. For more details, search for "performance counters" on http://msdn.microsoft.com.

Column NameColumn Description
SQBP_PWII_INSTANCE_IDID of the SQL Server instance.
SQBP_INSTANCE_NAMEName of the buffer.
SQBP_TIMESTAMPDate and time the statistic was sampled. On an hourly summary level, the date and time are GMT. On all other summary levels, the time is zeroed and SQBP_PWHG_ID should be used.
SQBP_PWHG_IDHour group ID.
SQBP_MINUTES_COUNT_SUMThe timeframe needed to calculated the row, in minutes.
SQBP_FREE_LIST_EMPTY_AVGFor more information, search for "performance counters" on http://msdn.microsoft.com.
SQBP_FREE_LIST_REQUESTS_AVGFor more information, search for "performance counters" on http://msdn.microsoft.com.
SQBP_FREE_PAGES_AVGFor more information, search for "performance counters" on http://msdn.microsoft.com.
SQBP_RECEIVED_TIMESTAMPLocal date and time the row was loaded into the PMDB.
SQBP_ROWIDUnique row number.

PW_SQBM_BF_CH_MANAGER_STATS_T

Holds information on the objects SQL Server: Buffer Manager Object and SQL Server: Cache Manager Object in Windows performance counters. For more information, search for "performance counters" on http://msdn.microsoft.com.

Column NameColumn Description
SQBM_PWII_INSTANCE_IDID of the SQL Server instance.
SQBM_TIMESTAMPDate and time the statistic was sampled. On an hourly summary level, the date and time are GMT. On all other summary levels, the time is zeroed and SQBM_PWHG_ID should be used.
SQBM_PWHG_IDHour group ID.
SQBM_MINUTES_COUNT_SUMThe timeframe needed to calculated the row, in minutes.
SQBM_AWE_LOOKUP_MAPS_AVGFor more information, search for "performance counters" on http://msdn.microsoft.com.
SQBM_AWE_STOLEN_MAPS_AVGFor more information, search for "performance counters" on http://msdn.microsoft.com.
SQBM_AWE_UNMAP_CALL_AWGFor more information, search for "performance counters" on http://msdn.microsoft.com.
SQBM_AWE_UNMAP_PAGES_AVGFor more information, search for "performance counters" on http://msdn.microsoft.com.
SQBM_AWE_WRITE_MAPS_AVGFor more information, search for "performance counters" on http://msdn.microsoft.com.
SQBM_BUFFER_HIT_RATIO_AVGFor more information, search for "performance counters" on http://msdn.microsoft.com.
SQBM_CHECKPOINT_PAGES_AVGFor more information, search for "performance counters" on http://msdn.microsoft.com.
SQBM_DATABASE_PAGES_AVGFor more information, search for "performance counters" on http://msdn.microsoft.com.
SQBM_FREE_LIST_STALL_AVGFor more information, search for "performance counters" on http://msdn.microsoft.com.
SQBM_FREE_PAGES_AVGFor more information, search for "performance counters" on http://msdn.microsoft.com.
SQBM_FREE_PAGES_MINFor more information, search for "performance counters" on http://msdn.microsoft.com.
SQBM_LAZY_WRITES_AVGFor more information, search for "performance counters" on http://msdn.microsoft.com.
SQBM_PAGE_LIFE_EXPECTANCY_AVGFor more information, search for "performance counters" on http://msdn.microsoft.com.
SQBM_PAGE_LOOKUPS_AVGFor more information, search for "performance counters" on http://msdn.microsoft.com.
SQBM_PAGE_READS_AVGFor more information, search for "performance counters" on http://msdn.microsoft.com.
SQBM_PAGE_WRITES_AVGFor more information, search for "performance counters" on http://msdn.microsoft.com.
SQBM_PROCEDURES_CACHE_PAGES_AVGFor more information, search for "performance counters" on http://msdn.microsoft.com.
SQBM_READAHEAD_PAGES_AVGFor more information, search for "performance counters" on http://msdn.microsoft.com.
SQBM_RESERVED_PAGES_AVGFor more information, search for "performance counters" on http://msdn.microsoft.com.
SQBM_STOLEN_PAGES_AVGFor more information, search for "performance counters" on http://msdn.microsoft.com.
SQBM_TARGET_PAGES_AVGFor more information, search for "performance counters" on http://msdn.microsoft.com.
SQBM_TOTAL_PAGES_AVGFor more information, search for "performance counters" on http://msdn.microsoft.com.
SQBM_CACHE_HIT_AD_HOC_AVGFor more information, search for "performance counters" on http://msdn.microsoft.com.
SQBM_CACHE_HIT_CURSORS_AVGFor more information, search for "performance counters" on http://msdn.microsoft.com.
SQBM_CACHE_HIT_CONTEXT_AVGFor more information, search for "performance counters" on http://msdn.microsoft.com.
SQBM_CACHE_HIT_N_TREE_AVGFor more information, search for "performance counters" on http://msdn.microsoft.com.
SQBM_CACHE_HIT_PREPARE_AVGFor more information, search for "performance counters" on http://msdn.microsoft.com.
SQBM_CACHE_HIT_PROC_AVGFor more information, search for "performance counters" on http://msdn.microsoft.com.
SQBM_CACHE_HIT_RP_PROC_AVGFor more information, search for "performance counters" on http://msdn.microsoft.com.
SQBM_CACHE_HIT_TRIGGER_AVGFor more information, search for "performance counters" on http://msdn.microsoft.com.
SQBM_CACHE_HIT_TOTAL_AVGFor more information, search for "performance counters" on http://msdn.microsoft.com.
SQBM_CACHE_OBJ_CNT_AD_HOC_AVGFor more information, search for "performance counters" on http://msdn.microsoft.com.
SQBM_CACHE_OBJ_CNT_CURSORS_AVGFor more information, search for "performance counters" on http://msdn.microsoft.com.
SQBM_CACHE_OBJ_CNT_CONTEXT_AVGFor more information, search for "performance counters" on http://msdn.microsoft.com.
SQBM_CACHE_OBJ_CNT_N_TREE_AVGFor more information, search for "performance counters" on http://msdn.microsoft.com.
SQBM_CACHE_OBJ_CNT_PREPARE_AVGFor more information, search for "performance counters" on http://msdn.microsoft.com.
SQBM_CACHE_OBJ_CNT_PREPARE_AVGFor more information, search for "performance counters" on http://msdn.microsoft.com.
SQBM_CACHE_OBJ_CNT_PROC_AVGFor more information, search for "performance counters" on http://msdn.microsoft.com.
SQBM_CACHE_OBJ_CNT_RP_PROC_AVGFor more information, search for "performance counters" on http://msdn.microsoft.com.
SQBM_CACHE_OBJ_CNT_TRIGGER_AVGFor more information, search for "performance counters" on http://msdn.microsoft.com.
SQBM_CACHE_OBJ_CNT_TOTAL_AVGFor more information, search for "performance counters" on http://msdn.microsoft.com.
SQBM_CACHE_PAGES_AD_HOC_AVGFor more information, search for "performance counters" on http://msdn.microsoft.com.
SQBM_CACHE_PAGES_CURSORS_AVGFor more information, search for "performance counters" on http://msdn.microsoft.com.
SQBM_CACHE_PAGES_CONTEXT_AVGFor more information, search for "performance counters" on http://msdn.microsoft.com.
SQBM_CACHE_PAGES_N_TREE_AVGFor more information, search for "performance counters" on http://msdn.microsoft.com.
SQBM_CACHE_PAGES_PREPARE_AVGFor more information, search for "performance counters" on http://msdn.microsoft.com.
SQBM_CACHE_PAGES_PROC_AVGFor more information, search for "performance counters" on http://msdn.microsoft.com.
SQBM_CACHE_PAGES_RP_PROC_AVGFor more information, search for "performance counters" on http://msdn.microsoft.com.
SQBM_CACHE_PAGES_TRIGGER_AVGFor more information, search for "performance counters" on http://msdn.microsoft.com.
SQBM_CACHE_PAGES_TOTAL_AVGFor more information, search for "performance counters" on http://msdn.microsoft.com.
SQBM_CACHE_USE_AD_HOC_AVGFor more information, search for "performance counters" on http://msdn.microsoft.com.
SQBM_CACHE_USE_CURSORS_AVGFor more information, search for "performance counters" on http://msdn.microsoft.com.
SQBM_CACHE_USE_CONTEXT_AVGFor more information, search for "performance counters" on http://msdn.microsoft.com.
SQBM_CACHE_USE_N_TREE_AVGFor more information, search for "performance counters" on http://msdn.microsoft.com.
SQBM_CACHE_USE_PREPARE_AVGFor more information, search for "performance counters" on http://msdn.microsoft.com.
SQBM_CACHE_USE_PROC_AVGFor more information, search for "performance counters" on http://msdn.microsoft.com.
SQBM_CACHE_USE_RP_PROC_AVGFor more information, search for "performance counters" on http://msdn.microsoft.com.
SQBM_CACHE_USE_TRIGGER_AVGFor more information, search for "performance counters" on http://msdn.microsoft.com.
SQBM_CACHE_USE_TOTAL_AVGFor more information, search for "performance counters" on http://msdn.microsoft.com.
SQBM_RECEIVED_TIMESTAMPLocal date and time the row was loaded into the PMDB.
SQBM_ROWIDUnique row number.
SQBM_CACHE_HIT_SQL_PLN_AVGFor more information, search for "performance counters" on http://msdn.microsoft.com.
SQBM_CACHE_HIT_OBJ_PLN_AVGFor more information, search for "performance counters" on http://msdn.microsoft.com.
SQBM_CACHE_HIT_BND_TRE_AVGFor more information, search for "performance counters" on http://msdn.microsoft.com.
SQBM_CACHE_HIT_EXT_SP_AVGFor more information, search for "performance counters" on http://msdn.microsoft.com.

SQBM_CACHE_HIT_TMP_TAB_AVG For more information, search for “performance counters” on http://msdn.microsoft.com.
SQBM_CACHE_OBJ_CNT_SQL_PLN_AVG For more information, search for “performance counters” on http://msdn.microsoft.com.
SQBM_CACHE_OBJ_CNT_OBJ_PLN_AVG For more information, search for “performance counters” on http://msdn.microsoft.com.
SQBM_CACHE_OBJ_CNT_BND_TRE_AVG For more information, search for “performance counters” on http://msdn.microsoft.com.
SQBM_CACHE_OBJ_CNT_EXT_SP_AVG For more information, search for “performance counters” on http://msdn.microsoft.com.
SQBM_CACHE_OBJ_CNT_TMP_TAB_AVG For more information, search for “performance counters” on http://msdn.microsoft.com.
SQBM_CACHE_PAGES_SQL_PLN_AVG For more information, search for “performance counters” on http://msdn.microsoft.com.
SQBM_CACHE_PAGES_OBJ_PLN_AVG For more information, search for “performance counters” on http://msdn.microsoft.com.
SQBM_CACHE_PAGES_BND_TRE_AVG For more information, search for “performance counters” on http://msdn.microsoft.com.
SQBM_CACHE_PAGES_EXT_SP_ AVG For more information, search for “performance counters” on http://msdn.microsoft.com.
SQBM_CACHE_PAGES_TMP_TAB_AVG For more information, search for “performance counters” on http://msdn.microsoft.com.
SQBM_CACHE_USE_SQL_PLN_AVG For more information, search for “performance counters” on http://msdn.microsoft.com.
SQBM_CACHE_USE_OBJ_PLN_AVG For more information, search for “performance counters” on http://msdn.microsoft.com.
SQBM_CACHE_USE_BND_TRE_AVG For more information, search for “performance counters” on http://msdn.microsoft.com.
SQBM_CACHE_USE_EXT_SP_AVG For more information, search for “performance counters” on http://msdn.microsoft.com.
SQBM_CACHE_USE_TMP_TAB_AVG For more information, search for “performance counters” on http://msdn.microsoft.com.






IDERA |  Products | Purchase | Support |  Community |  Resources |  About Us  | Legal
  • No labels