|
@@ -1,1727 +0,0 @@
|
|
-<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
-<Report xmlns:rd="http://schemas.microsoft.com/SQLServer/reporting/reportdesigner" xmlns:cl="http://schemas.microsoft.com/sqlserver/reporting/2010/01/componentdefinition" xmlns="http://schemas.microsoft.com/sqlserver/reporting/2010/01/reportdefinition">
|
|
|
|
- <AutoRefresh>0</AutoRefresh>
|
|
|
|
- <DataSources>
|
|
|
|
- <DataSource Name="ServerName">
|
|
|
|
- <ConnectionProperties>
|
|
|
|
- <DataProvider>SQL</DataProvider>
|
|
|
|
- <ConnectString>="Data Source=" + Parameters!vServerName.Value.ToString() + ";Initial Catalog=master"</ConnectString>
|
|
|
|
- <IntegratedSecurity>true</IntegratedSecurity>
|
|
|
|
- </ConnectionProperties>
|
|
|
|
- <rd:SecurityType>Integrated</rd:SecurityType>
|
|
|
|
- <rd:DataSourceID>ff4453f3-b6e9-4008-9a78-2bbdc1e58a8c</rd:DataSourceID>
|
|
|
|
- </DataSource>
|
|
|
|
- <DataSource Name="DataSource1">
|
|
|
|
- <DataSourceReference>DataSource1</DataSourceReference>
|
|
|
|
- <rd:SecurityType>None</rd:SecurityType>
|
|
|
|
- <rd:DataSourceID>d56844c6-0d77-41c7-869f-f445c8975296</rd:DataSourceID>
|
|
|
|
- </DataSource>
|
|
|
|
- </DataSources>
|
|
|
|
- <DataSets>
|
|
|
|
- <DataSet Name="DS_TimeDifference">
|
|
|
|
- <Query>
|
|
|
|
- <DataSourceName>ServerName</DataSourceName>
|
|
|
|
- <CommandText>DECLARE @UTDDateDiff int
|
|
|
|
-SET @UTDDateDiff = DATEDIFF(mi,GETUTCDATE(),GETDATE())
|
|
|
|
-IF (@UTDDateDiff > 0)
|
|
|
|
- SELECT ('UTC Time Difference: ' + CAST((@UTDDateDiff/60) AS char(3)) + ' hours ' + CAST((@UTDDateDiff%60) AS char(3)) + ' minutes') AS UTCString
|
|
|
|
-ELSE
|
|
|
|
- SELECT ('UTC Time Difference: -' + SUBSTRING(CAST((@UTDDateDiff/60) AS char(3)),2,3) + ' hours ' + SUBSTRING(CAST((@UTDDateDiff%60) AS char(3)),2,3) + ' minutes') AS UTCString</CommandText>
|
|
|
|
- <rd:UseGenericDesigner>true</rd:UseGenericDesigner>
|
|
|
|
- </Query>
|
|
|
|
- <Fields>
|
|
|
|
- <Field Name="UTCString">
|
|
|
|
- <DataField>UTCString</DataField>
|
|
|
|
- <rd:TypeName>System.String</rd:TypeName>
|
|
|
|
- </Field>
|
|
|
|
- </Fields>
|
|
|
|
- </DataSet>
|
|
|
|
- <DataSet Name="DS_Version">
|
|
|
|
- <Query>
|
|
|
|
- <DataSourceName>ServerName</DataSourceName>
|
|
|
|
- <CommandText>SELECT (SUBSTRING(CAST(SERVERPROPERTY ('ProductVersion') AS varchar(50)),1,CHARINDEX('.',CAST(SERVERPROPERTY ('ProductVersion') AS varchar(50)))-1)) as VersionMajorNumber</CommandText>
|
|
|
|
- </Query>
|
|
|
|
- <Fields>
|
|
|
|
- <Field Name="VersionMajorNumber">
|
|
|
|
- <DataField>VersionMajorNumber</DataField>
|
|
|
|
- <rd:TypeName>System.String</rd:TypeName>
|
|
|
|
- </Field>
|
|
|
|
- </Fields>
|
|
|
|
- </DataSet>
|
|
|
|
- <DataSet Name="DS_System">
|
|
|
|
- <Query>
|
|
|
|
- <DataSourceName>DataSource1</DataSourceName>
|
|
|
|
- <QueryParameters>
|
|
|
|
- <QueryParameter Name="@StartTime">
|
|
|
|
- <Value>=Parameters!StartTime.Value</Value>
|
|
|
|
- </QueryParameter>
|
|
|
|
- <QueryParameter Name="@EndTime">
|
|
|
|
- <Value>=Parameters!EndTime.Value</Value>
|
|
|
|
- </QueryParameter>
|
|
|
|
- </QueryParameters>
|
|
|
|
- <CommandText>SET NOCOUNT ON
|
|
|
|
-
|
|
|
|
-IF (SUBSTRING(CAST(SERVERPROPERTY ('ProductVersion') AS varchar(50)),1,CHARINDEX('.',CAST(SERVERPROPERTY ('ProductVersion') AS varchar(50)))-1) >= 11)
|
|
|
|
-BEGIN
|
|
|
|
-
|
|
|
|
- DECLARE @UTDDateDiff int
|
|
|
|
- SET @UTDDateDiff = DATEDIFF(mi,GETUTCDATE(),GETDATE())
|
|
|
|
-
|
|
|
|
--- Fetch information about the XEL file location
|
|
|
|
-DECLARE @filename varchar(8000) ;
|
|
|
|
-SELECT @filename = CAST(target_data as XML).value('(/EventFileTarget/File/@name)[1]', 'varchar(8000)')
|
|
|
|
-FROM sys.dm_xe_session_targets
|
|
|
|
-WHERE target_name = 'event_file' and event_session_address = (select address from sys.dm_xe_sessions where name = 'system_health')
|
|
|
|
-
|
|
|
|
-SET @filename = SUBSTRING(@filename,1,CHARINDEX('system_health',@filename,1)-1) + '*.xel'
|
|
|
|
-
|
|
|
|
--- Read the XEL files to get the System Health Session Data
|
|
|
|
-SELECT object_name,CAST(event_data as XML) as XMLData
|
|
|
|
-INTO #tbl_sp_server_diagnostics
|
|
|
|
-FROM sys.fn_xe_file_target_read_file(@filename, null, null, null)
|
|
|
|
-WHERE object_name = 'sp_server_diagnostics_component_result'
|
|
|
|
-
|
|
|
|
-SELECT
|
|
|
|
-DATEADD(mi,@UTDDateDiff,XMLData.value('(/event/@timestamp)[1]','datetime')) as [Event Time],
|
|
|
|
-XMLData.value('(/event/data/value/system/@latchWarnings)[1]','bigint') as [Latch Warnings],
|
|
|
|
-XMLData.value('(/event/data/value/system/@isAccessViolationOccurred)[1]','bigint') as [Access Violations],
|
|
|
|
-XMLData.value('(/event/data/value/system/@nonYieldingTasksReported)[1]','bigint') as [Non Yields Reported],
|
|
|
|
-XMLData.value('(/event/data/value/system/@pageFaults)[1]','bigint') as [Page Faults],
|
|
|
|
-XMLData.value('(/event/data/value/system/@systemCpuUtilization)[1]','int') as [System CPU Utilization],
|
|
|
|
-XMLData.value('(/event/data/value/system/@sqlCpuUtilization)[1]','int') as [SQL CPU Utilization],
|
|
|
|
-XMLData.value('(/event/data/value/system/@BadPagesDetected)[1]','bigint') as [Bad Pages Detected],
|
|
|
|
-XMLData.value('(/event/data/value/system/@BadPagesFixed)[1]','bigint') as [Bad Pages Fixed]
|
|
|
|
-FROM #tbl_sp_server_diagnostics
|
|
|
|
-WHERE XMLData.value('(/event/data/text)[1]','varchar(255)') = 'SYSTEM'
|
|
|
|
-AND XMLData.value('(/event/@timestamp)[1]','datetime') BETWEEN @StartTime and @EndTime
|
|
|
|
-
|
|
|
|
-ORDER BY [Event Time] DESC
|
|
|
|
-
|
|
|
|
-
|
|
|
|
-DROP TABLE #tbl_sp_server_diagnostics
|
|
|
|
-
|
|
|
|
-END
|
|
|
|
-
|
|
|
|
-SET NOCOUNT OFF</CommandText>
|
|
|
|
- </Query>
|
|
|
|
- <Fields>
|
|
|
|
- <Field Name="Event_Time">
|
|
|
|
- <DataField>Event Time</DataField>
|
|
|
|
- <rd:TypeName>System.DateTime</rd:TypeName>
|
|
|
|
- </Field>
|
|
|
|
- <Field Name="Latch_Warnings">
|
|
|
|
- <DataField>Latch Warnings</DataField>
|
|
|
|
- <rd:TypeName>System.Int64</rd:TypeName>
|
|
|
|
- </Field>
|
|
|
|
- <Field Name="Access_Violations">
|
|
|
|
- <DataField>Access Violations</DataField>
|
|
|
|
- <rd:TypeName>System.Int64</rd:TypeName>
|
|
|
|
- </Field>
|
|
|
|
- <Field Name="Non_Yields_Reported">
|
|
|
|
- <DataField>Non Yields Reported</DataField>
|
|
|
|
- <rd:TypeName>System.Int64</rd:TypeName>
|
|
|
|
- </Field>
|
|
|
|
- <Field Name="Page_Faults">
|
|
|
|
- <DataField>Page Faults</DataField>
|
|
|
|
- <rd:TypeName>System.Int64</rd:TypeName>
|
|
|
|
- </Field>
|
|
|
|
- <Field Name="System_CPU_Utilization">
|
|
|
|
- <DataField>System CPU Utilization</DataField>
|
|
|
|
- <rd:TypeName>System.Int32</rd:TypeName>
|
|
|
|
- </Field>
|
|
|
|
- <Field Name="SQL_CPU_Utilization">
|
|
|
|
- <DataField>SQL CPU Utilization</DataField>
|
|
|
|
- <rd:TypeName>System.Int32</rd:TypeName>
|
|
|
|
- </Field>
|
|
|
|
- <Field Name="Bad_Pages_Detected">
|
|
|
|
- <DataField>Bad Pages Detected</DataField>
|
|
|
|
- <rd:TypeName>System.Int64</rd:TypeName>
|
|
|
|
- </Field>
|
|
|
|
- <Field Name="Bad_Pages_Fixed">
|
|
|
|
- <DataField>Bad Pages Fixed</DataField>
|
|
|
|
- <rd:TypeName>System.Int64</rd:TypeName>
|
|
|
|
- </Field>
|
|
|
|
- </Fields>
|
|
|
|
- </DataSet>
|
|
|
|
- <DataSet Name="DS_Time">
|
|
|
|
- <Query>
|
|
|
|
- <DataSourceName>ServerName</DataSourceName>
|
|
|
|
- <CommandText>SET NOCOUNT ON
|
|
|
|
-
|
|
|
|
-IF (SUBSTRING(CAST(SERVERPROPERTY ('ProductVersion') AS varchar(50)),1,CHARINDEX('.',CAST(SERVERPROPERTY ('ProductVersion') AS varchar(50)))-1) >= 11)
|
|
|
|
-BEGIN
|
|
|
|
-
|
|
|
|
- DECLARE @UTDDateDiff int
|
|
|
|
- SET @UTDDateDiff = DATEDIFF(mi,GETUTCDATE(),GETDATE())
|
|
|
|
-
|
|
|
|
--- Fetch information about the XEL file location
|
|
|
|
-DECLARE @filename varchar(8000) ;
|
|
|
|
-SELECT @filename = CAST(target_data as XML).value('(/EventFileTarget/File/@name)[1]', 'varchar(8000)')
|
|
|
|
-FROM sys.dm_xe_session_targets
|
|
|
|
-WHERE target_name = 'event_file' and event_session_address = (select address from sys.dm_xe_sessions where name = 'system_health');
|
|
|
|
-
|
|
|
|
-SET @filename = SUBSTRING(@filename,1,CHARINDEX('system_health',@filename,1)-1) + '*.xel';
|
|
|
|
-
|
|
|
|
--- Read the XEL files to get the System Health Session Data
|
|
|
|
-SELECT object_name,CAST(event_data as XML) as XMLData
|
|
|
|
-INTO #tbl_sp_server_diagnostics
|
|
|
|
-FROM sys.fn_xe_file_target_read_file(@filename, null, null, null)
|
|
|
|
-WHERE object_name = 'sp_server_diagnostics_component_result'
|
|
|
|
-
|
|
|
|
-SELECT
|
|
|
|
-DATEADD(mi,@UTDDateDiff,XMLData.value('(/event/@timestamp)[1]','datetime')) as [Event Time]
|
|
|
|
-FROM #tbl_sp_server_diagnostics
|
|
|
|
-WHERE XMLData.value('(/event/data/text)[1]','varchar(255)') = 'RESOURCE'
|
|
|
|
-ORDER BY [Event Time]
|
|
|
|
-
|
|
|
|
-
|
|
|
|
-DROP TABLE #tbl_sp_server_diagnostics
|
|
|
|
-
|
|
|
|
-END
|
|
|
|
-
|
|
|
|
-SET NOCOUNT OFF</CommandText>
|
|
|
|
- </Query>
|
|
|
|
- <Fields>
|
|
|
|
- <Field Name="Event_Time">
|
|
|
|
- <DataField>Event Time</DataField>
|
|
|
|
- <rd:TypeName>System.DateTime</rd:TypeName>
|
|
|
|
- </Field>
|
|
|
|
- </Fields>
|
|
|
|
- </DataSet>
|
|
|
|
- </DataSets>
|
|
|
|
- <ReportSections>
|
|
|
|
- <ReportSection>
|
|
|
|
- <Body>
|
|
|
|
- <ReportItems>
|
|
|
|
- <Textbox Name="Textbox7">
|
|
|
|
- <CanGrow>true</CanGrow>
|
|
|
|
- <KeepTogether>true</KeepTogether>
|
|
|
|
- <Paragraphs>
|
|
|
|
- <Paragraph>
|
|
|
|
- <TextRuns>
|
|
|
|
- <TextRun>
|
|
|
|
- <Value EvaluationMode="Constant">Dashboard Main Report</Value>
|
|
|
|
- <Style>
|
|
|
|
- <FontSize>16pt</FontSize>
|
|
|
|
- <FontWeight>Bold</FontWeight>
|
|
|
|
- <Color>White</Color>
|
|
|
|
- </Style>
|
|
|
|
- </TextRun>
|
|
|
|
- </TextRuns>
|
|
|
|
- <Style>
|
|
|
|
- <TextAlign>Center</TextAlign>
|
|
|
|
- </Style>
|
|
|
|
- </Paragraph>
|
|
|
|
- </Paragraphs>
|
|
|
|
- <rd:DefaultName>Textbox7</rd:DefaultName>
|
|
|
|
- <Top>0.16333in</Top>
|
|
|
|
- <Left>0.12167in</Left>
|
|
|
|
- <Height>0.36667in</Height>
|
|
|
|
- <Width>12.49166in</Width>
|
|
|
|
- <Style>
|
|
|
|
- <Border>
|
|
|
|
- <Color>Silver</Color>
|
|
|
|
- <Style>Solid</Style>
|
|
|
|
- </Border>
|
|
|
|
- <TopBorder>
|
|
|
|
- <Color>Silver</Color>
|
|
|
|
- <Style>Solid</Style>
|
|
|
|
- <Width>1pt</Width>
|
|
|
|
- </TopBorder>
|
|
|
|
- <BottomBorder>
|
|
|
|
- <Color>Silver</Color>
|
|
|
|
- <Style>Solid</Style>
|
|
|
|
- <Width>1pt</Width>
|
|
|
|
- </BottomBorder>
|
|
|
|
- <LeftBorder>
|
|
|
|
- <Color>Silver</Color>
|
|
|
|
- <Style>Solid</Style>
|
|
|
|
- <Width>1pt</Width>
|
|
|
|
- </LeftBorder>
|
|
|
|
- <RightBorder>
|
|
|
|
- <Color>Silver</Color>
|
|
|
|
- <Style>Solid</Style>
|
|
|
|
- <Width>1pt</Width>
|
|
|
|
- </RightBorder>
|
|
|
|
- <BackgroundColor>CornflowerBlue</BackgroundColor>
|
|
|
|
- <PaddingLeft>2pt</PaddingLeft>
|
|
|
|
- <PaddingRight>2pt</PaddingRight>
|
|
|
|
- <PaddingTop>2pt</PaddingTop>
|
|
|
|
- <PaddingBottom>2pt</PaddingBottom>
|
|
|
|
- </Style>
|
|
|
|
- </Textbox>
|
|
|
|
- <Textbox Name="Textbox17">
|
|
|
|
- <CanGrow>true</CanGrow>
|
|
|
|
- <KeepTogether>true</KeepTogether>
|
|
|
|
- <Paragraphs>
|
|
|
|
- <Paragraph>
|
|
|
|
- <TextRuns>
|
|
|
|
- <TextRun>
|
|
|
|
- <Value>=First(Fields!UTCString.Value, "DS_TimeDifference") + " | Data Shown from " + Parameters!StartTime.Value + " to " + Parameters!EndTime.Value</Value>
|
|
|
|
- <Style>
|
|
|
|
- <FontWeight>Bold</FontWeight>
|
|
|
|
- </Style>
|
|
|
|
- </TextRun>
|
|
|
|
- </TextRuns>
|
|
|
|
- <Style />
|
|
|
|
- </Paragraph>
|
|
|
|
- </Paragraphs>
|
|
|
|
- <rd:DefaultName>Textbox17</rd:DefaultName>
|
|
|
|
- <Top>0.53in</Top>
|
|
|
|
- <Left>0.12167in</Left>
|
|
|
|
- <Height>0.24722in</Height>
|
|
|
|
- <Width>12.49166in</Width>
|
|
|
|
- <ZIndex>1</ZIndex>
|
|
|
|
- <Style>
|
|
|
|
- <Border>
|
|
|
|
- <Style>None</Style>
|
|
|
|
- </Border>
|
|
|
|
- <BackgroundColor>Silver</BackgroundColor>
|
|
|
|
- <PaddingLeft>2pt</PaddingLeft>
|
|
|
|
- <PaddingRight>2pt</PaddingRight>
|
|
|
|
- <PaddingTop>2pt</PaddingTop>
|
|
|
|
- <PaddingBottom>2pt</PaddingBottom>
|
|
|
|
- </Style>
|
|
|
|
- </Textbox>
|
|
|
|
- <Tablix Name="Tablix4">
|
|
|
|
- <TablixBody>
|
|
|
|
- <TablixColumns>
|
|
|
|
- <TablixColumn>
|
|
|
|
- <Width>2.06667in</Width>
|
|
|
|
- </TablixColumn>
|
|
|
|
- <TablixColumn>
|
|
|
|
- <Width>1in</Width>
|
|
|
|
- </TablixColumn>
|
|
|
|
- <TablixColumn>
|
|
|
|
- <Width>1in</Width>
|
|
|
|
- </TablixColumn>
|
|
|
|
- <TablixColumn>
|
|
|
|
- <Width>1in</Width>
|
|
|
|
- </TablixColumn>
|
|
|
|
- <TablixColumn>
|
|
|
|
- <Width>1in</Width>
|
|
|
|
- </TablixColumn>
|
|
|
|
- <TablixColumn>
|
|
|
|
- <Width>1in</Width>
|
|
|
|
- </TablixColumn>
|
|
|
|
- <TablixColumn>
|
|
|
|
- <Width>1in</Width>
|
|
|
|
- </TablixColumn>
|
|
|
|
- <TablixColumn>
|
|
|
|
- <Width>1in</Width>
|
|
|
|
- </TablixColumn>
|
|
|
|
- <TablixColumn>
|
|
|
|
- <Width>1in</Width>
|
|
|
|
- </TablixColumn>
|
|
|
|
- <TablixColumn>
|
|
|
|
- <Width>1in</Width>
|
|
|
|
- </TablixColumn>
|
|
|
|
- </TablixColumns>
|
|
|
|
- <TablixRows>
|
|
|
|
- <TablixRow>
|
|
|
|
- <Height>0.53333in</Height>
|
|
|
|
- <TablixCells>
|
|
|
|
- <TablixCell>
|
|
|
|
- <CellContents>
|
|
|
|
- <Textbox Name="Textbox41">
|
|
|
|
- <CanGrow>true</CanGrow>
|
|
|
|
- <KeepTogether>true</KeepTogether>
|
|
|
|
- <Paragraphs>
|
|
|
|
- <Paragraph>
|
|
|
|
- <TextRuns>
|
|
|
|
- <TextRun>
|
|
|
|
- <Value>Event Time</Value>
|
|
|
|
- <Style>
|
|
|
|
- <FontSize>8pt</FontSize>
|
|
|
|
- <FontWeight>Bold</FontWeight>
|
|
|
|
- <Color>White</Color>
|
|
|
|
- </Style>
|
|
|
|
- </TextRun>
|
|
|
|
- </TextRuns>
|
|
|
|
- <Style>
|
|
|
|
- <TextAlign>Center</TextAlign>
|
|
|
|
- </Style>
|
|
|
|
- </Paragraph>
|
|
|
|
- </Paragraphs>
|
|
|
|
- <rd:DefaultName>Textbox41</rd:DefaultName>
|
|
|
|
- <Style>
|
|
|
|
- <Border>
|
|
|
|
- <Style>Solid</Style>
|
|
|
|
- </Border>
|
|
|
|
- <TopBorder>
|
|
|
|
- <Color>Black</Color>
|
|
|
|
- <Style>Solid</Style>
|
|
|
|
- <Width>1pt</Width>
|
|
|
|
- </TopBorder>
|
|
|
|
- <BottomBorder>
|
|
|
|
- <Color>Black</Color>
|
|
|
|
- <Style>Solid</Style>
|
|
|
|
- <Width>1pt</Width>
|
|
|
|
- </BottomBorder>
|
|
|
|
- <LeftBorder>
|
|
|
|
- <Color>Black</Color>
|
|
|
|
- <Style>Solid</Style>
|
|
|
|
- <Width>1pt</Width>
|
|
|
|
- </LeftBorder>
|
|
|
|
- <RightBorder>
|
|
|
|
- <Color>Black</Color>
|
|
|
|
- <Style>Solid</Style>
|
|
|
|
- <Width>1pt</Width>
|
|
|
|
- </RightBorder>
|
|
|
|
- <BackgroundColor>CornflowerBlue</BackgroundColor>
|
|
|
|
- <PaddingLeft>2pt</PaddingLeft>
|
|
|
|
- <PaddingRight>2pt</PaddingRight>
|
|
|
|
- <PaddingTop>2pt</PaddingTop>
|
|
|
|
- <PaddingBottom>2pt</PaddingBottom>
|
|
|
|
- </Style>
|
|
|
|
- </Textbox>
|
|
|
|
- </CellContents>
|
|
|
|
- </TablixCell>
|
|
|
|
- <TablixCell>
|
|
|
|
- <CellContents>
|
|
|
|
- <Textbox Name="Textbox3">
|
|
|
|
- <CanGrow>true</CanGrow>
|
|
|
|
- <KeepTogether>true</KeepTogether>
|
|
|
|
- <Paragraphs>
|
|
|
|
- <Paragraph>
|
|
|
|
- <TextRuns>
|
|
|
|
- <TextRun>
|
|
|
|
- <Value>Latch Warnings</Value>
|
|
|
|
- <Style>
|
|
|
|
- <FontSize>8pt</FontSize>
|
|
|
|
- <FontWeight>Bold</FontWeight>
|
|
|
|
- <Color>White</Color>
|
|
|
|
- </Style>
|
|
|
|
- </TextRun>
|
|
|
|
- </TextRuns>
|
|
|
|
- <Style>
|
|
|
|
- <TextAlign>Center</TextAlign>
|
|
|
|
- </Style>
|
|
|
|
- </Paragraph>
|
|
|
|
- </Paragraphs>
|
|
|
|
- <rd:DefaultName>Textbox3</rd:DefaultName>
|
|
|
|
- <Style>
|
|
|
|
- <Border>
|
|
|
|
- <Style>Solid</Style>
|
|
|
|
- </Border>
|
|
|
|
- <TopBorder>
|
|
|
|
- <Color>Black</Color>
|
|
|
|
- <Style>Solid</Style>
|
|
|
|
- <Width>1pt</Width>
|
|
|
|
- </TopBorder>
|
|
|
|
- <BottomBorder>
|
|
|
|
- <Color>Black</Color>
|
|
|
|
- <Style>Solid</Style>
|
|
|
|
- <Width>1pt</Width>
|
|
|
|
- </BottomBorder>
|
|
|
|
- <LeftBorder>
|
|
|
|
- <Color>Black</Color>
|
|
|
|
- <Style>Solid</Style>
|
|
|
|
- <Width>1pt</Width>
|
|
|
|
- </LeftBorder>
|
|
|
|
- <RightBorder>
|
|
|
|
- <Color>Black</Color>
|
|
|
|
- <Style>Solid</Style>
|
|
|
|
- <Width>1pt</Width>
|
|
|
|
- </RightBorder>
|
|
|
|
- <BackgroundColor>CornflowerBlue</BackgroundColor>
|
|
|
|
- <PaddingLeft>2pt</PaddingLeft>
|
|
|
|
- <PaddingRight>2pt</PaddingRight>
|
|
|
|
- <PaddingTop>2pt</PaddingTop>
|
|
|
|
- <PaddingBottom>2pt</PaddingBottom>
|
|
|
|
- </Style>
|
|
|
|
- </Textbox>
|
|
|
|
- </CellContents>
|
|
|
|
- </TablixCell>
|
|
|
|
- <TablixCell>
|
|
|
|
- <CellContents>
|
|
|
|
- <Textbox Name="Textbox5">
|
|
|
|
- <CanGrow>true</CanGrow>
|
|
|
|
- <KeepTogether>true</KeepTogether>
|
|
|
|
- <Paragraphs>
|
|
|
|
- <Paragraph>
|
|
|
|
- <TextRuns>
|
|
|
|
- <TextRun>
|
|
|
|
- <Value>Access Violations</Value>
|
|
|
|
- <Style>
|
|
|
|
- <FontSize>8pt</FontSize>
|
|
|
|
- <FontWeight>Bold</FontWeight>
|
|
|
|
- <Color>White</Color>
|
|
|
|
- </Style>
|
|
|
|
- </TextRun>
|
|
|
|
- </TextRuns>
|
|
|
|
- <Style>
|
|
|
|
- <TextAlign>Center</TextAlign>
|
|
|
|
- </Style>
|
|
|
|
- </Paragraph>
|
|
|
|
- </Paragraphs>
|
|
|
|
- <rd:DefaultName>Textbox5</rd:DefaultName>
|
|
|
|
- <Style>
|
|
|
|
- <Border>
|
|
|
|
- <Style>Solid</Style>
|
|
|
|
- </Border>
|
|
|
|
- <TopBorder>
|
|
|
|
- <Color>Black</Color>
|
|
|
|
- <Style>Solid</Style>
|
|
|
|
- <Width>1pt</Width>
|
|
|
|
- </TopBorder>
|
|
|
|
- <BottomBorder>
|
|
|
|
- <Color>Black</Color>
|
|
|
|
- <Style>Solid</Style>
|
|
|
|
- <Width>1pt</Width>
|
|
|
|
- </BottomBorder>
|
|
|
|
- <LeftBorder>
|
|
|
|
- <Color>Black</Color>
|
|
|
|
- <Style>Solid</Style>
|
|
|
|
- <Width>1pt</Width>
|
|
|
|
- </LeftBorder>
|
|
|
|
- <RightBorder>
|
|
|
|
- <Color>Black</Color>
|
|
|
|
- <Style>Solid</Style>
|
|
|
|
- <Width>1pt</Width>
|
|
|
|
- </RightBorder>
|
|
|
|
- <BackgroundColor>CornflowerBlue</BackgroundColor>
|
|
|
|
- <PaddingLeft>2pt</PaddingLeft>
|
|
|
|
- <PaddingRight>2pt</PaddingRight>
|
|
|
|
- <PaddingTop>2pt</PaddingTop>
|
|
|
|
- <PaddingBottom>2pt</PaddingBottom>
|
|
|
|
- </Style>
|
|
|
|
- </Textbox>
|
|
|
|
- </CellContents>
|
|
|
|
- </TablixCell>
|
|
|
|
- <TablixCell>
|
|
|
|
- <CellContents>
|
|
|
|
- <Textbox Name="Textbox8">
|
|
|
|
- <CanGrow>true</CanGrow>
|
|
|
|
- <KeepTogether>true</KeepTogether>
|
|
|
|
- <Paragraphs>
|
|
|
|
- <Paragraph>
|
|
|
|
- <TextRuns>
|
|
|
|
- <TextRun>
|
|
|
|
- <Value>Non Yields Reported</Value>
|
|
|
|
- <Style>
|
|
|
|
- <FontSize>8pt</FontSize>
|
|
|
|
- <FontWeight>Bold</FontWeight>
|
|
|
|
- <Color>White</Color>
|
|
|
|
- </Style>
|
|
|
|
- </TextRun>
|
|
|
|
- </TextRuns>
|
|
|
|
- <Style>
|
|
|
|
- <TextAlign>Center</TextAlign>
|
|
|
|
- </Style>
|
|
|
|
- </Paragraph>
|
|
|
|
- </Paragraphs>
|
|
|
|
- <rd:DefaultName>Textbox8</rd:DefaultName>
|
|
|
|
- <Style>
|
|
|
|
- <Border>
|
|
|
|
- <Style>Solid</Style>
|
|
|
|
- </Border>
|
|
|
|
- <TopBorder>
|
|
|
|
- <Color>Black</Color>
|
|
|
|
- <Style>Solid</Style>
|
|
|
|
- <Width>1pt</Width>
|
|
|
|
- </TopBorder>
|
|
|
|
- <BottomBorder>
|
|
|
|
- <Color>Black</Color>
|
|
|
|
- <Style>Solid</Style>
|
|
|
|
- <Width>1pt</Width>
|
|
|
|
- </BottomBorder>
|
|
|
|
- <LeftBorder>
|
|
|
|
- <Color>Black</Color>
|
|
|
|
- <Style>Solid</Style>
|
|
|
|
- <Width>1pt</Width>
|
|
|
|
- </LeftBorder>
|
|
|
|
- <RightBorder>
|
|
|
|
- <Color>Black</Color>
|
|
|
|
- <Style>Solid</Style>
|
|
|
|
- <Width>1pt</Width>
|
|
|
|
- </RightBorder>
|
|
|
|
- <BackgroundColor>CornflowerBlue</BackgroundColor>
|
|
|
|
- <PaddingLeft>2pt</PaddingLeft>
|
|
|
|
- <PaddingRight>2pt</PaddingRight>
|
|
|
|
- <PaddingTop>2pt</PaddingTop>
|
|
|
|
- <PaddingBottom>2pt</PaddingBottom>
|
|
|
|
- </Style>
|
|
|
|
- </Textbox>
|
|
|
|
- </CellContents>
|
|
|
|
- </TablixCell>
|
|
|
|
- <TablixCell>
|
|
|
|
- <CellContents>
|
|
|
|
- <Textbox Name="Textbox10">
|
|
|
|
- <CanGrow>true</CanGrow>
|
|
|
|
- <KeepTogether>true</KeepTogether>
|
|
|
|
- <Paragraphs>
|
|
|
|
- <Paragraph>
|
|
|
|
- <TextRuns>
|
|
|
|
- <TextRun>
|
|
|
|
- <Value>Non Yields Reported</Value>
|
|
|
|
- <Style>
|
|
|
|
- <FontSize>8pt</FontSize>
|
|
|
|
- <FontWeight>Bold</FontWeight>
|
|
|
|
- <Color>White</Color>
|
|
|
|
- </Style>
|
|
|
|
- </TextRun>
|
|
|
|
- </TextRuns>
|
|
|
|
- <Style>
|
|
|
|
- <TextAlign>Center</TextAlign>
|
|
|
|
- </Style>
|
|
|
|
- </Paragraph>
|
|
|
|
- </Paragraphs>
|
|
|
|
- <rd:DefaultName>Textbox10</rd:DefaultName>
|
|
|
|
- <Style>
|
|
|
|
- <Border>
|
|
|
|
- <Style>Solid</Style>
|
|
|
|
- </Border>
|
|
|
|
- <TopBorder>
|
|
|
|
- <Color>Black</Color>
|
|
|
|
- <Style>Solid</Style>
|
|
|
|
- <Width>1pt</Width>
|
|
|
|
- </TopBorder>
|
|
|
|
- <BottomBorder>
|
|
|
|
- <Color>Black</Color>
|
|
|
|
- <Style>Solid</Style>
|
|
|
|
- <Width>1pt</Width>
|
|
|
|
- </BottomBorder>
|
|
|
|
- <LeftBorder>
|
|
|
|
- <Color>Black</Color>
|
|
|
|
- <Style>Solid</Style>
|
|
|
|
- <Width>1pt</Width>
|
|
|
|
- </LeftBorder>
|
|
|
|
- <RightBorder>
|
|
|
|
- <Color>Black</Color>
|
|
|
|
- <Style>Solid</Style>
|
|
|
|
- <Width>1pt</Width>
|
|
|
|
- </RightBorder>
|
|
|
|
- <BackgroundColor>CornflowerBlue</BackgroundColor>
|
|
|
|
- <PaddingLeft>2pt</PaddingLeft>
|
|
|
|
- <PaddingRight>2pt</PaddingRight>
|
|
|
|
- <PaddingTop>2pt</PaddingTop>
|
|
|
|
- <PaddingBottom>2pt</PaddingBottom>
|
|
|
|
- </Style>
|
|
|
|
- </Textbox>
|
|
|
|
- </CellContents>
|
|
|
|
- </TablixCell>
|
|
|
|
- <TablixCell>
|
|
|
|
- <CellContents>
|
|
|
|
- <Textbox Name="Textbox12">
|
|
|
|
- <CanGrow>true</CanGrow>
|
|
|
|
- <KeepTogether>true</KeepTogether>
|
|
|
|
- <Paragraphs>
|
|
|
|
- <Paragraph>
|
|
|
|
- <TextRuns>
|
|
|
|
- <TextRun>
|
|
|
|
- <Value>Page Faults</Value>
|
|
|
|
- <Style>
|
|
|
|
- <FontSize>8pt</FontSize>
|
|
|
|
- <FontWeight>Bold</FontWeight>
|
|
|
|
- <Color>White</Color>
|
|
|
|
- </Style>
|
|
|
|
- </TextRun>
|
|
|
|
- </TextRuns>
|
|
|
|
- <Style>
|
|
|
|
- <TextAlign>Center</TextAlign>
|
|
|
|
- </Style>
|
|
|
|
- </Paragraph>
|
|
|
|
- </Paragraphs>
|
|
|
|
- <rd:DefaultName>Textbox12</rd:DefaultName>
|
|
|
|
- <Style>
|
|
|
|
- <Border>
|
|
|
|
- <Style>Solid</Style>
|
|
|
|
- </Border>
|
|
|
|
- <TopBorder>
|
|
|
|
- <Color>Black</Color>
|
|
|
|
- <Style>Solid</Style>
|
|
|
|
- <Width>1pt</Width>
|
|
|
|
- </TopBorder>
|
|
|
|
- <BottomBorder>
|
|
|
|
- <Color>Black</Color>
|
|
|
|
- <Style>Solid</Style>
|
|
|
|
- <Width>1pt</Width>
|
|
|
|
- </BottomBorder>
|
|
|
|
- <LeftBorder>
|
|
|
|
- <Color>Black</Color>
|
|
|
|
- <Style>Solid</Style>
|
|
|
|
- <Width>1pt</Width>
|
|
|
|
- </LeftBorder>
|
|
|
|
- <RightBorder>
|
|
|
|
- <Color>Black</Color>
|
|
|
|
- <Style>Solid</Style>
|
|
|
|
- <Width>1pt</Width>
|
|
|
|
- </RightBorder>
|
|
|
|
- <BackgroundColor>CornflowerBlue</BackgroundColor>
|
|
|
|
- <PaddingLeft>2pt</PaddingLeft>
|
|
|
|
- <PaddingRight>2pt</PaddingRight>
|
|
|
|
- <PaddingTop>2pt</PaddingTop>
|
|
|
|
- <PaddingBottom>2pt</PaddingBottom>
|
|
|
|
- </Style>
|
|
|
|
- </Textbox>
|
|
|
|
- </CellContents>
|
|
|
|
- </TablixCell>
|
|
|
|
- <TablixCell>
|
|
|
|
- <CellContents>
|
|
|
|
- <Textbox Name="Textbox14">
|
|
|
|
- <CanGrow>true</CanGrow>
|
|
|
|
- <KeepTogether>true</KeepTogether>
|
|
|
|
- <Paragraphs>
|
|
|
|
- <Paragraph>
|
|
|
|
- <TextRuns>
|
|
|
|
- <TextRun>
|
|
|
|
- <Value>System CPU Utilization</Value>
|
|
|
|
- <Style>
|
|
|
|
- <FontSize>8pt</FontSize>
|
|
|
|
- <FontWeight>Bold</FontWeight>
|
|
|
|
- <Color>White</Color>
|
|
|
|
- </Style>
|
|
|
|
- </TextRun>
|
|
|
|
- </TextRuns>
|
|
|
|
- <Style>
|
|
|
|
- <TextAlign>Center</TextAlign>
|
|
|
|
- </Style>
|
|
|
|
- </Paragraph>
|
|
|
|
- </Paragraphs>
|
|
|
|
- <rd:DefaultName>Textbox14</rd:DefaultName>
|
|
|
|
- <Style>
|
|
|
|
- <Border>
|
|
|
|
- <Style>Solid</Style>
|
|
|
|
- </Border>
|
|
|
|
- <TopBorder>
|
|
|
|
- <Color>Black</Color>
|
|
|
|
- <Style>Solid</Style>
|
|
|
|
- <Width>1pt</Width>
|
|
|
|
- </TopBorder>
|
|
|
|
- <BottomBorder>
|
|
|
|
- <Color>Black</Color>
|
|
|
|
- <Style>Solid</Style>
|
|
|
|
- <Width>1pt</Width>
|
|
|
|
- </BottomBorder>
|
|
|
|
- <LeftBorder>
|
|
|
|
- <Color>Black</Color>
|
|
|
|
- <Style>Solid</Style>
|
|
|
|
- <Width>1pt</Width>
|
|
|
|
- </LeftBorder>
|
|
|
|
- <RightBorder>
|
|
|
|
- <Color>Black</Color>
|
|
|
|
- <Style>Solid</Style>
|
|
|
|
- <Width>1pt</Width>
|
|
|
|
- </RightBorder>
|
|
|
|
- <BackgroundColor>CornflowerBlue</BackgroundColor>
|
|
|
|
- <PaddingLeft>2pt</PaddingLeft>
|
|
|
|
- <PaddingRight>2pt</PaddingRight>
|
|
|
|
- <PaddingTop>2pt</PaddingTop>
|
|
|
|
- <PaddingBottom>2pt</PaddingBottom>
|
|
|
|
- </Style>
|
|
|
|
- </Textbox>
|
|
|
|
- </CellContents>
|
|
|
|
- </TablixCell>
|
|
|
|
- <TablixCell>
|
|
|
|
- <CellContents>
|
|
|
|
- <Textbox Name="Textbox16">
|
|
|
|
- <CanGrow>true</CanGrow>
|
|
|
|
- <KeepTogether>true</KeepTogether>
|
|
|
|
- <Paragraphs>
|
|
|
|
- <Paragraph>
|
|
|
|
- <TextRuns>
|
|
|
|
- <TextRun>
|
|
|
|
- <Value>SQL CPU Utilization</Value>
|
|
|
|
- <Style>
|
|
|
|
- <FontSize>8pt</FontSize>
|
|
|
|
- <FontWeight>Bold</FontWeight>
|
|
|
|
- <Color>White</Color>
|
|
|
|
- </Style>
|
|
|
|
- </TextRun>
|
|
|
|
- </TextRuns>
|
|
|
|
- <Style>
|
|
|
|
- <TextAlign>Center</TextAlign>
|
|
|
|
- </Style>
|
|
|
|
- </Paragraph>
|
|
|
|
- </Paragraphs>
|
|
|
|
- <rd:DefaultName>Textbox16</rd:DefaultName>
|
|
|
|
- <Style>
|
|
|
|
- <Border>
|
|
|
|
- <Style>Solid</Style>
|
|
|
|
- </Border>
|
|
|
|
- <TopBorder>
|
|
|
|
- <Color>Black</Color>
|
|
|
|
- <Style>Solid</Style>
|
|
|
|
- <Width>1pt</Width>
|
|
|
|
- </TopBorder>
|
|
|
|
- <BottomBorder>
|
|
|
|
- <Color>Black</Color>
|
|
|
|
- <Style>Solid</Style>
|
|
|
|
- <Width>1pt</Width>
|
|
|
|
- </BottomBorder>
|
|
|
|
- <LeftBorder>
|
|
|
|
- <Color>Black</Color>
|
|
|
|
- <Style>Solid</Style>
|
|
|
|
- <Width>1pt</Width>
|
|
|
|
- </LeftBorder>
|
|
|
|
- <RightBorder>
|
|
|
|
- <Color>Black</Color>
|
|
|
|
- <Style>Solid</Style>
|
|
|
|
- <Width>1pt</Width>
|
|
|
|
- </RightBorder>
|
|
|
|
- <BackgroundColor>CornflowerBlue</BackgroundColor>
|
|
|
|
- <PaddingLeft>2pt</PaddingLeft>
|
|
|
|
- <PaddingRight>2pt</PaddingRight>
|
|
|
|
- <PaddingTop>2pt</PaddingTop>
|
|
|
|
- <PaddingBottom>2pt</PaddingBottom>
|
|
|
|
- </Style>
|
|
|
|
- </Textbox>
|
|
|
|
- </CellContents>
|
|
|
|
- </TablixCell>
|
|
|
|
- <TablixCell>
|
|
|
|
- <CellContents>
|
|
|
|
- <Textbox Name="Textbox19">
|
|
|
|
- <CanGrow>true</CanGrow>
|
|
|
|
- <KeepTogether>true</KeepTogether>
|
|
|
|
- <Paragraphs>
|
|
|
|
- <Paragraph>
|
|
|
|
- <TextRuns>
|
|
|
|
- <TextRun>
|
|
|
|
- <Value>Bad Pages Detected</Value>
|
|
|
|
- <Style>
|
|
|
|
- <FontSize>8pt</FontSize>
|
|
|
|
- <FontWeight>Bold</FontWeight>
|
|
|
|
- <Color>White</Color>
|
|
|
|
- </Style>
|
|
|
|
- </TextRun>
|
|
|
|
- </TextRuns>
|
|
|
|
- <Style>
|
|
|
|
- <TextAlign>Center</TextAlign>
|
|
|
|
- </Style>
|
|
|
|
- </Paragraph>
|
|
|
|
- </Paragraphs>
|
|
|
|
- <rd:DefaultName>Textbox19</rd:DefaultName>
|
|
|
|
- <Style>
|
|
|
|
- <Border>
|
|
|
|
- <Style>Solid</Style>
|
|
|
|
- </Border>
|
|
|
|
- <TopBorder>
|
|
|
|
- <Color>Black</Color>
|
|
|
|
- <Style>Solid</Style>
|
|
|
|
- <Width>1pt</Width>
|
|
|
|
- </TopBorder>
|
|
|
|
- <BottomBorder>
|
|
|
|
- <Color>Black</Color>
|
|
|
|
- <Style>Solid</Style>
|
|
|
|
- <Width>1pt</Width>
|
|
|
|
- </BottomBorder>
|
|
|
|
- <LeftBorder>
|
|
|
|
- <Color>Black</Color>
|
|
|
|
- <Style>Solid</Style>
|
|
|
|
- <Width>1pt</Width>
|
|
|
|
- </LeftBorder>
|
|
|
|
- <RightBorder>
|
|
|
|
- <Color>Black</Color>
|
|
|
|
- <Style>Solid</Style>
|
|
|
|
- <Width>1pt</Width>
|
|
|
|
- </RightBorder>
|
|
|
|
- <BackgroundColor>CornflowerBlue</BackgroundColor>
|
|
|
|
- <PaddingLeft>2pt</PaddingLeft>
|
|
|
|
- <PaddingRight>2pt</PaddingRight>
|
|
|
|
- <PaddingTop>2pt</PaddingTop>
|
|
|
|
- <PaddingBottom>2pt</PaddingBottom>
|
|
|
|
- </Style>
|
|
|
|
- </Textbox>
|
|
|
|
- </CellContents>
|
|
|
|
- </TablixCell>
|
|
|
|
- <TablixCell>
|
|
|
|
- <CellContents>
|
|
|
|
- <Textbox Name="Textbox21">
|
|
|
|
- <CanGrow>true</CanGrow>
|
|
|
|
- <KeepTogether>true</KeepTogether>
|
|
|
|
- <Paragraphs>
|
|
|
|
- <Paragraph>
|
|
|
|
- <TextRuns>
|
|
|
|
- <TextRun>
|
|
|
|
- <Value>Bad Pages Fixed</Value>
|
|
|
|
- <Style>
|
|
|
|
- <FontSize>8pt</FontSize>
|
|
|
|
- <FontWeight>Bold</FontWeight>
|
|
|
|
- <Color>White</Color>
|
|
|
|
- </Style>
|
|
|
|
- </TextRun>
|
|
|
|
- </TextRuns>
|
|
|
|
- <Style>
|
|
|
|
- <TextAlign>Center</TextAlign>
|
|
|
|
- </Style>
|
|
|
|
- </Paragraph>
|
|
|
|
- </Paragraphs>
|
|
|
|
- <rd:DefaultName>Textbox21</rd:DefaultName>
|
|
|
|
- <Style>
|
|
|
|
- <Border>
|
|
|
|
- <Style>Solid</Style>
|
|
|
|
- </Border>
|
|
|
|
- <TopBorder>
|
|
|
|
- <Color>Black</Color>
|
|
|
|
- <Style>Solid</Style>
|
|
|
|
- <Width>1pt</Width>
|
|
|
|
- </TopBorder>
|
|
|
|
- <BottomBorder>
|
|
|
|
- <Color>Black</Color>
|
|
|
|
- <Style>Solid</Style>
|
|
|
|
- <Width>1pt</Width>
|
|
|
|
- </BottomBorder>
|
|
|
|
- <LeftBorder>
|
|
|
|
- <Color>Black</Color>
|
|
|
|
- <Style>Solid</Style>
|
|
|
|
- <Width>1pt</Width>
|
|
|
|
- </LeftBorder>
|
|
|
|
- <RightBorder>
|
|
|
|
- <Color>Black</Color>
|
|
|
|
- <Style>Solid</Style>
|
|
|
|
- <Width>1pt</Width>
|
|
|
|
- </RightBorder>
|
|
|
|
- <BackgroundColor>CornflowerBlue</BackgroundColor>
|
|
|
|
- <PaddingLeft>2pt</PaddingLeft>
|
|
|
|
- <PaddingRight>2pt</PaddingRight>
|
|
|
|
- <PaddingTop>2pt</PaddingTop>
|
|
|
|
- <PaddingBottom>2pt</PaddingBottom>
|
|
|
|
- </Style>
|
|
|
|
- </Textbox>
|
|
|
|
- </CellContents>
|
|
|
|
- </TablixCell>
|
|
|
|
- </TablixCells>
|
|
|
|
- </TablixRow>
|
|
|
|
- <TablixRow>
|
|
|
|
- <Height>0.25in</Height>
|
|
|
|
- <TablixCells>
|
|
|
|
- <TablixCell>
|
|
|
|
- <CellContents>
|
|
|
|
- <Textbox Name="Event_Time">
|
|
|
|
- <CanGrow>true</CanGrow>
|
|
|
|
- <KeepTogether>true</KeepTogether>
|
|
|
|
- <Paragraphs>
|
|
|
|
- <Paragraph>
|
|
|
|
- <TextRuns>
|
|
|
|
- <TextRun>
|
|
|
|
- <Value>=Fields!Event_Time.Value</Value>
|
|
|
|
- <Style />
|
|
|
|
- </TextRun>
|
|
|
|
- </TextRuns>
|
|
|
|
- <Style>
|
|
|
|
- <TextAlign>Left</TextAlign>
|
|
|
|
- </Style>
|
|
|
|
- </Paragraph>
|
|
|
|
- </Paragraphs>
|
|
|
|
- <rd:DefaultName>Event_Time</rd:DefaultName>
|
|
|
|
- <Style>
|
|
|
|
- <Border>
|
|
|
|
- <Style>Solid</Style>
|
|
|
|
- </Border>
|
|
|
|
- <TopBorder>
|
|
|
|
- <Color>Black</Color>
|
|
|
|
- <Style>Solid</Style>
|
|
|
|
- <Width>1pt</Width>
|
|
|
|
- </TopBorder>
|
|
|
|
- <BottomBorder>
|
|
|
|
- <Color>Black</Color>
|
|
|
|
- <Style>Solid</Style>
|
|
|
|
- <Width>1pt</Width>
|
|
|
|
- </BottomBorder>
|
|
|
|
- <LeftBorder>
|
|
|
|
- <Color>Black</Color>
|
|
|
|
- <Style>Solid</Style>
|
|
|
|
- <Width>1pt</Width>
|
|
|
|
- </LeftBorder>
|
|
|
|
- <RightBorder>
|
|
|
|
- <Color>Black</Color>
|
|
|
|
- <Style>Solid</Style>
|
|
|
|
- <Width>1pt</Width>
|
|
|
|
- </RightBorder>
|
|
|
|
- <PaddingLeft>2pt</PaddingLeft>
|
|
|
|
- <PaddingRight>2pt</PaddingRight>
|
|
|
|
- <PaddingTop>2pt</PaddingTop>
|
|
|
|
- <PaddingBottom>2pt</PaddingBottom>
|
|
|
|
- </Style>
|
|
|
|
- </Textbox>
|
|
|
|
- </CellContents>
|
|
|
|
- </TablixCell>
|
|
|
|
- <TablixCell>
|
|
|
|
- <CellContents>
|
|
|
|
- <Textbox Name="Latch_Warnings">
|
|
|
|
- <CanGrow>true</CanGrow>
|
|
|
|
- <KeepTogether>true</KeepTogether>
|
|
|
|
- <Paragraphs>
|
|
|
|
- <Paragraph>
|
|
|
|
- <TextRuns>
|
|
|
|
- <TextRun>
|
|
|
|
- <Value>=Fields!Latch_Warnings.Value</Value>
|
|
|
|
- <Style />
|
|
|
|
- </TextRun>
|
|
|
|
- </TextRuns>
|
|
|
|
- <Style>
|
|
|
|
- <TextAlign>Left</TextAlign>
|
|
|
|
- </Style>
|
|
|
|
- </Paragraph>
|
|
|
|
- </Paragraphs>
|
|
|
|
- <rd:DefaultName>Latch_Warnings</rd:DefaultName>
|
|
|
|
- <Style>
|
|
|
|
- <Border>
|
|
|
|
- <Style>Solid</Style>
|
|
|
|
- </Border>
|
|
|
|
- <TopBorder>
|
|
|
|
- <Color>Black</Color>
|
|
|
|
- <Style>Solid</Style>
|
|
|
|
- <Width>1pt</Width>
|
|
|
|
- </TopBorder>
|
|
|
|
- <BottomBorder>
|
|
|
|
- <Color>Black</Color>
|
|
|
|
- <Style>Solid</Style>
|
|
|
|
- <Width>1pt</Width>
|
|
|
|
- </BottomBorder>
|
|
|
|
- <LeftBorder>
|
|
|
|
- <Color>Black</Color>
|
|
|
|
- <Style>Solid</Style>
|
|
|
|
- <Width>1pt</Width>
|
|
|
|
- </LeftBorder>
|
|
|
|
- <RightBorder>
|
|
|
|
- <Color>Black</Color>
|
|
|
|
- <Style>Solid</Style>
|
|
|
|
- <Width>1pt</Width>
|
|
|
|
- </RightBorder>
|
|
|
|
- <PaddingLeft>2pt</PaddingLeft>
|
|
|
|
- <PaddingRight>2pt</PaddingRight>
|
|
|
|
- <PaddingTop>2pt</PaddingTop>
|
|
|
|
- <PaddingBottom>2pt</PaddingBottom>
|
|
|
|
- </Style>
|
|
|
|
- </Textbox>
|
|
|
|
- </CellContents>
|
|
|
|
- </TablixCell>
|
|
|
|
- <TablixCell>
|
|
|
|
- <CellContents>
|
|
|
|
- <Textbox Name="Access_Violations">
|
|
|
|
- <CanGrow>true</CanGrow>
|
|
|
|
- <KeepTogether>true</KeepTogether>
|
|
|
|
- <Paragraphs>
|
|
|
|
- <Paragraph>
|
|
|
|
- <TextRuns>
|
|
|
|
- <TextRun>
|
|
|
|
- <Value>=Fields!Access_Violations.Value</Value>
|
|
|
|
- <Style />
|
|
|
|
- </TextRun>
|
|
|
|
- </TextRuns>
|
|
|
|
- <Style>
|
|
|
|
- <TextAlign>Left</TextAlign>
|
|
|
|
- </Style>
|
|
|
|
- </Paragraph>
|
|
|
|
- </Paragraphs>
|
|
|
|
- <rd:DefaultName>Access_Violations</rd:DefaultName>
|
|
|
|
- <Style>
|
|
|
|
- <Border>
|
|
|
|
- <Style>Solid</Style>
|
|
|
|
- </Border>
|
|
|
|
- <TopBorder>
|
|
|
|
- <Color>Black</Color>
|
|
|
|
- <Style>Solid</Style>
|
|
|
|
- <Width>1pt</Width>
|
|
|
|
- </TopBorder>
|
|
|
|
- <BottomBorder>
|
|
|
|
- <Color>Black</Color>
|
|
|
|
- <Style>Solid</Style>
|
|
|
|
- <Width>1pt</Width>
|
|
|
|
- </BottomBorder>
|
|
|
|
- <LeftBorder>
|
|
|
|
- <Color>Black</Color>
|
|
|
|
- <Style>Solid</Style>
|
|
|
|
- <Width>1pt</Width>
|
|
|
|
- </LeftBorder>
|
|
|
|
- <RightBorder>
|
|
|
|
- <Color>Black</Color>
|
|
|
|
- <Style>Solid</Style>
|
|
|
|
- <Width>1pt</Width>
|
|
|
|
- </RightBorder>
|
|
|
|
- <PaddingLeft>2pt</PaddingLeft>
|
|
|
|
- <PaddingRight>2pt</PaddingRight>
|
|
|
|
- <PaddingTop>2pt</PaddingTop>
|
|
|
|
- <PaddingBottom>2pt</PaddingBottom>
|
|
|
|
- </Style>
|
|
|
|
- </Textbox>
|
|
|
|
- </CellContents>
|
|
|
|
- </TablixCell>
|
|
|
|
- <TablixCell>
|
|
|
|
- <CellContents>
|
|
|
|
- <Textbox Name="Non_Yields_Reported">
|
|
|
|
- <CanGrow>true</CanGrow>
|
|
|
|
- <KeepTogether>true</KeepTogether>
|
|
|
|
- <Paragraphs>
|
|
|
|
- <Paragraph>
|
|
|
|
- <TextRuns>
|
|
|
|
- <TextRun>
|
|
|
|
- <Value>=Fields!Non_Yields_Reported.Value</Value>
|
|
|
|
- <Style />
|
|
|
|
- </TextRun>
|
|
|
|
- </TextRuns>
|
|
|
|
- <Style>
|
|
|
|
- <TextAlign>Left</TextAlign>
|
|
|
|
- </Style>
|
|
|
|
- </Paragraph>
|
|
|
|
- </Paragraphs>
|
|
|
|
- <rd:DefaultName>Non_Yields_Reported</rd:DefaultName>
|
|
|
|
- <Style>
|
|
|
|
- <Border>
|
|
|
|
- <Style>Solid</Style>
|
|
|
|
- </Border>
|
|
|
|
- <TopBorder>
|
|
|
|
- <Color>Black</Color>
|
|
|
|
- <Style>Solid</Style>
|
|
|
|
- <Width>1pt</Width>
|
|
|
|
- </TopBorder>
|
|
|
|
- <BottomBorder>
|
|
|
|
- <Color>Black</Color>
|
|
|
|
- <Style>Solid</Style>
|
|
|
|
- <Width>1pt</Width>
|
|
|
|
- </BottomBorder>
|
|
|
|
- <LeftBorder>
|
|
|
|
- <Color>Black</Color>
|
|
|
|
- <Style>Solid</Style>
|
|
|
|
- <Width>1pt</Width>
|
|
|
|
- </LeftBorder>
|
|
|
|
- <RightBorder>
|
|
|
|
- <Color>Black</Color>
|
|
|
|
- <Style>Solid</Style>
|
|
|
|
- <Width>1pt</Width>
|
|
|
|
- </RightBorder>
|
|
|
|
- <PaddingLeft>2pt</PaddingLeft>
|
|
|
|
- <PaddingRight>2pt</PaddingRight>
|
|
|
|
- <PaddingTop>2pt</PaddingTop>
|
|
|
|
- <PaddingBottom>2pt</PaddingBottom>
|
|
|
|
- </Style>
|
|
|
|
- </Textbox>
|
|
|
|
- </CellContents>
|
|
|
|
- </TablixCell>
|
|
|
|
- <TablixCell>
|
|
|
|
- <CellContents>
|
|
|
|
- <Textbox Name="Non_Yields_Reported1">
|
|
|
|
- <CanGrow>true</CanGrow>
|
|
|
|
- <KeepTogether>true</KeepTogether>
|
|
|
|
- <Paragraphs>
|
|
|
|
- <Paragraph>
|
|
|
|
- <TextRuns>
|
|
|
|
- <TextRun>
|
|
|
|
- <Value>=Fields!Non_Yields_Reported.Value</Value>
|
|
|
|
- <Style />
|
|
|
|
- </TextRun>
|
|
|
|
- </TextRuns>
|
|
|
|
- <Style>
|
|
|
|
- <TextAlign>Left</TextAlign>
|
|
|
|
- </Style>
|
|
|
|
- </Paragraph>
|
|
|
|
- </Paragraphs>
|
|
|
|
- <rd:DefaultName>Non_Yields_Reported1</rd:DefaultName>
|
|
|
|
- <Style>
|
|
|
|
- <Border>
|
|
|
|
- <Style>Solid</Style>
|
|
|
|
- </Border>
|
|
|
|
- <TopBorder>
|
|
|
|
- <Color>Black</Color>
|
|
|
|
- <Style>Solid</Style>
|
|
|
|
- <Width>1pt</Width>
|
|
|
|
- </TopBorder>
|
|
|
|
- <BottomBorder>
|
|
|
|
- <Color>Black</Color>
|
|
|
|
- <Style>Solid</Style>
|
|
|
|
- <Width>1pt</Width>
|
|
|
|
- </BottomBorder>
|
|
|
|
- <LeftBorder>
|
|
|
|
- <Color>Black</Color>
|
|
|
|
- <Style>Solid</Style>
|
|
|
|
- <Width>1pt</Width>
|
|
|
|
- </LeftBorder>
|
|
|
|
- <RightBorder>
|
|
|
|
- <Color>Black</Color>
|
|
|
|
- <Style>Solid</Style>
|
|
|
|
- <Width>1pt</Width>
|
|
|
|
- </RightBorder>
|
|
|
|
- <PaddingLeft>2pt</PaddingLeft>
|
|
|
|
- <PaddingRight>2pt</PaddingRight>
|
|
|
|
- <PaddingTop>2pt</PaddingTop>
|
|
|
|
- <PaddingBottom>2pt</PaddingBottom>
|
|
|
|
- </Style>
|
|
|
|
- </Textbox>
|
|
|
|
- </CellContents>
|
|
|
|
- </TablixCell>
|
|
|
|
- <TablixCell>
|
|
|
|
- <CellContents>
|
|
|
|
- <Textbox Name="Page_Faults">
|
|
|
|
- <CanGrow>true</CanGrow>
|
|
|
|
- <KeepTogether>true</KeepTogether>
|
|
|
|
- <Paragraphs>
|
|
|
|
- <Paragraph>
|
|
|
|
- <TextRuns>
|
|
|
|
- <TextRun>
|
|
|
|
- <Value>=Fields!Page_Faults.Value</Value>
|
|
|
|
- <Style />
|
|
|
|
- </TextRun>
|
|
|
|
- </TextRuns>
|
|
|
|
- <Style>
|
|
|
|
- <TextAlign>Left</TextAlign>
|
|
|
|
- </Style>
|
|
|
|
- </Paragraph>
|
|
|
|
- </Paragraphs>
|
|
|
|
- <rd:DefaultName>Page_Faults</rd:DefaultName>
|
|
|
|
- <Style>
|
|
|
|
- <Border>
|
|
|
|
- <Style>Solid</Style>
|
|
|
|
- </Border>
|
|
|
|
- <TopBorder>
|
|
|
|
- <Color>Black</Color>
|
|
|
|
- <Style>Solid</Style>
|
|
|
|
- <Width>1pt</Width>
|
|
|
|
- </TopBorder>
|
|
|
|
- <BottomBorder>
|
|
|
|
- <Color>Black</Color>
|
|
|
|
- <Style>Solid</Style>
|
|
|
|
- <Width>1pt</Width>
|
|
|
|
- </BottomBorder>
|
|
|
|
- <LeftBorder>
|
|
|
|
- <Color>Black</Color>
|
|
|
|
- <Style>Solid</Style>
|
|
|
|
- <Width>1pt</Width>
|
|
|
|
- </LeftBorder>
|
|
|
|
- <RightBorder>
|
|
|
|
- <Color>Black</Color>
|
|
|
|
- <Style>Solid</Style>
|
|
|
|
- <Width>1pt</Width>
|
|
|
|
- </RightBorder>
|
|
|
|
- <PaddingLeft>2pt</PaddingLeft>
|
|
|
|
- <PaddingRight>2pt</PaddingRight>
|
|
|
|
- <PaddingTop>2pt</PaddingTop>
|
|
|
|
- <PaddingBottom>2pt</PaddingBottom>
|
|
|
|
- </Style>
|
|
|
|
- </Textbox>
|
|
|
|
- </CellContents>
|
|
|
|
- </TablixCell>
|
|
|
|
- <TablixCell>
|
|
|
|
- <CellContents>
|
|
|
|
- <Textbox Name="System_CPU_Utilization">
|
|
|
|
- <CanGrow>true</CanGrow>
|
|
|
|
- <KeepTogether>true</KeepTogether>
|
|
|
|
- <Paragraphs>
|
|
|
|
- <Paragraph>
|
|
|
|
- <TextRuns>
|
|
|
|
- <TextRun>
|
|
|
|
- <Value>=Fields!System_CPU_Utilization.Value</Value>
|
|
|
|
- <Style />
|
|
|
|
- </TextRun>
|
|
|
|
- </TextRuns>
|
|
|
|
- <Style>
|
|
|
|
- <TextAlign>Left</TextAlign>
|
|
|
|
- </Style>
|
|
|
|
- </Paragraph>
|
|
|
|
- </Paragraphs>
|
|
|
|
- <rd:DefaultName>System_CPU_Utilization</rd:DefaultName>
|
|
|
|
- <Style>
|
|
|
|
- <Border>
|
|
|
|
- <Style>Solid</Style>
|
|
|
|
- </Border>
|
|
|
|
- <TopBorder>
|
|
|
|
- <Color>Black</Color>
|
|
|
|
- <Style>Solid</Style>
|
|
|
|
- <Width>1pt</Width>
|
|
|
|
- </TopBorder>
|
|
|
|
- <BottomBorder>
|
|
|
|
- <Color>Black</Color>
|
|
|
|
- <Style>Solid</Style>
|
|
|
|
- <Width>1pt</Width>
|
|
|
|
- </BottomBorder>
|
|
|
|
- <LeftBorder>
|
|
|
|
- <Color>Black</Color>
|
|
|
|
- <Style>Solid</Style>
|
|
|
|
- <Width>1pt</Width>
|
|
|
|
- </LeftBorder>
|
|
|
|
- <RightBorder>
|
|
|
|
- <Color>Black</Color>
|
|
|
|
- <Style>Solid</Style>
|
|
|
|
- <Width>1pt</Width>
|
|
|
|
- </RightBorder>
|
|
|
|
- <PaddingLeft>2pt</PaddingLeft>
|
|
|
|
- <PaddingRight>2pt</PaddingRight>
|
|
|
|
- <PaddingTop>2pt</PaddingTop>
|
|
|
|
- <PaddingBottom>2pt</PaddingBottom>
|
|
|
|
- </Style>
|
|
|
|
- </Textbox>
|
|
|
|
- </CellContents>
|
|
|
|
- </TablixCell>
|
|
|
|
- <TablixCell>
|
|
|
|
- <CellContents>
|
|
|
|
- <Textbox Name="SQL_CPU_Utilization">
|
|
|
|
- <CanGrow>true</CanGrow>
|
|
|
|
- <KeepTogether>true</KeepTogether>
|
|
|
|
- <Paragraphs>
|
|
|
|
- <Paragraph>
|
|
|
|
- <TextRuns>
|
|
|
|
- <TextRun>
|
|
|
|
- <Value>=Fields!SQL_CPU_Utilization.Value</Value>
|
|
|
|
- <Style />
|
|
|
|
- </TextRun>
|
|
|
|
- </TextRuns>
|
|
|
|
- <Style>
|
|
|
|
- <TextAlign>Left</TextAlign>
|
|
|
|
- </Style>
|
|
|
|
- </Paragraph>
|
|
|
|
- </Paragraphs>
|
|
|
|
- <rd:DefaultName>SQL_CPU_Utilization</rd:DefaultName>
|
|
|
|
- <Style>
|
|
|
|
- <Border>
|
|
|
|
- <Style>Solid</Style>
|
|
|
|
- </Border>
|
|
|
|
- <TopBorder>
|
|
|
|
- <Color>Black</Color>
|
|
|
|
- <Style>Solid</Style>
|
|
|
|
- <Width>1pt</Width>
|
|
|
|
- </TopBorder>
|
|
|
|
- <BottomBorder>
|
|
|
|
- <Color>Black</Color>
|
|
|
|
- <Style>Solid</Style>
|
|
|
|
- <Width>1pt</Width>
|
|
|
|
- </BottomBorder>
|
|
|
|
- <LeftBorder>
|
|
|
|
- <Color>Black</Color>
|
|
|
|
- <Style>Solid</Style>
|
|
|
|
- <Width>1pt</Width>
|
|
|
|
- </LeftBorder>
|
|
|
|
- <RightBorder>
|
|
|
|
- <Color>Black</Color>
|
|
|
|
- <Style>Solid</Style>
|
|
|
|
- <Width>1pt</Width>
|
|
|
|
- </RightBorder>
|
|
|
|
- <PaddingLeft>2pt</PaddingLeft>
|
|
|
|
- <PaddingRight>2pt</PaddingRight>
|
|
|
|
- <PaddingTop>2pt</PaddingTop>
|
|
|
|
- <PaddingBottom>2pt</PaddingBottom>
|
|
|
|
- </Style>
|
|
|
|
- </Textbox>
|
|
|
|
- </CellContents>
|
|
|
|
- </TablixCell>
|
|
|
|
- <TablixCell>
|
|
|
|
- <CellContents>
|
|
|
|
- <Textbox Name="Bad_Pages_Detected">
|
|
|
|
- <CanGrow>true</CanGrow>
|
|
|
|
- <KeepTogether>true</KeepTogether>
|
|
|
|
- <Paragraphs>
|
|
|
|
- <Paragraph>
|
|
|
|
- <TextRuns>
|
|
|
|
- <TextRun>
|
|
|
|
- <Value>=Fields!Bad_Pages_Detected.Value</Value>
|
|
|
|
- <Style />
|
|
|
|
- </TextRun>
|
|
|
|
- </TextRuns>
|
|
|
|
- <Style>
|
|
|
|
- <TextAlign>Left</TextAlign>
|
|
|
|
- </Style>
|
|
|
|
- </Paragraph>
|
|
|
|
- </Paragraphs>
|
|
|
|
- <rd:DefaultName>Bad_Pages_Detected</rd:DefaultName>
|
|
|
|
- <Style>
|
|
|
|
- <Border>
|
|
|
|
- <Style>Solid</Style>
|
|
|
|
- </Border>
|
|
|
|
- <TopBorder>
|
|
|
|
- <Color>Black</Color>
|
|
|
|
- <Style>Solid</Style>
|
|
|
|
- <Width>1pt</Width>
|
|
|
|
- </TopBorder>
|
|
|
|
- <BottomBorder>
|
|
|
|
- <Color>Black</Color>
|
|
|
|
- <Style>Solid</Style>
|
|
|
|
- <Width>1pt</Width>
|
|
|
|
- </BottomBorder>
|
|
|
|
- <LeftBorder>
|
|
|
|
- <Color>Black</Color>
|
|
|
|
- <Style>Solid</Style>
|
|
|
|
- <Width>1pt</Width>
|
|
|
|
- </LeftBorder>
|
|
|
|
- <RightBorder>
|
|
|
|
- <Color>Black</Color>
|
|
|
|
- <Style>Solid</Style>
|
|
|
|
- <Width>1pt</Width>
|
|
|
|
- </RightBorder>
|
|
|
|
- <PaddingLeft>2pt</PaddingLeft>
|
|
|
|
- <PaddingRight>2pt</PaddingRight>
|
|
|
|
- <PaddingTop>2pt</PaddingTop>
|
|
|
|
- <PaddingBottom>2pt</PaddingBottom>
|
|
|
|
- </Style>
|
|
|
|
- </Textbox>
|
|
|
|
- </CellContents>
|
|
|
|
- </TablixCell>
|
|
|
|
- <TablixCell>
|
|
|
|
- <CellContents>
|
|
|
|
- <Textbox Name="Bad_Pages_Fixed">
|
|
|
|
- <CanGrow>true</CanGrow>
|
|
|
|
- <KeepTogether>true</KeepTogether>
|
|
|
|
- <Paragraphs>
|
|
|
|
- <Paragraph>
|
|
|
|
- <TextRuns>
|
|
|
|
- <TextRun>
|
|
|
|
- <Value>=Fields!Bad_Pages_Fixed.Value</Value>
|
|
|
|
- <Style />
|
|
|
|
- </TextRun>
|
|
|
|
- </TextRuns>
|
|
|
|
- <Style>
|
|
|
|
- <TextAlign>Left</TextAlign>
|
|
|
|
- </Style>
|
|
|
|
- </Paragraph>
|
|
|
|
- </Paragraphs>
|
|
|
|
- <rd:DefaultName>Bad_Pages_Fixed</rd:DefaultName>
|
|
|
|
- <Style>
|
|
|
|
- <Border>
|
|
|
|
- <Style>Solid</Style>
|
|
|
|
- </Border>
|
|
|
|
- <TopBorder>
|
|
|
|
- <Color>Black</Color>
|
|
|
|
- <Style>Solid</Style>
|
|
|
|
- <Width>1pt</Width>
|
|
|
|
- </TopBorder>
|
|
|
|
- <BottomBorder>
|
|
|
|
- <Color>Black</Color>
|
|
|
|
- <Style>Solid</Style>
|
|
|
|
- <Width>1pt</Width>
|
|
|
|
- </BottomBorder>
|
|
|
|
- <LeftBorder>
|
|
|
|
- <Color>Black</Color>
|
|
|
|
- <Style>Solid</Style>
|
|
|
|
- <Width>1pt</Width>
|
|
|
|
- </LeftBorder>
|
|
|
|
- <RightBorder>
|
|
|
|
- <Color>Black</Color>
|
|
|
|
- <Style>Solid</Style>
|
|
|
|
- <Width>1pt</Width>
|
|
|
|
- </RightBorder>
|
|
|
|
- <PaddingLeft>2pt</PaddingLeft>
|
|
|
|
- <PaddingRight>2pt</PaddingRight>
|
|
|
|
- <PaddingTop>2pt</PaddingTop>
|
|
|
|
- <PaddingBottom>2pt</PaddingBottom>
|
|
|
|
- </Style>
|
|
|
|
- </Textbox>
|
|
|
|
- </CellContents>
|
|
|
|
- </TablixCell>
|
|
|
|
- </TablixCells>
|
|
|
|
- </TablixRow>
|
|
|
|
- </TablixRows>
|
|
|
|
- </TablixBody>
|
|
|
|
- <TablixColumnHierarchy>
|
|
|
|
- <TablixMembers>
|
|
|
|
- <TablixMember />
|
|
|
|
- <TablixMember />
|
|
|
|
- <TablixMember />
|
|
|
|
- <TablixMember />
|
|
|
|
- <TablixMember />
|
|
|
|
- <TablixMember />
|
|
|
|
- <TablixMember />
|
|
|
|
- <TablixMember />
|
|
|
|
- <TablixMember />
|
|
|
|
- <TablixMember />
|
|
|
|
- </TablixMembers>
|
|
|
|
- </TablixColumnHierarchy>
|
|
|
|
- <TablixRowHierarchy>
|
|
|
|
- <TablixMembers>
|
|
|
|
- <TablixMember>
|
|
|
|
- <KeepWithGroup>After</KeepWithGroup>
|
|
|
|
- </TablixMember>
|
|
|
|
- <TablixMember>
|
|
|
|
- <Group Name="Details" />
|
|
|
|
- </TablixMember>
|
|
|
|
- </TablixMembers>
|
|
|
|
- </TablixRowHierarchy>
|
|
|
|
- <RepeatColumnHeaders>true</RepeatColumnHeaders>
|
|
|
|
- <RepeatRowHeaders>true</RepeatRowHeaders>
|
|
|
|
- <FixedColumnHeaders>true</FixedColumnHeaders>
|
|
|
|
- <FixedRowHeaders>true</FixedRowHeaders>
|
|
|
|
- <DataSetName>DS_System</DataSetName>
|
|
|
|
- <Top>1.09666in</Top>
|
|
|
|
- <Left>0.12167in</Left>
|
|
|
|
- <Height>0.78333in</Height>
|
|
|
|
- <Width>11.06667in</Width>
|
|
|
|
- <ZIndex>2</ZIndex>
|
|
|
|
- <Style>
|
|
|
|
- <Border>
|
|
|
|
- <Style>None</Style>
|
|
|
|
- </Border>
|
|
|
|
- </Style>
|
|
|
|
- </Tablix>
|
|
|
|
- <Textbox Name="Textbox61">
|
|
|
|
- <CanGrow>true</CanGrow>
|
|
|
|
- <KeepTogether>true</KeepTogether>
|
|
|
|
- <Paragraphs>
|
|
|
|
- <Paragraph>
|
|
|
|
- <TextRuns>
|
|
|
|
- <TextRun>
|
|
|
|
- <Value>Resource Component Data:</Value>
|
|
|
|
- <Style>
|
|
|
|
- <FontStyle>Italic</FontStyle>
|
|
|
|
- <FontWeight>Bold</FontWeight>
|
|
|
|
- <Color>White</Color>
|
|
|
|
- </Style>
|
|
|
|
- </TextRun>
|
|
|
|
- </TextRuns>
|
|
|
|
- <Style />
|
|
|
|
- </Paragraph>
|
|
|
|
- </Paragraphs>
|
|
|
|
- <rd:DefaultName>Textbox61</rd:DefaultName>
|
|
|
|
- <Top>0.77722in</Top>
|
|
|
|
- <Left>0.12167in</Left>
|
|
|
|
- <Height>0.25in</Height>
|
|
|
|
- <Width>12.49166in</Width>
|
|
|
|
- <ZIndex>3</ZIndex>
|
|
|
|
- <Style>
|
|
|
|
- <Border>
|
|
|
|
- <Style>Solid</Style>
|
|
|
|
- </Border>
|
|
|
|
- <TopBorder>
|
|
|
|
- <Color>Black</Color>
|
|
|
|
- <Style>Solid</Style>
|
|
|
|
- <Width>1pt</Width>
|
|
|
|
- </TopBorder>
|
|
|
|
- <BottomBorder>
|
|
|
|
- <Color>Black</Color>
|
|
|
|
- <Style>Solid</Style>
|
|
|
|
- <Width>1pt</Width>
|
|
|
|
- </BottomBorder>
|
|
|
|
- <LeftBorder>
|
|
|
|
- <Color>Black</Color>
|
|
|
|
- <Style>Solid</Style>
|
|
|
|
- <Width>1pt</Width>
|
|
|
|
- </LeftBorder>
|
|
|
|
- <RightBorder>
|
|
|
|
- <Color>Black</Color>
|
|
|
|
- <Style>Solid</Style>
|
|
|
|
- <Width>1pt</Width>
|
|
|
|
- </RightBorder>
|
|
|
|
- <BackgroundColor>CornflowerBlue</BackgroundColor>
|
|
|
|
- <PaddingLeft>2pt</PaddingLeft>
|
|
|
|
- <PaddingRight>2pt</PaddingRight>
|
|
|
|
- <PaddingTop>2pt</PaddingTop>
|
|
|
|
- <PaddingBottom>2pt</PaddingBottom>
|
|
|
|
- </Style>
|
|
|
|
- </Textbox>
|
|
|
|
- </ReportItems>
|
|
|
|
- <Height>2.00222in</Height>
|
|
|
|
- <Style>
|
|
|
|
- <Border>
|
|
|
|
- <Color>Silver</Color>
|
|
|
|
- <Style>Solid</Style>
|
|
|
|
- </Border>
|
|
|
|
- <TopBorder>
|
|
|
|
- <Color>Silver</Color>
|
|
|
|
- <Style>Solid</Style>
|
|
|
|
- <Width>1pt</Width>
|
|
|
|
- </TopBorder>
|
|
|
|
- <BottomBorder>
|
|
|
|
- <Color>Silver</Color>
|
|
|
|
- <Style>Solid</Style>
|
|
|
|
- <Width>1pt</Width>
|
|
|
|
- </BottomBorder>
|
|
|
|
- <LeftBorder>
|
|
|
|
- <Color>Silver</Color>
|
|
|
|
- <Style>Solid</Style>
|
|
|
|
- <Width>1pt</Width>
|
|
|
|
- </LeftBorder>
|
|
|
|
- <RightBorder>
|
|
|
|
- <Color>Silver</Color>
|
|
|
|
- <Style>Solid</Style>
|
|
|
|
- <Width>1pt</Width>
|
|
|
|
- </RightBorder>
|
|
|
|
- </Style>
|
|
|
|
- </Body>
|
|
|
|
- <Width>12.75848in</Width>
|
|
|
|
- <Page>
|
|
|
|
- <PageHeader>
|
|
|
|
- <Height>0.7175in</Height>
|
|
|
|
- <PrintOnFirstPage>true</PrintOnFirstPage>
|
|
|
|
- <PrintOnLastPage>true</PrintOnLastPage>
|
|
|
|
- <ReportItems>
|
|
|
|
- <Textbox Name="Textbox2">
|
|
|
|
- <CanGrow>true</CanGrow>
|
|
|
|
- <KeepTogether>true</KeepTogether>
|
|
|
|
- <Paragraphs>
|
|
|
|
- <Paragraph>
|
|
|
|
- <TextRuns>
|
|
|
|
- <TextRun>
|
|
|
|
- <Value>= "SQL Server Health Session Dashboard on " + Parameters!vServerName.Value</Value>
|
|
|
|
- <Style>
|
|
|
|
- <FontSize>14pt</FontSize>
|
|
|
|
- <FontWeight>Bold</FontWeight>
|
|
|
|
- </Style>
|
|
|
|
- </TextRun>
|
|
|
|
- </TextRuns>
|
|
|
|
- <Style>
|
|
|
|
- <TextAlign>Center</TextAlign>
|
|
|
|
- </Style>
|
|
|
|
- </Paragraph>
|
|
|
|
- </Paragraphs>
|
|
|
|
- <rd:DefaultName>Textbox2</rd:DefaultName>
|
|
|
|
- <Top>0.24528in</Top>
|
|
|
|
- <Left>1.80694in</Left>
|
|
|
|
- <Height>0.44444in</Height>
|
|
|
|
- <Width>10.80639in</Width>
|
|
|
|
- <Style>
|
|
|
|
- <Border>
|
|
|
|
- <Style>None</Style>
|
|
|
|
- </Border>
|
|
|
|
- <BackgroundColor>White</BackgroundColor>
|
|
|
|
- <PaddingLeft>2pt</PaddingLeft>
|
|
|
|
- <PaddingRight>2pt</PaddingRight>
|
|
|
|
- <PaddingTop>2pt</PaddingTop>
|
|
|
|
- <PaddingBottom>2pt</PaddingBottom>
|
|
|
|
- </Style>
|
|
|
|
- </Textbox>
|
|
|
|
- <Image Name="Image1">
|
|
|
|
- <Source>Embedded</Source>
|
|
|
|
- <Value>Logo</Value>
|
|
|
|
- <Sizing>FitProportional</Sizing>
|
|
|
|
- <Height>0.69444in</Height>
|
|
|
|
- <Width>1.77916in</Width>
|
|
|
|
- <ZIndex>1</ZIndex>
|
|
|
|
- <Style>
|
|
|
|
- <Border>
|
|
|
|
- <Style>None</Style>
|
|
|
|
- </Border>
|
|
|
|
- </Style>
|
|
|
|
- </Image>
|
|
|
|
- </ReportItems>
|
|
|
|
- <Style>
|
|
|
|
- <Border>
|
|
|
|
- <Style>None</Style>
|
|
|
|
- </Border>
|
|
|
|
- </Style>
|
|
|
|
- </PageHeader>
|
|
|
|
- <PageFooter>
|
|
|
|
- <Height>0.44444in</Height>
|
|
|
|
- <PrintOnFirstPage>true</PrintOnFirstPage>
|
|
|
|
- <PrintOnLastPage>true</PrintOnLastPage>
|
|
|
|
- <ReportItems>
|
|
|
|
- <Textbox Name="Textbox1">
|
|
|
|
- <CanGrow>true</CanGrow>
|
|
|
|
- <KeepTogether>true</KeepTogether>
|
|
|
|
- <Paragraphs>
|
|
|
|
- <Paragraph>
|
|
|
|
- <TextRuns>
|
|
|
|
- <TextRun>
|
|
|
|
- <Value>= "Status as of local time: " + CStr(Globals!ExecutionTime) + " | Page " + CStr(Globals!PageNumber) + " of " + CStr(Globals!TotalPages)</Value>
|
|
|
|
- <Style>
|
|
|
|
- <FontSize>11pt</FontSize>
|
|
|
|
- <FontWeight>Bold</FontWeight>
|
|
|
|
- <Color>White</Color>
|
|
|
|
- </Style>
|
|
|
|
- </TextRun>
|
|
|
|
- </TextRuns>
|
|
|
|
- <Style>
|
|
|
|
- <TextAlign>Center</TextAlign>
|
|
|
|
- </Style>
|
|
|
|
- </Paragraph>
|
|
|
|
- </Paragraphs>
|
|
|
|
- <rd:DefaultName>Textbox1</rd:DefaultName>
|
|
|
|
- <Top>0.06944in</Top>
|
|
|
|
- <Height>0.375in</Height>
|
|
|
|
- <Width>12.75848in</Width>
|
|
|
|
- <Style>
|
|
|
|
- <Border>
|
|
|
|
- <Color>Silver</Color>
|
|
|
|
- <Style>Solid</Style>
|
|
|
|
- </Border>
|
|
|
|
- <TopBorder>
|
|
|
|
- <Color>Silver</Color>
|
|
|
|
- <Style>Solid</Style>
|
|
|
|
- <Width>1pt</Width>
|
|
|
|
- </TopBorder>
|
|
|
|
- <BottomBorder>
|
|
|
|
- <Color>Silver</Color>
|
|
|
|
- <Style>Solid</Style>
|
|
|
|
- <Width>1pt</Width>
|
|
|
|
- </BottomBorder>
|
|
|
|
- <LeftBorder>
|
|
|
|
- <Color>Silver</Color>
|
|
|
|
- <Style>Solid</Style>
|
|
|
|
- <Width>1pt</Width>
|
|
|
|
- </LeftBorder>
|
|
|
|
- <RightBorder>
|
|
|
|
- <Color>Silver</Color>
|
|
|
|
- <Style>Solid</Style>
|
|
|
|
- <Width>1pt</Width>
|
|
|
|
- </RightBorder>
|
|
|
|
- <BackgroundColor>CornflowerBlue</BackgroundColor>
|
|
|
|
- <PaddingLeft>2pt</PaddingLeft>
|
|
|
|
- <PaddingRight>2pt</PaddingRight>
|
|
|
|
- <PaddingTop>2pt</PaddingTop>
|
|
|
|
- <PaddingBottom>2pt</PaddingBottom>
|
|
|
|
- </Style>
|
|
|
|
- </Textbox>
|
|
|
|
- </ReportItems>
|
|
|
|
- <Style>
|
|
|
|
- <Border>
|
|
|
|
- <Style>None</Style>
|
|
|
|
- </Border>
|
|
|
|
- </Style>
|
|
|
|
- </PageFooter>
|
|
|
|
- <LeftMargin>1in</LeftMargin>
|
|
|
|
- <RightMargin>1in</RightMargin>
|
|
|
|
- <TopMargin>1in</TopMargin>
|
|
|
|
- <BottomMargin>1in</BottomMargin>
|
|
|
|
- <Style />
|
|
|
|
- </Page>
|
|
|
|
- </ReportSection>
|
|
|
|
- </ReportSections>
|
|
|
|
- <ReportParameters>
|
|
|
|
- <ReportParameter Name="vServerName">
|
|
|
|
- <DataType>String</DataType>
|
|
|
|
- <Prompt>Server Name</Prompt>
|
|
|
|
- <ValidValues>
|
|
|
|
- <ParameterValues>
|
|
|
|
- <ParameterValue>
|
|
|
|
- <Value>.</Value>
|
|
|
|
- <Label>MSSQLSERVER</Label>
|
|
|
|
- </ParameterValue>
|
|
|
|
- <ParameterValue>
|
|
|
|
- <Value>.\DENALI</Value>
|
|
|
|
- <Label>DENALI</Label>
|
|
|
|
- </ParameterValue>
|
|
|
|
- </ParameterValues>
|
|
|
|
- </ValidValues>
|
|
|
|
- </ReportParameter>
|
|
|
|
- <ReportParameter Name="StartTime">
|
|
|
|
- <DataType>String</DataType>
|
|
|
|
- <Prompt>Start Time</Prompt>
|
|
|
|
- <ValidValues>
|
|
|
|
- <DataSetReference>
|
|
|
|
- <DataSetName>DS_Time</DataSetName>
|
|
|
|
- <ValueField>Event_Time</ValueField>
|
|
|
|
- <LabelField>Event_Time</LabelField>
|
|
|
|
- </DataSetReference>
|
|
|
|
- </ValidValues>
|
|
|
|
- </ReportParameter>
|
|
|
|
- <ReportParameter Name="EndTime">
|
|
|
|
- <DataType>String</DataType>
|
|
|
|
- <Prompt>End Time</Prompt>
|
|
|
|
- <ValidValues>
|
|
|
|
- <DataSetReference>
|
|
|
|
- <DataSetName>DS_Time</DataSetName>
|
|
|
|
- <ValueField>Event_Time</ValueField>
|
|
|
|
- <LabelField>Event_Time</LabelField>
|
|
|
|
- </DataSetReference>
|
|
|
|
- </ValidValues>
|
|
|
|
- </ReportParameter>
|
|
|
|
- </ReportParameters>
|
|
|
|
- <EmbeddedImages>
|
|
|
|
- <EmbeddedImage Name="Logo">
|
|
|
|
- <MIMEType>image/png</MIMEType>
|
|
|
|
- <ImageData>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
-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
-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
-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
-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
-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
-+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
-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
-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
-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
-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
-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
-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
-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
-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</ImageData>
|
|
|
|
- </EmbeddedImage>
|
|
|
|
- </EmbeddedImages>
|
|
|
|
- <rd:ReportUnitType>Inch</rd:ReportUnitType>
|
|
|
|
- <rd:ReportID>9d0fc5cc-082e-414f-98e5-90293b1cb113</rd:ReportID>
|
|
|
|
-</Report>
|
|
|