Res.SystemCenter.Operations.Manager.Health.Check.Report.Library.Report.Misc.DatabaseState (ReportResource)

Element properties:

TypeReportResource
File NameSystemCenter.Operations.Manager.Health.Check.Report.Library.Report.Misc.DatabaseState.rdl
AccessibilityPublic

Source Code:

<ReportResource ID="Res.SystemCenter.Operations.Manager.Health.Check.Report.Library.Report.Misc.DatabaseState" Accessibility="Public" FileName="SystemCenter.Operations.Manager.Health.Check.Report.Library.Report.Misc.DatabaseState.rdl" HasNullStream="false" MIMEType="application/octet-stream"/>

File Content: SystemCenter.Operations.Manager.Health.Check.Report.Library.Report.Misc.DatabaseState.rdl

<?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="DataWarehouseMain">
<DataSourceReference>/Data Warehouse Main</DataSourceReference>
<rd:DataSourceID>e4235c51-407f-4065-8519-a1e57374bc45</rd:DataSourceID>
</DataSource>
<DataSource Name="OperationalDataBaseMain">
<DataSourceReference>/OperationalDataBaseMain</DataSourceReference>
<rd:DataSourceID>1fcb5fd0-249d-460a-9306-8af6d8d1a440</rd:DataSourceID>
</DataSource>
</DataSources>
<DataSets>
<DataSet Name="OMFreeSpace">
<Query>
<DataSourceName>OperationalDataBaseMain</DataSourceName>
<CommandText>select a.FILEID,
[FILE_SIZE_MB]=convert(decimal(12,2),round(a.size/128.000,2)),
[SPACE_USED_MB]=convert(decimal(12,2),round(fileproperty(a.name,'SpaceUsed')/128.000,2)),
[FREE_SPACE_MB]=convert(decimal(12,2),round((a.size-fileproperty(a.name,'SpaceUsed'))/128.000,2)) , a.Growth,
NAME=left(a.NAME,15),
FILENAME=a.FILENAME
from dbo.sysfiles a
</CommandText>
</Query>
<Fields>
<Field Name="FILEID">
<DataField>FILEID</DataField>
<rd:TypeName>System.Int16</rd:TypeName>
</Field>
<Field Name="FILE_SIZE_MB">
<DataField>FILE_SIZE_MB</DataField>
<rd:TypeName>System.Decimal</rd:TypeName>
</Field>
<Field Name="SPACE_USED_MB">
<DataField>SPACE_USED_MB</DataField>
<rd:TypeName>System.Decimal</rd:TypeName>
</Field>
<Field Name="FREE_SPACE_MB">
<DataField>FREE_SPACE_MB</DataField>
<rd:TypeName>System.Decimal</rd:TypeName>
</Field>
<Field Name="Growth">
<DataField>Growth</DataField>
<rd:TypeName>System.Int32</rd:TypeName>
</Field>
<Field Name="NAME">
<DataField>NAME</DataField>
<rd:TypeName>System.String</rd:TypeName>
</Field>
<Field Name="FILENAME">
<DataField>FILENAME</DataField>
<rd:TypeName>System.String</rd:TypeName>
</Field>
</Fields>
</DataSet>
<DataSet Name="DWFreeSpace">
<Query>
<DataSourceName>DataWarehouseMain</DataSourceName>
<CommandText>select a.FILEID,
[FILE_SIZE_MB]=convert(decimal(12,2),round(a.size/128.000,2)),
[SPACE_USED_MB]=convert(decimal(12,2),round(fileproperty(a.name,'SpaceUsed')/128.000,2)),
[FREE_SPACE_MB]=convert(decimal(12,2),round((a.size-fileproperty(a.name,'SpaceUsed'))/128.000,2)) ,
a.growth,
NAME=left(a.NAME,15),
FILENAME=a.FILENAME
from dbo.sysfiles a
</CommandText>
</Query>
<Fields>
<Field Name="FILEID">
<DataField>FILEID</DataField>
<rd:TypeName>System.Int16</rd:TypeName>
</Field>
<Field Name="FILE_SIZE_MB">
<DataField>FILE_SIZE_MB</DataField>
<rd:TypeName>System.Decimal</rd:TypeName>
</Field>
<Field Name="SPACE_USED_MB">
<DataField>SPACE_USED_MB</DataField>
<rd:TypeName>System.Decimal</rd:TypeName>
</Field>
<Field Name="FREE_SPACE_MB">
<DataField>FREE_SPACE_MB</DataField>
<rd:TypeName>System.Decimal</rd:TypeName>
</Field>
<Field Name="growth">
<DataField>growth</DataField>
<rd:TypeName>System.Int32</rd:TypeName>
</Field>
<Field Name="NAME">
<DataField>NAME</DataField>
<rd:TypeName>System.String</rd:TypeName>
</Field>
<Field Name="FILENAME">
<DataField>FILENAME</DataField>
<rd:TypeName>System.String</rd:TypeName>
</Field>
</Fields>
</DataSet>
<DataSet Name="OMLargeTables">
<Query>
<DataSourceName>OperationalDataBaseMain</DataSourceName>
<CommandText>SELECT top 20 so.name,
8 * Sum(CASE WHEN si.indid IN (0, 1) THEN si.reserved END) AS data_kb,
Coalesce(8 * Sum(CASE WHEN si.indid NOT IN (0, 1, 255) THEN si.reserved END), 0) AS index_kb,
Coalesce(8 * Sum(CASE WHEN si.indid IN (255) THEN si.reserved END), 0) AS blob_kb
FROM dbo.sysobjects AS so JOIN dbo.sysindexes AS si ON (si.id = so.id)
WHERE 'U' = so.type GROUP BY so.name ORDER BY data_kb DESC
</CommandText>
</Query>
<Fields>
<Field Name="name">
<DataField>name</DataField>
<rd:TypeName>System.String</rd:TypeName>
</Field>
<Field Name="data_kb">
<DataField>data_kb</DataField>
<rd:TypeName>System.Int32</rd:TypeName>
</Field>
<Field Name="index_kb">
<DataField>index_kb</DataField>
<rd:TypeName>System.Int32</rd:TypeName>
</Field>
<Field Name="blob_kb">
<DataField>blob_kb</DataField>
<rd:TypeName>System.Int32</rd:TypeName>
</Field>
</Fields>
</DataSet>
<DataSet Name="DWLargeTables">
<Query>
<DataSourceName>DataWarehouseMain</DataSourceName>
<CommandText>SELECT top 20 so.name,
8 * Sum(CASE WHEN si.indid IN (0, 1) THEN si.reserved END) AS data_kb,
Coalesce(8 * Sum(CASE WHEN si.indid NOT IN (0, 1, 255) THEN si.reserved END), 0) AS index_kb,
Coalesce(8 * Sum(CASE WHEN si.indid IN (255) THEN si.reserved END), 0) AS blob_kb
FROM dbo.sysobjects AS so JOIN dbo.sysindexes AS si ON (si.id = so.id)
WHERE 'U' = so.type GROUP BY so.name ORDER BY data_kb DESC
</CommandText>
</Query>
<Fields>
<Field Name="name">
<DataField>name</DataField>
<rd:TypeName>System.String</rd:TypeName>
</Field>
<Field Name="data_kb">
<DataField>data_kb</DataField>
<rd:TypeName>System.Int32</rd:TypeName>
</Field>
<Field Name="index_kb">
<DataField>index_kb</DataField>
<rd:TypeName>System.Int32</rd:TypeName>
</Field>
<Field Name="blob_kb">
<DataField>blob_kb</DataField>
<rd:TypeName>System.Int32</rd:TypeName>
</Field>
</Fields>
</DataSet>
</DataSets>
<ReportSections>
<ReportSection>
<Body><Script>
<ReportItems>
<Tablix Name="Tablix1">
<TablixBody>
<TablixColumns>
<TablixColumn>
<Width>25.4mm</Width>
</TablixColumn>
<TablixColumn>
<Width>33.07292mm</Width>
</TablixColumn>
<TablixColumn>
<Width>28.04583mm</Width>
</TablixColumn>
<TablixColumn>
<Width>29.10417mm</Width>
</TablixColumn>
<TablixColumn>
<Width>22.75417mm</Width>
</TablixColumn>
<TablixColumn>
<Width>258.46023mm</Width>
</TablixColumn>
</TablixColumns>
<TablixRows>
<TablixRow>
<Height>14.22483mm</Height>
<TablixCells>
<TablixCell>
<CellContents>
<Textbox Name="Textbox28">
<CanGrow>true</CanGrow>
<KeepTogether>true</KeepTogether>
<Paragraphs>
<Paragraph>
<TextRuns>
<TextRun>
<Value>Name</Value>
<Style></Style>
<FontFamily>Segoe UI</FontFamily>
<FontSize>14pt</FontSize>
<FontWeight>SemiBold</FontWeight>
<Color>#595959</Color>
</Style>
</TextRun>
</TextRuns>
<Style /></Style>
</Paragraph>
</Paragraphs>
<rd:DefaultName>Textbox28</rd:DefaultName>
<Style></Style>
<Border>
<Color>LightGrey</Color>
<Style></Style>Solid</Style>
</Border>
<BackgroundColor>#f2f2f2</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>File Size (MB)</Value>
<Style></Style>
<FontFamily>Segoe UI</FontFamily>
<FontSize>14pt</FontSize>
<FontWeight>SemiBold</FontWeight>
<Color>#595959</Color>
</Style>
</TextRun>
</TextRuns>
<Style /></Style>
</Paragraph>
</Paragraphs>
<rd:DefaultName>Textbox12</rd:DefaultName>
<Style></Style>
<Border>
<Color>LightGrey</Color>
<Style></Style>Solid</Style>
</Border>
<BackgroundColor>#f2f2f2</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>Used (MB)</Value>
<Style></Style>
<FontFamily>Segoe UI</FontFamily>
<FontSize>14pt</FontSize>
<FontWeight>SemiBold</FontWeight>
<Color>#595959</Color>
</Style>
</TextRun>
</TextRuns>
<Style /></Style>
</Paragraph>
</Paragraphs>
<rd:DefaultName>Textbox14</rd:DefaultName>
<Style></Style>
<Border>
<Color>LightGrey</Color>
<Style></Style>Solid</Style>
</Border>
<BackgroundColor>#f2f2f2</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>Free (MB)</Value>
<Style></Style>
<FontFamily>Segoe UI</FontFamily>
<FontSize>14pt</FontSize>
<FontWeight>SemiBold</FontWeight>
<Color>#595959</Color>
</Style>
</TextRun>
</TextRuns>
<Style /></Style>
</Paragraph>
</Paragraphs>
<rd:DefaultName>Textbox16</rd:DefaultName>
<Style></Style>
<Border>
<Color>LightGrey</Color>
<Style></Style>Solid</Style>
</Border>
<BackgroundColor>#f2f2f2</BackgroundColor>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
</Textbox>
</CellContents>
</TablixCell>
<TablixCell>
<CellContents>
<Textbox Name="Textbox26">
<CanGrow>true</CanGrow>
<KeepTogether>true</KeepTogether>
<Paragraphs>
<Paragraph>
<TextRuns>
<TextRun>
<Value>Free (%)</Value>
<Style></Style>
<FontFamily>Segoe UI</FontFamily>
<FontSize>14pt</FontSize>
<FontWeight>SemiBold</FontWeight>
<Color>#595959</Color>
</Style>
</TextRun>
</TextRuns>
<Style /></Style>
</Paragraph>
</Paragraphs>
<rd:DefaultName>Textbox26</rd:DefaultName>
<Style></Style>
<Border>
<Color>LightGrey</Color>
<Style></Style>Solid</Style>
</Border>
<BackgroundColor>#f2f2f2</BackgroundColor>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
</Textbox>
</CellContents>
</TablixCell>
<TablixCell>
<CellContents>
<Textbox Name="Textbox24">
<CanGrow>true</CanGrow>
<KeepTogether>true</KeepTogether>
<Paragraphs>
<Paragraph>
<TextRuns>
<TextRun>
<Value>File Name</Value>
<Style></Style>
<FontFamily>Segoe UI</FontFamily>
<FontSize>14pt</FontSize>
<FontWeight>SemiBold</FontWeight>
<Color>#595959</Color>
</Style>
</TextRun>
</TextRuns>
<Style /></Style>
</Paragraph>
</Paragraphs>
<rd:DefaultName>Textbox24</rd:DefaultName>
<Style></Style>
<Border>
<Color>LightGrey</Color>
<Style></Style>Solid</Style>
</Border>
<BackgroundColor>#f2f2f2</BackgroundColor>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
</Textbox>
</CellContents>
</TablixCell>
</TablixCells>
</TablixRow>
<TablixRow>
<Height>8.40399mm</Height>
<TablixCells>
<TablixCell>
<CellContents>
<Textbox Name="NAME1">
<CanGrow>true</CanGrow>
<KeepTogether>true</KeepTogether>
<Paragraphs>
<Paragraph>
<TextRuns>
<TextRun>
<Value>=Fields!NAME.Value</Value>
<Style></Style>
<FontFamily>Segoe UI</FontFamily>
<FontSize>12pt</FontSize>
<Color>#595959</Color>
</Style>
</TextRun>
</TextRuns>
<Style /></Style>
</Paragraph>
</Paragraphs>
<rd:DefaultName>NAME1</rd:DefaultName>
<Style></Style>
<Border>
<Color>LightGrey</Color>
<Style></Style>Solid</Style>
</Border>
<BackgroundColor>#f2f2f2</BackgroundColor>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
</Textbox>
</CellContents>
</TablixCell>
<TablixCell>
<CellContents>
<Textbox Name="FILE_SIZE_MB">
<CanGrow>true</CanGrow>
<KeepTogether>true</KeepTogether>
<Paragraphs>
<Paragraph>
<TextRuns>
<TextRun>
<Value>=Fields!FILE_SIZE_MB.Value</Value>
<Style></Style>
<FontFamily>Segoe UI</FontFamily>
<FontSize>12pt</FontSize>
<Color>#595959</Color>
</Style>
</TextRun>
</TextRuns>
<Style /></Style>
</Paragraph>
</Paragraphs>
<rd:DefaultName>FILE_SIZE_MB</rd:DefaultName>
<Style></Style>
<Border>
<Color>LightGrey</Color>
<Style></Style>Solid</Style>
</Border>
<BackgroundColor>#f2f2f2</BackgroundColor>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
</Textbox>
</CellContents>
</TablixCell>
<TablixCell>
<CellContents>
<Textbox Name="SPACE_USED_MB">
<CanGrow>true</CanGrow>
<KeepTogether>true</KeepTogether>
<Paragraphs>
<Paragraph>
<TextRuns>
<TextRun>
<Value>=Fields!SPACE_USED_MB.Value</Value>
<Style></Style>
<FontFamily>Segoe UI</FontFamily>
<FontSize>12pt</FontSize>
<Color>#595959</Color>
</Style>
</TextRun>
</TextRuns>
<Style /></Style>
</Paragraph>
</Paragraphs>
<rd:DefaultName>SPACE_USED_MB</rd:DefaultName>
<Style></Style>
<Border>
<Color>LightGrey</Color>
<Style></Style>Solid</Style>
</Border>
<BackgroundColor>#f2f2f2</BackgroundColor>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
</Textbox>
</CellContents>
</TablixCell>
<TablixCell>
<CellContents>
<Textbox Name="FREE_SPACE_MB">
<CanGrow>true</CanGrow>
<KeepTogether>true</KeepTogether>
<Paragraphs>
<Paragraph>
<TextRuns>
<TextRun>
<Value>=Fields!FREE_SPACE_MB.Value</Value>
<Style></Style>
<FontFamily>Segoe UI</FontFamily>
<FontSize>12pt</FontSize>
<Color>#595959</Color>
</Style>
</TextRun>
</TextRuns>
<Style /></Style>
</Paragraph>
</Paragraphs>
<rd:DefaultName>FREE_SPACE_MB</rd:DefaultName>
<Style></Style>
<Border>
<Color>LightGrey</Color>
<Style></Style>Solid</Style>
</Border>
<BackgroundColor>#f2f2f2</BackgroundColor>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
</Textbox>
</CellContents>
</TablixCell>
<TablixCell>
<CellContents>
<Textbox Name="Textbox27">
<CanGrow>true</CanGrow>
<KeepTogether>true</KeepTogether>
<Paragraphs>
<Paragraph>
<TextRuns>
<TextRun>
<Value>=FormatPercent(Fields!FREE_SPACE_MB.Value/Fields!FILE_SIZE_MB.Value)</Value>
<Style></Style>
<FontFamily>Segoe UI</FontFamily>
<FontSize>12pt</FontSize>
<Color>#595959</Color>
</Style>
</TextRun>
</TextRuns>
<Style /></Style>
</Paragraph>
</Paragraphs>
<rd:DefaultName>Textbox27</rd:DefaultName>
<Style></Style>
<Border>
<Color>LightGrey</Color>
<Style></Style>Solid</Style>
</Border>
<BackgroundColor>#f2f2f2</BackgroundColor>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
</Textbox>
</CellContents>
</TablixCell>
<TablixCell>
<CellContents>
<Textbox Name="FILENAME">
<CanGrow>true</CanGrow>
<KeepTogether>true</KeepTogether>
<Paragraphs>
<Paragraph>
<TextRuns>
<TextRun>
<Value>=Fields!FILENAME.Value</Value>
<Style></Style>
<FontFamily>Segoe UI</FontFamily>
<FontSize>12pt</FontSize>
<Color>#595959</Color>
</Style>
</TextRun>
</TextRuns>
<Style /></Style>
</Paragraph>
</Paragraphs>
<rd:DefaultName>FILENAME</rd:DefaultName>
<Style></Style>
<Border>
<Color>LightGrey</Color>
<Style></Style>Solid</Style>
</Border>
<BackgroundColor>#f2f2f2</BackgroundColor>
<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 />
</TablixMembers>
</TablixColumnHierarchy>
<TablixRowHierarchy>
<TablixMembers>
<TablixMember>
<KeepWithGroup>After</KeepWithGroup>
<RepeatOnNewPage>true</RepeatOnNewPage>
<KeepTogether>true</KeepTogether>
</TablixMember>
<TablixMember>
<Group Name="Details" />
</TablixMember>
</TablixMembers>
</TablixRowHierarchy>
<RepeatColumnHeaders>true</RepeatColumnHeaders>
<RepeatRowHeaders>true</RepeatRowHeaders>
<FixedColumnHeaders>true</FixedColumnHeaders>
<FixedRowHeaders>true</FixedRowHeaders>
<DataSetName>OMFreeSpace</DataSetName>
<Top>49.62101mm</Top>
<Left>15.35278mm</Left>
<Height>22.62882mm</Height>
<Width>396.83732mm</Width>
<Style></Style>
<Border>
<Style></Style>None</Style>
</Border>
</Style>
</Tablix>
<GaugePanel Name="GaugePanel5">
<LinearGauges>
<LinearGauge Name="LinearGauge1">
<GaugeScales>
<LinearScale Name="LinearScale1">
<GaugePointers>
<LinearPointer Name="LinearPointer1">
<Thermometer>
<Style /></Style>
</Thermometer>
<Style></Style>
<Border>
<Style></Style>None</Style>
</Border>
<BackgroundColor>White</BackgroundColor>
<BackgroundGradientType>DiagonalLeft</BackgroundGradientType>
<BackgroundGradientEndColor>Orange</BackgroundGradientEndColor>
<BackgroundHatchType>None</BackgroundHatchType>
<ShadowOffset>1pt</ShadowOffset>
</Style>
<GaugeInputValue>
<Value>=Fields!FREE_SPACE_MB.Value/Fields!FILE_SIZE_MB.Value *100</Value>
<Multiplier>1</Multiplier>
</GaugeInputValue>
<PointerImage>
<OffsetX>0pt</OffsetX>
<OffsetY>0pt</OffsetY>
<Source>External</Source>
<Value />
</PointerImage>
<MarkerLength>25</MarkerLength>
<MarkerStyle>Wedge</MarkerStyle>
<Placement>Cross</Placement>
<Width>10</Width>
</LinearPointer>
</GaugePointers>
<ScaleRanges>
<ScaleRange Name="LinearRange1">
<Style></Style>
<Border>
<Color>Silver</Color>
<Style></Style>Solid</Style>
</Border>
<BackgroundColor>Red</BackgroundColor>
<BackgroundGradientType>DiagonalLeft</BackgroundGradientType>
<BackgroundGradientEndColor>Orange</BackgroundGradientEndColor>
<BackgroundHatchType>None</BackgroundHatchType>
<ShadowOffset>0pt</ShadowOffset>
</Style>
<BackgroundGradientType>None</BackgroundGradientType>
<DistanceFromScale>0</DistanceFromScale>
<StartValue>
<Value>0</Value>
<Multiplier>1</Multiplier>
</StartValue>
<EndValue>
<Value>40</Value>
<Multiplier>1</Multiplier>
</EndValue>
<StartWidth>30</StartWidth>
<EndWidth>30</EndWidth>
<Placement>Cross</Placement>
</ScaleRange>
<ScaleRange Name="LinearRange2">
<Style></Style>
<Border>
<Color>Silver</Color>
<Style></Style>None</Style>
</Border>
<BackgroundColor>Orange</BackgroundColor>
<BackgroundGradientType>DiagonalLeft</BackgroundGradientType>
<BackgroundGradientEndColor>Orange</BackgroundGradientEndColor>
<BackgroundHatchType>None</BackgroundHatchType>
<ShadowOffset>0pt</ShadowOffset>
</Style>
<DistanceFromScale>0</DistanceFromScale>
<StartValue>
<Value>40</Value>
<Multiplier>1</Multiplier>
</StartValue>
<EndValue>
<Value>50</Value>
<Multiplier>1</Multiplier>
</EndValue>
<StartWidth>30</StartWidth>
<EndWidth>30</EndWidth>
<Placement>Cross</Placement>
</ScaleRange>
<ScaleRange Name="LinearRange3">
<Style></Style>
<Border>
<Color>Silver</Color>
<Style></Style>None</Style>
</Border>
<BackgroundColor>Green</BackgroundColor>
<BackgroundGradientType>DiagonalLeft</BackgroundGradientType>
<BackgroundGradientEndColor>Orange</BackgroundGradientEndColor>
<BackgroundHatchType>None</BackgroundHatchType>
<ShadowOffset>0pt</ShadowOffset>
</Style>
<BackgroundGradientType>LeftRight</BackgroundGradientType>
<DistanceFromScale>0</DistanceFromScale>
<StartValue>
<Value>50</Value>
<Multiplier>1</Multiplier>
</StartValue>
<EndValue>
<Value>100</Value>
<Multiplier>1</Multiplier>
</EndValue>
<StartWidth>30</StartWidth>
<EndWidth>30</EndWidth>
<Placement>Cross</Placement>
</ScaleRange>
</ScaleRanges>
<Style></Style>
<Border>
<Style></Style>None</Style>
</Border>
<BackgroundColor>#00ffffff</BackgroundColor>
<BackgroundGradientType>None</BackgroundGradientType>
<BackgroundGradientEndColor>White</BackgroundGradientEndColor>
<BackgroundHatchType>None</BackgroundHatchType>
<ShadowOffset>0pt</ShadowOffset>
</Style>
<Interval>NaN</Interval>
<IntervalOffset>NaN</IntervalOffset>
<MaximumValue>
<Value>100</Value>
<Multiplier>1</Multiplier>
</MaximumValue>
<MinimumValue>
<Value>0</Value>
<Multiplier>1</Multiplier>
</MinimumValue>
<Reversed>true</Reversed>
<GaugeMajorTickMarks>
<Interval>NaN</Interval>
<IntervalOffset>NaN</IntervalOffset>
<Style></Style>
<Border>
<Color>DimGray</Color>
<Style></Style>None</Style>
</Border>
<BackgroundColor>DimGray</BackgroundColor>
</Style>
<DistanceFromScale>-20</DistanceFromScale>
<Placement>Cross</Placement>
<TickMarkImage>
<Source>External</Source>
<Value />
</TickMarkImage>
<Length>5</Length>
<Width>0.5</Width>
</GaugeMajorTickMarks>
<GaugeMinorTickMarks>
<Interval>NaN</Interval>
<IntervalOffset>NaN</IntervalOffset>
<Style></Style>
<Border>
<Color>DimGray</Color>
<Style></Style>None</Style>
</Border>
<BackgroundColor>DimGray</BackgroundColor>
</Style>
<Placement>Cross</Placement>
<TickMarkImage>
<Source>External</Source>
<Value />
</TickMarkImage>
<Length>9</Length>
<Width>1</Width>
<Hidden>true</Hidden>
</GaugeMinorTickMarks>
<MaximumPin>
<PinLabel>
<Style></Style>
<FontSize>12pt</FontSize>
</Style>
<DistanceFromScale>0</DistanceFromScale>
</PinLabel>
<Style></Style>
<Border>
<Color>DimGray</Color>
<Style></Style>Solid</Style>
</Border>
<BackgroundColor>WhiteSmoke</BackgroundColor>
</Style>
<Placement>Cross</Placement>
<TickMarkImage>
<Source>External</Source>
<Value />
</TickMarkImage>
<Length>6</Length>
<Width>6</Width>
<Shape>Circle</Shape>
</MaximumPin>
<MinimumPin>
<PinLabel>
<Style></Style>
<FontSize>12pt</FontSize>
</Style>
<DistanceFromScale>0</DistanceFromScale>
</PinLabel>
<Style></Style>
<Border>
<Color>DimGray</Color>
<Style></Style>Solid</Style>
</Border>
<BackgroundColor>WhiteSmoke</BackgroundColor>
</Style>
<Placement>Cross</Placement>
<TickMarkImage>
<Source>External</Source>
<Value />
</TickMarkImage>
<Length>6</Length>
<Width>6</Width>
<Shape>Circle</Shape>
</MinimumPin>
<ScaleLabels>
<Style></Style>
<FontSize>12pt</FontSize>
<Format>0\%</Format>
<Color>#404040</Color>
</Style>
<Interval>NaN</Interval>
<IntervalOffset>NaN</IntervalOffset>
<DistanceFromScale>20</DistanceFromScale>
<Placement>Outside</Placement>
<RotateLabels>true</RotateLabels>
<ShowEndLabels>true</ShowEndLabels>
<UseFontPercent>true</UseFontPercent>
</ScaleLabels>
<Width>0</Width>
</LinearScale>
</GaugeScales>
<BackFrame>
<Style></Style>
<Border>
<Style></Style>None</Style>
</Border>
<BackgroundColor>WhiteSmoke</BackgroundColor>
<BackgroundGradientType>HorizontalCenter</BackgroundGradientType>
<BackgroundGradientEndColor>DarkGray</BackgroundGradientEndColor>
<BackgroundHatchType>None</BackgroundHatchType>
<ShadowOffset>0pt</ShadowOffset>
</Style>
<FrameStyle>Edged</FrameStyle>
<FrameShape>RoundedRectangular</FrameShape>
<FrameBackground>
<Style></Style>
<BackgroundColor>Gainsboro</BackgroundColor>
<BackgroundGradientType>DiagonalLeft</BackgroundGradientType>
<BackgroundGradientEndColor>WhiteSmoke</BackgroundGradientEndColor>
<BackgroundHatchType>None</BackgroundHatchType>
</Style>
</FrameBackground>
<FrameImage>
<Source>External</Source>
<Value />
</FrameImage>
</BackFrame>
<ClipContent>true</ClipContent>
<TopImage>
<Source>External</Source>
<Value />
</TopImage>
<AspectRatio>NaN</AspectRatio>
<Height>100</Height>
<Width>100</Width>
</LinearGauge>
</LinearGauges>
<AutoLayout>true</AutoLayout>
<BackFrame>
<Style></Style>
<Border>
<Style></Style>None</Style>
</Border>
<BackgroundColor>Gainsboro</BackgroundColor>
<BackgroundGradientType>DiagonalLeft</BackgroundGradientType>
<BackgroundGradientEndColor>Gray</BackgroundGradientEndColor>
<BackgroundHatchType>None</BackgroundHatchType>
<ShadowOffset>0pt</ShadowOffset>
</Style>
<FrameBackground>
<Style></Style>
<BackgroundColor>Silver</BackgroundColor>
<BackgroundGradientType>DiagonalLeft</BackgroundGradientType>
<BackgroundGradientEndColor>Gray</BackgroundGradientEndColor>
<BackgroundHatchType>None</BackgroundHatchType>
</Style>
</FrameBackground>
<FrameImage>
<Source>External</Source>
<Value />
</FrameImage>
</BackFrame>
<TopImage>
<Source>External</Source>
<Value />
</TopImage>
<DataSetName>OMFreeSpace</DataSetName>
<Top>0.64255in</Top>
<Left>7.16542in</Left>
<Height>0.96337in</Height>
<Width>3.47917in</Width>
<ZIndex>1</ZIndex>
<Style></Style>
<Border>
<Style></Style>None</Style>
</Border>
<BackgroundColor>White</BackgroundColor>
</Style>
</GaugePanel>
<Tablix Name="Tablix2">
<TablixBody>
<TablixColumns>
<TablixColumn>
<Width>153.19375mm</Width>
</TablixColumn>
<TablixColumn>
<Width>8.128mm</Width>
</TablixColumn>
</TablixColumns>
<TablixRows>
<TablixRow>
<Height>14.22483mm</Height>
<TablixCells>
<TablixCell>
<CellContents>
<Textbox Name="Textbox50">
<CanGrow>true</CanGrow>
<KeepTogether>true</KeepTogether>
<Paragraphs>
<Paragraph>
<TextRuns>
<TextRun>
<Value>Operations Manager</Value>
<Style></Style>
<FontFamily>Segoe UI</FontFamily>
<FontSize>14pt</FontSize>
<FontWeight>SemiBold</FontWeight>
<Color>#595959</Color>
</Style>
</TextRun>
</TextRuns>
<Style /></Style>
</Paragraph>
</Paragraphs>
<rd:DefaultName>Textbox50</rd:DefaultName>
<Style></Style>
<Border>
<Color>LightGrey</Color>
<Style></Style>Solid</Style>
</Border>
<BackgroundColor>#f2f2f2</BackgroundColor>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
</Textbox>
</CellContents>
</TablixCell>
<TablixCell>
<CellContents>
<Textbox Name="Textbox52">
<CanGrow>true</CanGrow>
<KeepTogether>true</KeepTogether>
<Paragraphs>
<Paragraph>
<TextRuns>
<TextRun>
<Value />
<Style></Style>
<FontFamily>Segoe UI</FontFamily>
<FontSize>14pt</FontSize>
<FontWeight>SemiBold</FontWeight>
<Color>#595959</Color>
</Style>
</TextRun>
</TextRuns>
<Style /></Style>
</Paragraph>
</Paragraphs>
<rd:DefaultName>Textbox52</rd:DefaultName>
<Style></Style>
<Border>
<Color>LightGrey</Color>
<Style></Style>Solid</Style>
</Border>
<BackgroundColor>#f2f2f2</BackgroundColor>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
</Textbox>
</CellContents>
</TablixCell>
</TablixCells>
</TablixRow>
<TablixRow>
<Height>18.18217mm</Height>
<TablixCells>
<TablixCell>
<CellContents>
<Textbox Name="Textbox51">
<CanGrow>true</CanGrow>
<KeepTogether>true</KeepTogether>
<Paragraphs>
<Paragraph>
<TextRuns>
<TextRun>
<Value>=Switch((Fields!FREE_SPACE_MB.Value / Fields!FILE_SIZE_MB.Value) &lt;= 0.40, "The Operational Database is below 40 % Free Space. You need to expand the database to more than 40 % free space in order to successfully run the internal Maintenance Jobs. Failing to do so will fill up the database completely.", (Fields!FREE_SPACE_MB.Value / Fields!FILE_SIZE_MB.Value) &lt;=0.50, "The Database Free Space is between 40% and 50% consider expanding the database to be above 50%. To assure sufficient free space for running the Internal Maintenance Jobs.",(Fields!FREE_SPACE_MB.Value / Fields!FILE_SIZE_MB.Value) &gt;=0.50, "The Database free space is above 50% which is sufficient for running the SCOM Internal maintenance jobs.")</Value>
<Style></Style>
<FontFamily>Segoe UI</FontFamily>
<FontSize>12pt</FontSize>
<Color>#595959</Color>
</Style>
</TextRun>
</TextRuns>
<Style /></Style>
</Paragraph>
</Paragraphs>
<rd:DefaultName>Textbox51</rd:DefaultName>
<Style></Style>
<Border>
<Color>LightGrey</Color>
<Style></Style>Solid</Style>
</Border>
<BackgroundColor>#f2f2f2</BackgroundColor>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
</Textbox>
</CellContents>
</TablixCell>
<TablixCell>
<CellContents>
<Image Name="Image7">
<Source>External</Source>
<Value>=Switch((Fields!FREE_SPACE_MB.Value / Fields!FILE_SIZE_MB.Value) &lt;= 0.40, "/SystemCenter.Operations.Manager.Health.Check.Report.Library/Error", (Fields!FREE_SPACE_MB.Value / Fields!FILE_SIZE_MB.Value) &lt;=0.50, "/SystemCenter.Operations.Manager.Health.Check.Report.Library/Warning",(Fields!FREE_SPACE_MB.Value / Fields!FILE_SIZE_MB.Value) &gt;=0.50, "/SystemCenter.Operations.Manager.Health.Check.Report.Library/Healthy")</Value>
<Style></Style>
<Border>
<Color>LightGrey</Color>
<Style></Style>Solid</Style>
</Border>
</Style>
</Image>
</CellContents>
</TablixCell>
</TablixCells>
</TablixRow>
</TablixRows>
</TablixBody>
<TablixColumnHierarchy>
<TablixMembers>
<TablixMember />
<TablixMember />
</TablixMembers>
</TablixColumnHierarchy>
<TablixRowHierarchy>
<TablixMembers>
<TablixMember>
<KeepWithGroup>After</KeepWithGroup>
<RepeatOnNewPage>true</RepeatOnNewPage>
<KeepTogether>true</KeepTogether>
</TablixMember>
<TablixMember>
<Group Name="Details2">
<Filters>
<Filter>
<FilterExpression>=Fields!NAME.Value</FilterExpression>
<Operator>Equal</Operator>
<FilterValues>
<FilterValue>MOM_DATA</FilterValue>
</FilterValues>
</Filter>
</Filters>
</Group>
</TablixMember>
</TablixMembers>
</TablixRowHierarchy>
<RepeatColumnHeaders>true</RepeatColumnHeaders>
<RepeatRowHeaders>true</RepeatRowHeaders>
<FixedColumnHeaders>true</FixedColumnHeaders>
<FixedRowHeaders>true</FixedRowHeaders>
<DataSetName>OMFreeSpace</DataSetName>
<Top>2.09584mm</Top>
<Left>15.35278mm</Left>
<Height>32.407mm</Height>
<Width>161.32175mm</Width>
<ZIndex>2</ZIndex>
<Style></Style>
<Border>
<Style></Style>None</Style>
</Border>
</Style>
</Tablix>
<Textbox Name="Textbox54">
<CanGrow>true</CanGrow>
<KeepTogether>true</KeepTogether>
<Paragraphs>
<Paragraph>
<TextRuns>
<TextRun>
<Value>Free Space in percentage</Value>
<Style></Style>
<FontFamily>Segoe UI</FontFamily>
<FontSize>14pt</FontSize>
<FontWeight>SemiBold</FontWeight>
<Color>#595959</Color>
</Style>
</TextRun>
</TextRuns>
<Style /></Style>
</Paragraph>
</Paragraphs>
<rd:DefaultName>Textbox54</rd:DefaultName>
<Top>0.11724in</Top>
<Left>7.16542in</Left>
<Height>0.46975in</Height>
<Width>3.47917in</Width>
<ZIndex>3</ZIndex>
<Style></Style>
<Border>
<Style></Style>None</Style>
</Border>
<BackgroundColor>#f2f2f2</BackgroundColor>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
</Textbox>
<Tablix Name="Tablix3">
<TablixBody>
<TablixColumns>
<TablixColumn>
<Width>93.74237mm</Width>
</TablixColumn>
<TablixColumn>
<Width>8.128mm</Width>
</TablixColumn>
</TablixColumns>
<TablixRows>
<TablixRow>
<Height>14.6658mm</Height>
<TablixCells>
<TablixCell>
<CellContents>
<Textbox Name="Textbox53">
<CanGrow>true</CanGrow>
<KeepTogether>true</KeepTogether>
<Paragraphs>
<Paragraph>
<TextRuns>
<TextRun>
<Value>Operations Manager</Value>
<Style></Style>
<FontFamily>Segoe UI</FontFamily>
<FontSize>14pt</FontSize>
<FontWeight>SemiBold</FontWeight>
<Color>#595959</Color>
</Style>
</TextRun>
</TextRuns>
<Style /></Style>
</Paragraph>
</Paragraphs>
<rd:DefaultName>Textbox50</rd:DefaultName>
<Style></Style>
<Border>
<Color>LightGrey</Color>
<Style></Style>Solid</Style>
</Border>
<BackgroundColor>#f2f2f2</BackgroundColor>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
</Textbox>
</CellContents>
</TablixCell>
<TablixCell>
<CellContents>
<Textbox Name="Textbox55">
<CanGrow>true</CanGrow>
<KeepTogether>true</KeepTogether>
<Paragraphs>
<Paragraph>
<TextRuns>
<TextRun>
<Value />
<Style></Style>
<FontFamily>Segoe UI</FontFamily>
<FontSize>14pt</FontSize>
<FontWeight>SemiBold</FontWeight>
<Color>#595959</Color>
</Style>
</TextRun>
</TextRuns>
<Style /></Style>
</Paragraph>
</Paragraphs>
<rd:DefaultName>Textbox52</rd:DefaultName>
<Style></Style>
<Border>
<Color>LightGrey</Color>
<Style></Style>Solid</Style>
</Border>
<BackgroundColor>#f2f2f2</BackgroundColor>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
</Textbox>
</CellContents>
</TablixCell>
</TablixCells>
</TablixRow>
<TablixRow>
<Height>17.74119mm</Height>
<TablixCells>
<TablixCell>
<CellContents>
<Textbox Name="Textbox56">
<CanGrow>true</CanGrow>
<KeepTogether>true</KeepTogether>
<Paragraphs>
<Paragraph>
<TextRuns>
<TextRun>
<Value>=iif(Fields!Growth.Value = 0 ,"Auto growth is turned off correctly.","Turn off auto growth. To avoid exceptional growth during alert storm or wrong configuration. Shrinking the DB should be avoided!")</Value>
<Style></Style>
<FontFamily>Segoe UI</FontFamily>
<FontSize>12pt</FontSize>
<Color>#595959</Color>
</Style>
</TextRun>
</TextRuns>
<Style /></Style>
</Paragraph>
</Paragraphs>
<rd:DefaultName>Textbox51</rd:DefaultName>
<Style></Style>
<Border>
<Color>LightGrey</Color>
<Style></Style>Solid</Style>
</Border>
<BackgroundColor>#f2f2f2</BackgroundColor>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
</Textbox>
</CellContents>
</TablixCell>
<TablixCell>
<CellContents>
<Image Name="Image8">
<Source>External</Source>
<Value>=iif(Fields!Growth.Value = 0 ,"/SystemCenter.Operations.Manager.Health.Check.Report.Library/Healthy","/SystemCenter.Operations.Manager.Health.Check.Report.Library/Error")</Value>
<Style></Style>
<Border>
<Color>LightGrey</Color>
<Style></Style>Solid</Style>
</Border>
</Style>
</Image>
</CellContents>
</TablixCell>
</TablixCells>
</TablixRow>
</TablixRows>
</TablixBody>
<TablixColumnHierarchy>
<TablixMembers>
<TablixMember />
<TablixMember />
</TablixMembers>
</TablixColumnHierarchy>
<TablixRowHierarchy>
<TablixMembers>
<TablixMember>
<KeepWithGroup>After</KeepWithGroup>
<RepeatOnNewPage>true</RepeatOnNewPage>
<KeepTogether>true</KeepTogether>
</TablixMember>
<TablixMember>
<Group Name="Details3">
<Filters>
<Filter>
<FilterExpression>=Fields!NAME.Value</FilterExpression>
<Operator>Equal</Operator>
<FilterValues>
<FilterValue>MOM_DATA</FilterValue>
</FilterValues>
</Filter>
</Filters>
</Group>
</TablixMember>
</TablixMembers>
</TablixRowHierarchy>
<RepeatColumnHeaders>true</RepeatColumnHeaders>
<RepeatRowHeaders>true</RepeatRowHeaders>
<FixedColumnHeaders>true</FixedColumnHeaders>
<FixedRowHeaders>true</FixedRowHeaders>
<DataSetName>OMFreeSpace</DataSetName>
<Top>2.09584mm</Top>
<Left>277.96647mm</Left>
<Height>32.407mm</Height>
<Width>101.87037mm</Width>
<ZIndex>4</ZIndex>
<Style></Style>
<Border>
<Style></Style>None</Style>
</Border>
</Style>
</Tablix>
<Tablix Name="Tablix4">
<TablixBody>
<TablixColumns>
<TablixColumn>
<Width>25.4mm</Width>
</TablixColumn>
<TablixColumn>
<Width>33.07292mm</Width>
</TablixColumn>
<TablixColumn>
<Width>28.04583mm</Width>
</TablixColumn>
<TablixColumn>
<Width>29.10417mm</Width>
</TablixColumn>
<TablixColumn>
<Width>22.75417mm</Width>
</TablixColumn>
<TablixColumn>
<Width>258.46022mm</Width>
</TablixColumn>
</TablixColumns>
<TablixRows>
<TablixRow>
<Height>14.22483mm</Height>
<TablixCells>
<TablixCell>
<CellContents>
<Textbox Name="Textbox29">
<CanGrow>true</CanGrow>
<KeepTogether>true</KeepTogether>
<Paragraphs>
<Paragraph>
<TextRuns>
<TextRun>
<Value>Name</Value>
<Style></Style>
<FontFamily>Segoe UI</FontFamily>
<FontSize>14pt</FontSize>
<FontWeight>SemiBold</FontWeight>
<Color>#595959</Color>
</Style>
</TextRun>
</TextRuns>
<Style /></Style>
</Paragraph>
</Paragraphs>
<rd:DefaultName>Textbox28</rd:DefaultName>
<Style></Style>
<Border>
<Color>LightGrey</Color>
<Style></Style>Solid</Style>
</Border>
<BackgroundColor>#f2f2f2</BackgroundColor>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
</Textbox>
</CellContents>
</TablixCell>
<TablixCell>
<CellContents>
<Textbox Name="Textbox13">
<CanGrow>true</CanGrow>
<KeepTogether>true</KeepTogether>
<Paragraphs>
<Paragraph>
<TextRuns>
<TextRun>
<Value>File Size (MB)</Value>
<Style></Style>
<FontFamily>Segoe UI</FontFamily>
<FontSize>14pt</FontSize>
<FontWeight>SemiBold</FontWeight>
<Color>#595959</Color>
</Style>
</TextRun>
</TextRuns>
<Style /></Style>
</Paragraph>
</Paragraphs>
<rd:DefaultName>Textbox12</rd:DefaultName>
<Style></Style>
<Border>
<Color>LightGrey</Color>
<Style></Style>Solid</Style>
</Border>
<BackgroundColor>#f2f2f2</BackgroundColor>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
</Textbox>
</CellContents>
</TablixCell>
<TablixCell>
<CellContents>
<Textbox Name="Textbox15">
<CanGrow>true</CanGrow>
<KeepTogether>true</KeepTogether>
<Paragraphs>
<Paragraph>
<TextRuns>
<TextRun>
<Value>Used (MB)</Value>
<Style></Style>
<FontFamily>Segoe UI</FontFamily>
<FontSize>14pt</FontSize>
<FontWeight>SemiBold</FontWeight>
<Color>#595959</Color>
</Style>
</TextRun>
</TextRuns>
<Style /></Style>
</Paragraph>
</Paragraphs>
<rd:DefaultName>Textbox14</rd:DefaultName>
<Style></Style>
<Border>
<Color>LightGrey</Color>
<Style></Style>Solid</Style>
</Border>
<BackgroundColor>#f2f2f2</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>Free (MB)</Value>
<Style></Style>
<FontFamily>Segoe UI</FontFamily>
<FontSize>14pt</FontSize>
<FontWeight>SemiBold</FontWeight>
<Color>#595959</Color>
</Style>
</TextRun>
</TextRuns>
<Style /></Style>
</Paragraph>
</Paragraphs>
<rd:DefaultName>Textbox16</rd:DefaultName>
<Style></Style>
<Border>
<Color>LightGrey</Color>
<Style></Style>Solid</Style>
</Border>
<BackgroundColor>#f2f2f2</BackgroundColor>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
</Textbox>
</CellContents>
</TablixCell>
<TablixCell>
<CellContents>
<Textbox Name="Textbox30">
<CanGrow>true</CanGrow>
<KeepTogether>true</KeepTogether>
<Paragraphs>
<Paragraph>
<TextRuns>
<TextRun>
<Value>Free (%)</Value>
<Style></Style>
<FontFamily>Segoe UI</FontFamily>
<FontSize>14pt</FontSize>
<FontWeight>SemiBold</FontWeight>
<Color>#595959</Color>
</Style>
</TextRun>
</TextRuns>
<Style /></Style>
</Paragraph>
</Paragraphs>
<rd:DefaultName>Textbox26</rd:DefaultName>
<Style></Style>
<Border>
<Color>LightGrey</Color>
<Style></Style>Solid</Style>
</Border>
<BackgroundColor>#f2f2f2</BackgroundColor>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
</Textbox>
</CellContents>
</TablixCell>
<TablixCell>
<CellContents>
<Textbox Name="Textbox25">
<CanGrow>true</CanGrow>
<KeepTogether>true</KeepTogether>
<Paragraphs>
<Paragraph>
<TextRuns>
<TextRun>
<Value>File Name</Value>
<Style></Style>
<FontFamily>Segoe UI</FontFamily>
<FontSize>14pt</FontSize>
<FontWeight>SemiBold</FontWeight>
<Color>#595959</Color>
</Style>
</TextRun>
</TextRuns>
<Style /></Style>
</Paragraph>
</Paragraphs>
<rd:DefaultName>Textbox24</rd:DefaultName>
<Style></Style>
<Border>
<Color>LightGrey</Color>
<Style></Style>Solid</Style>
</Border>
<BackgroundColor>#f2f2f2</BackgroundColor>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
</Textbox>
</CellContents>
</TablixCell>
</TablixCells>
</TablixRow>
<TablixRow>
<Height>8.40399mm</Height>
<TablixCells>
<TablixCell>
<CellContents>
<Textbox Name="NAME2">
<CanGrow>true</CanGrow>
<KeepTogether>true</KeepTogether>
<Paragraphs>
<Paragraph>
<TextRuns>
<TextRun>
<Value>=Fields!NAME.Value</Value>
<Style></Style>
<FontFamily>Segoe UI</FontFamily>
<FontSize>12pt</FontSize>
<Color>#595959</Color>
</Style>
</TextRun>
</TextRuns>
<Style /></Style>
</Paragraph>
</Paragraphs>
<rd:DefaultName>NAME1</rd:DefaultName>
<Style></Style>
<Border>
<Color>LightGrey</Color>
<Style></Style>Solid</Style>
</Border>
<BackgroundColor>#f2f2f2</BackgroundColor>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
</Textbox>
</CellContents>
</TablixCell>
<TablixCell>
<CellContents>
<Textbox Name="FILE_SIZE_MB2">
<CanGrow>true</CanGrow>
<KeepTogether>true</KeepTogether>
<Paragraphs>
<Paragraph>
<TextRuns>
<TextRun>
<Value>=Fields!FILE_SIZE_MB.Value</Value>
<Style></Style>
<FontFamily>Segoe UI</FontFamily>
<FontSize>12pt</FontSize>
<Color>#595959</Color>
</Style>
</TextRun>
</TextRuns>
<Style /></Style>
</Paragraph>
</Paragraphs>
<rd:DefaultName>FILE_SIZE_MB</rd:DefaultName>
<Style></Style>
<Border>
<Color>LightGrey</Color>
<Style></Style>Solid</Style>
</Border>
<BackgroundColor>#f2f2f2</BackgroundColor>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
</Textbox>
</CellContents>
</TablixCell>
<TablixCell>
<CellContents>
<Textbox Name="SPACE_USED_MB2">
<CanGrow>true</CanGrow>
<KeepTogether>true</KeepTogether>
<Paragraphs>
<Paragraph>
<TextRuns>
<TextRun>
<Value>=Fields!SPACE_USED_MB.Value</Value>
<Style></Style>
<FontFamily>Segoe UI</FontFamily>
<FontSize>12pt</FontSize>
<Color>#595959</Color>
</Style>
</TextRun>
</TextRuns>
<Style /></Style>
</Paragraph>
</Paragraphs>
<rd:DefaultName>SPACE_USED_MB</rd:DefaultName>
<Style></Style>
<Border>
<Color>LightGrey</Color>
<Style></Style>Solid</Style>
</Border>
<BackgroundColor>#f2f2f2</BackgroundColor>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
</Textbox>
</CellContents>
</TablixCell>
<TablixCell>
<CellContents>
<Textbox Name="FREE_SPACE_MB2">
<CanGrow>true</CanGrow>
<KeepTogether>true</KeepTogether>
<Paragraphs>
<Paragraph>
<TextRuns>
<TextRun>
<Value>=Fields!FREE_SPACE_MB.Value</Value>
<Style></Style>
<FontFamily>Segoe UI</FontFamily>
<FontSize>12pt</FontSize>
<Color>#595959</Color>
</Style>
</TextRun>
</TextRuns>
<Style /></Style>
</Paragraph>
</Paragraphs>
<rd:DefaultName>FREE_SPACE_MB</rd:DefaultName>
<Style></Style>
<Border>
<Color>LightGrey</Color>
<Style></Style>Solid</Style>
</Border>
<BackgroundColor>#f2f2f2</BackgroundColor>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
</Textbox>
</CellContents>
</TablixCell>
<TablixCell>
<CellContents>
<Textbox Name="Textbox31">
<CanGrow>true</CanGrow>
<KeepTogether>true</KeepTogether>
<Paragraphs>
<Paragraph>
<TextRuns>
<TextRun>
<Value>=Microsoft.VisualBasic.Strings.FormatPercent(Fields!FREE_SPACE_MB.Value / Fields!FILE_SIZE_MB.Value)</Value>
<Style></Style>
<FontFamily>Segoe UI</FontFamily>
<FontSize>12pt</FontSize>
<Color>#595959</Color>
</Style>
</TextRun>
</TextRuns>
<Style /></Style>
</Paragraph>
</Paragraphs>
<rd:DefaultName>Textbox27</rd:DefaultName>
<Style></Style>
<Border>
<Color>LightGrey</Color>
<Style></Style>Solid</Style>
</Border>
<BackgroundColor>#f2f2f2</BackgroundColor>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
</Textbox>
</CellContents>
</TablixCell>
<TablixCell>
<CellContents>
<Textbox Name="FILENAME2">
<CanGrow>true</CanGrow>
<KeepTogether>true</KeepTogether>
<Paragraphs>
<Paragraph>
<TextRuns>
<TextRun>
<Value>=Fields!FILENAME.Value</Value>
<Style></Style>
<FontFamily>Segoe UI</FontFamily>
<FontSize>12pt</FontSize>
<Color>#595959</Color>
</Style>
</TextRun>
</TextRuns>
<Style /></Style>
</Paragraph>
</Paragraphs>
<rd:DefaultName>FILENAME</rd:DefaultName>
<Style></Style>
<Border>
<Color>LightGrey</Color>
<Style></Style>Solid</Style>
</Border>
<BackgroundColor>#f2f2f2</BackgroundColor>
<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 />
</TablixMembers>
</TablixColumnHierarchy>
<TablixRowHierarchy>
<TablixMembers>
<TablixMember>
<KeepWithGroup>After</KeepWithGroup>
<RepeatOnNewPage>true</RepeatOnNewPage>
<KeepTogether>true</KeepTogether>
</TablixMember>
<TablixMember>
<Group Name="Details4" />
</TablixMember>
</TablixMembers>
</TablixRowHierarchy>
<RepeatColumnHeaders>true</RepeatColumnHeaders>
<RepeatRowHeaders>true</RepeatRowHeaders>
<FixedColumnHeaders>true</FixedColumnHeaders>
<FixedRowHeaders>true</FixedRowHeaders>
<DataSetName>DWFreeSpace</DataSetName>
<PageBreak>
<BreakLocation>End</BreakLocation>
</PageBreak>
<Top>127.14392mm</Top>
<Left>15.35278mm</Left>
<Height>22.62882mm</Height>
<Width>396.83731mm</Width>
<ZIndex>5</ZIndex>
<Style></Style>
<Border>
<Style></Style>None</Style>
</Border>
</Style>
</Tablix>
<GaugePanel Name="GaugePanel6">
<LinearGauges>
<LinearGauge Name="LinearGauge1">
<GaugeScales>
<LinearScale Name="LinearScale1">
<GaugePointers>
<LinearPointer Name="LinearPointer1">
<Thermometer>
<Style /></Style>
</Thermometer>
<Style></Style>
<Border>
<Style></Style>None</Style>
</Border>
<BackgroundColor>White</BackgroundColor>
<BackgroundGradientType>DiagonalLeft</BackgroundGradientType>
<BackgroundGradientEndColor>Orange</BackgroundGradientEndColor>
<BackgroundHatchType>None</BackgroundHatchType>
<ShadowOffset>1pt</ShadowOffset>
</Style>
<GaugeInputValue>
<Value>=Fields!FREE_SPACE_MB.Value / Fields!FILE_SIZE_MB.Value * 100</Value>
<Multiplier>1</Multiplier>
</GaugeInputValue>
<PointerImage>
<OffsetX>0pt</OffsetX>
<OffsetY>0pt</OffsetY>
<Source>External</Source>
<Value />
</PointerImage>
<MarkerLength>25</MarkerLength>
<MarkerStyle>Wedge</MarkerStyle>
<Placement>Cross</Placement>
<Width>10</Width>
</LinearPointer>
</GaugePointers>
<ScaleRanges>
<ScaleRange Name="LinearRange1">
<Style></Style>
<Border>
<Color>Silver</Color>
<Style></Style>Solid</Style>
</Border>
<BackgroundColor>Red</BackgroundColor>
<BackgroundGradientType>DiagonalLeft</BackgroundGradientType>
<BackgroundGradientEndColor>Orange</BackgroundGradientEndColor>
<BackgroundHatchType>None</BackgroundHatchType>
<ShadowOffset>0pt</ShadowOffset>
</Style>
<BackgroundGradientType>None</BackgroundGradientType>
<DistanceFromScale>0</DistanceFromScale>
<StartValue>
<Value>0</Value>
<Multiplier>1</Multiplier>
</StartValue>
<EndValue>
<Value>10</Value>
<Multiplier>1</Multiplier>
</EndValue>
<StartWidth>30</StartWidth>
<EndWidth>30</EndWidth>
<Placement>Cross</Placement>
</ScaleRange>
<ScaleRange Name="LinearRange2">
<Style></Style>
<Border>
<Color>Silver</Color>
<Style></Style>None</Style>
</Border>
<BackgroundColor>Orange</BackgroundColor>
<BackgroundGradientType>DiagonalLeft</BackgroundGradientType>
<BackgroundGradientEndColor>Orange</BackgroundGradientEndColor>
<BackgroundHatchType>None</BackgroundHatchType>
<ShadowOffset>0pt</ShadowOffset>
</Style>
<DistanceFromScale>0</DistanceFromScale>
<StartValue>
<Value>10</Value>
<Multiplier>1</Multiplier>
</StartValue>
<EndValue>
<Value>20</Value>
<Multiplier>1</Multiplier>
</EndValue>
<StartWidth>30</StartWidth>
<EndWidth>30</EndWidth>
<Placement>Cross</Placement>
</ScaleRange>
<ScaleRange Name="LinearRange3">
<Style></Style>
<Border>
<Color>Silver</Color>
<Style></Style>None</Style>
</Border>
<BackgroundColor>Green</BackgroundColor>
<BackgroundGradientType>DiagonalLeft</BackgroundGradientType>
<BackgroundGradientEndColor>Orange</BackgroundGradientEndColor>
<BackgroundHatchType>None</BackgroundHatchType>
<ShadowOffset>0pt</ShadowOffset>
</Style>
<BackgroundGradientType>LeftRight</BackgroundGradientType>
<DistanceFromScale>0</DistanceFromScale>
<StartValue>
<Value>20</Value>
<Multiplier>1</Multiplier>
</StartValue>
<EndValue>
<Value>100</Value>
<Multiplier>1</Multiplier>
</EndValue>
<StartWidth>30</StartWidth>
<EndWidth>30</EndWidth>
<Placement>Cross</Placement>
</ScaleRange>
</ScaleRanges>
<Style></Style>
<Border>
<Style></Style>None</Style>
</Border>
<BackgroundColor>#00ffffff</BackgroundColor>
<BackgroundGradientType>None</BackgroundGradientType>
<BackgroundGradientEndColor>White</BackgroundGradientEndColor>
<BackgroundHatchType>None</BackgroundHatchType>
<ShadowOffset>0pt</ShadowOffset>
</Style>
<Interval>NaN</Interval>
<IntervalOffset>NaN</IntervalOffset>
<MaximumValue>
<Value>100</Value>
<Multiplier>1</Multiplier>
</MaximumValue>
<MinimumValue>
<Value>0</Value>
<Multiplier>1</Multiplier>
</MinimumValue>
<Reversed>true</Reversed>
<GaugeMajorTickMarks>
<Interval>NaN</Interval>
<IntervalOffset>NaN</IntervalOffset>
<Style></Style>
<Border>
<Color>DimGray</Color>
<Style></Style>None</Style>
</Border>
<BackgroundColor>DimGray</BackgroundColor>
</Style>
<DistanceFromScale>-20</DistanceFromScale>
<Placement>Cross</Placement>
<TickMarkImage>
<Source>External</Source>
<Value />
</TickMarkImage>
<Length>5</Length>
<Width>0.5</Width>
</GaugeMajorTickMarks>
<GaugeMinorTickMarks>
<Interval>NaN</Interval>
<IntervalOffset>NaN</IntervalOffset>
<Style></Style>
<Border>
<Color>DimGray</Color>
<Style></Style>None</Style>
</Border>
<BackgroundColor>DimGray</BackgroundColor>
</Style>
<Placement>Cross</Placement>
<TickMarkImage>
<Source>External</Source>
<Value />
</TickMarkImage>
<Length>9</Length>
<Width>1</Width>
<Hidden>true</Hidden>
</GaugeMinorTickMarks>
<MaximumPin>
<PinLabel>
<Style></Style>
<FontSize>12pt</FontSize>
</Style>
<DistanceFromScale>0</DistanceFromScale>
</PinLabel>
<Style></Style>
<Border>
<Color>DimGray</Color>
<Style></Style>Solid</Style>
</Border>
<BackgroundColor>WhiteSmoke</BackgroundColor>
</Style>
<Placement>Cross</Placement>
<TickMarkImage>
<Source>External</Source>
<Value />
</TickMarkImage>
<Length>6</Length>
<Width>6</Width>
<Shape>Circle</Shape>
</MaximumPin>
<MinimumPin>
<PinLabel>
<Style></Style>
<FontSize>12pt</FontSize>
</Style>
<DistanceFromScale>0</DistanceFromScale>
</PinLabel>
<Style></Style>
<Border>
<Color>DimGray</Color>
<Style></Style>Solid</Style>
</Border>
<BackgroundColor>WhiteSmoke</BackgroundColor>
</Style>
<Placement>Cross</Placement>
<TickMarkImage>
<Source>External</Source>
<Value />
</TickMarkImage>
<Length>6</Length>
<Width>6</Width>
<Shape>Circle</Shape>
</MinimumPin>
<ScaleLabels>
<Style></Style>
<FontSize>12pt</FontSize>
<Format>0\%</Format>
<Color>#404040</Color>
</Style>
<Interval>NaN</Interval>
<IntervalOffset>NaN</IntervalOffset>
<DistanceFromScale>20</DistanceFromScale>
<Placement>Outside</Placement>
<RotateLabels>true</RotateLabels>
<ShowEndLabels>true</ShowEndLabels>
<UseFontPercent>true</UseFontPercent>
</ScaleLabels>
<Width>0</Width>
</LinearScale>
</GaugeScales>
<BackFrame>
<Style></Style>
<Border>
<Style></Style>None</Style>
</Border>
<BackgroundColor>WhiteSmoke</BackgroundColor>
<BackgroundGradientType>HorizontalCenter</BackgroundGradientType>
<BackgroundGradientEndColor>DarkGray</BackgroundGradientEndColor>
<BackgroundHatchType>None</BackgroundHatchType>
<ShadowOffset>0pt</ShadowOffset>
</Style>
<FrameStyle>Edged</FrameStyle>
<FrameShape>RoundedRectangular</FrameShape>
<FrameBackground>
<Style></Style>
<BackgroundColor>Gainsboro</BackgroundColor>
<BackgroundGradientType>DiagonalLeft</BackgroundGradientType>
<BackgroundGradientEndColor>WhiteSmoke</BackgroundGradientEndColor>
<BackgroundHatchType>None</BackgroundHatchType>
</Style>
</FrameBackground>
<FrameImage>
<Source>External</Source>
<Value />
</FrameImage>
</BackFrame>
<ClipContent>true</ClipContent>
<TopImage>
<Source>External</Source>
<Value />
</TopImage>
<AspectRatio>NaN</AspectRatio>
<Height>100</Height>
<Width>100</Width>
</LinearGauge>
</LinearGauges>
<AutoLayout>true</AutoLayout>
<BackFrame>
<Style></Style>
<Border>
<Style></Style>None</Style>
</Border>
<BackgroundColor>Gainsboro</BackgroundColor>
<BackgroundGradientType>DiagonalLeft</BackgroundGradientType>
<BackgroundGradientEndColor>Gray</BackgroundGradientEndColor>
<BackgroundHatchType>None</BackgroundHatchType>
<ShadowOffset>0pt</ShadowOffset>
</Style>
<FrameBackground>
<Style></Style>
<BackgroundColor>Silver</BackgroundColor>
<BackgroundGradientType>DiagonalLeft</BackgroundGradientType>
<BackgroundGradientEndColor>Gray</BackgroundGradientEndColor>
<BackgroundHatchType>None</BackgroundHatchType>
</Style>
</FrameBackground>
<FrameImage>
<Source>External</Source>
<Value />
</FrameImage>
</BackFrame>
<TopImage>
<Source>External</Source>
<Value />
</TopImage>
<DataSetName>DWFreeSpace</DataSetName>
<Top>3.69463in</Top>
<Left>7.16542in</Left>
<Height>0.96337in</Height>
<Width>3.47917in</Width>
<ZIndex>6</ZIndex>
<Style></Style>
<Border>
<Style></Style>None</Style>
</Border>
<BackgroundColor>White</BackgroundColor>
</Style>
</GaugePanel>
<Tablix Name="Tablix5">
<TablixBody>
<TablixColumns>
<TablixColumn>
<Width>153.19375mm</Width>
</TablixColumn>
<TablixColumn>
<Width>8.128mm</Width>
</TablixColumn>
</TablixColumns>
<TablixRows>
<TablixRow>
<Height>14.22483mm</Height>
<TablixCells>
<TablixCell>
<CellContents>
<Textbox Name="Textbox57">
<CanGrow>true</CanGrow>
<KeepTogether>true</KeepTogether>
<Paragraphs>
<Paragraph>
<TextRuns>
<TextRun>
<Value>Data Warehouse</Value>
<Style></Style>
<FontFamily>Segoe UI</FontFamily>
<FontSize>14pt</FontSize>
<FontWeight>SemiBold</FontWeight>
<Color>#595959</Color>
</Style>
</TextRun>
</TextRuns>
<Style /></Style>
</Paragraph>
</Paragraphs>
<rd:DefaultName>Textbox50</rd:DefaultName>
<Style></Style>
<Border>
<Color>LightGrey</Color>
<Style></Style>Solid</Style>
</Border>
<BackgroundColor>#f2f2f2</BackgroundColor>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
</Textbox>
</CellContents>
</TablixCell>
<TablixCell>
<CellContents>
<Textbox Name="Textbox58">
<CanGrow>true</CanGrow>
<KeepTogether>true</KeepTogether>
<Paragraphs>
<Paragraph>
<TextRuns>
<TextRun>
<Value />
<Style></Style>
<FontFamily>Segoe UI</FontFamily>
<FontSize>14pt</FontSize>
<FontWeight>SemiBold</FontWeight>
<Color>#595959</Color>
</Style>
</TextRun>
</TextRuns>
<Style /></Style>
</Paragraph>
</Paragraphs>
<rd:DefaultName>Textbox52</rd:DefaultName>
<Style></Style>
<Border>
<Color>LightGrey</Color>
<Style></Style>Solid</Style>
</Border>
<BackgroundColor>#f2f2f2</BackgroundColor>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
</Textbox>
</CellContents>
</TablixCell>
</TablixCells>
</TablixRow>
<TablixRow>
<Height>18.18217mm</Height>
<TablixCells>
<TablixCell>
<CellContents>
<Textbox Name="Textbox59">
<CanGrow>true</CanGrow>
<KeepTogether>true</KeepTogether>
<Paragraphs>
<Paragraph>
<TextRuns>
<TextRun>
<Value>=Microsoft.VisualBasic.Interaction.iif(Fields!growth.Value &lt; 10, "The Data Warehouse has less than 9% Free Space. If no Auto grow is configured please extend the database size.", "The Database Free Space is above 10 %.")</Value>
<Style></Style>
<FontFamily>Segoe UI</FontFamily>
<FontSize>12pt</FontSize>
<Color>#595959</Color>
</Style>
</TextRun>
</TextRuns>
<Style /></Style>
</Paragraph>
</Paragraphs>
<rd:DefaultName>Textbox51</rd:DefaultName>
<Style></Style>
<Border>
<Color>LightGrey</Color>
<Style></Style>Solid</Style>
</Border>
<BackgroundColor>#f2f2f2</BackgroundColor>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
</Textbox>
</CellContents>
</TablixCell>
<TablixCell>
<CellContents>
<Image Name="Image9">
<Source>External</Source>
<Value>=Microsoft.VisualBasic.Interaction.iif(Fields!growth.Value &gt; 10, "/SystemCenter.Operations.Manager.Health.Check.Report.Library/Healthy", "/SystemCenter.Operations.Manager.Health.Check.Report.Library/Error")</Value>
<Style></Style>
<Border>
<Color>LightGrey</Color>
<Style></Style>Solid</Style>
</Border>
</Style>
</Image>
</CellContents>
</TablixCell>
</TablixCells>
</TablixRow>
</TablixRows>
</TablixBody>
<TablixColumnHierarchy>
<TablixMembers>
<TablixMember />
<TablixMember />
</TablixMembers>
</TablixColumnHierarchy>
<TablixRowHierarchy>
<TablixMembers>
<TablixMember>
<KeepWithGroup>After</KeepWithGroup>
<RepeatOnNewPage>true</RepeatOnNewPage>
<KeepTogether>true</KeepTogether>
</TablixMember>
<TablixMember>
<Group Name="Details5">
<Filters>
<Filter>
<FilterExpression>=Fields!NAME.Value</FilterExpression>
<Operator>Equal</Operator>
<FilterValues>
<FilterValue>MOM_DATA</FilterValue>
</FilterValues>
</Filter>
</Filters>
</Group>
</TablixMember>
</TablixMembers>
</TablixRowHierarchy>
<RepeatColumnHeaders>true</RepeatColumnHeaders>
<RepeatRowHeaders>true</RepeatRowHeaders>
<FixedColumnHeaders>true</FixedColumnHeaders>
<FixedRowHeaders>true</FixedRowHeaders>
<DataSetName>DWFreeSpace</DataSetName>
<Top>79.61875mm</Top>
<Left>15.35278mm</Left>
<Height>32.407mm</Height>
<Width>161.32175mm</Width>
<ZIndex>7</ZIndex>
<Style></Style>
<Border>
<Style></Style>None</Style>
</Border>
</Style>
</Tablix>
<Textbox Name="Textbox62">
<CanGrow>true</CanGrow>
<KeepTogether>true</KeepTogether>
<Paragraphs>
<Paragraph>
<TextRuns>
<TextRun>
<Value>Free Space in percentage</Value>
<Style></Style>
<FontFamily>Segoe UI</FontFamily>
<FontSize>14pt</FontSize>
<FontWeight>SemiBold</FontWeight>
<Color>#595959</Color>
</Style>
</TextRun>
</TextRuns>
<Style /></Style>
</Paragraph>
</Paragraphs>
<rd:DefaultName>Textbox54</rd:DefaultName>
<Top>3.16932in</Top>
<Left>7.16542in</Left>
<Height>0.46975in</Height>
<Width>3.47917in</Width>
<ZIndex>8</ZIndex>
<Style></Style>
<Border>
<Style></Style>None</Style>
</Border>
<BackgroundColor>#f2f2f2</BackgroundColor>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
</Textbox>
<Tablix Name="Tablix6">
<TablixBody>
<TablixColumns>
<TablixColumn>
<Width>93.74237mm</Width>
</TablixColumn>
<TablixColumn>
<Width>8.128mm</Width>
</TablixColumn>
</TablixColumns>
<TablixRows>
<TablixRow>
<Height>14.6658mm</Height>
<TablixCells>
<TablixCell>
<CellContents>
<Textbox Name="Textbox63">
<CanGrow>true</CanGrow>
<KeepTogether>true</KeepTogether>
<Paragraphs>
<Paragraph>
<TextRuns>
<TextRun>
<Value>Data Warehouse</Value>
<Style></Style>
<FontFamily>Segoe UI</FontFamily>
<FontSize>14pt</FontSize>
<FontWeight>SemiBold</FontWeight>
<Color>#595959</Color>
</Style>
</TextRun>
</TextRuns>
<Style /></Style>
</Paragraph>
</Paragraphs>
<rd:DefaultName>Textbox50</rd:DefaultName>
<Style></Style>
<Border>
<Color>LightGrey</Color>
<Style></Style>Solid</Style>
</Border>
<BackgroundColor>#f2f2f2</BackgroundColor>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
</Textbox>
</CellContents>
</TablixCell>
<TablixCell>
<CellContents>
<Textbox Name="Textbox64">
<CanGrow>true</CanGrow>
<KeepTogether>true</KeepTogether>
<Paragraphs>
<Paragraph>
<TextRuns>
<TextRun>
<Value />
<Style></Style>
<FontFamily>Segoe UI</FontFamily>
<FontSize>14pt</FontSize>
<FontWeight>SemiBold</FontWeight>
<Color>#595959</Color>
</Style>
</TextRun>
</TextRuns>
<Style /></Style>
</Paragraph>
</Paragraphs>
<rd:DefaultName>Textbox52</rd:DefaultName>
<Style></Style>
<Border>
<Color>LightGrey</Color>
<Style></Style>Solid</Style>
</Border>
<BackgroundColor>#f2f2f2</BackgroundColor>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
</Textbox>
</CellContents>
</TablixCell>
</TablixCells>
</TablixRow>
<TablixRow>
<Height>17.74119mm</Height>
<TablixCells>
<TablixCell>
<CellContents>
<Textbox Name="Textbox65">
<CanGrow>true</CanGrow>
<KeepTogether>true</KeepTogether>
<Paragraphs>
<Paragraph>
<TextRuns>
<TextRun>
<Value>=Microsoft.VisualBasic.Interaction.iif(Fields!growth.Value = 0, "Autogrow is turned off. Please monitor the db size to avoid filling up the Data Warehouse Database.", "Auto grow is turned on. Please make sure the auto grow settings are not set to slim to avoid performance penalty.")</Value>
<Style></Style>
<FontFamily>Segoe UI</FontFamily>
<FontSize>12pt</FontSize>
<Color>#595959</Color>
</Style>
</TextRun>
</TextRuns>
<Style /></Style>
</Paragraph>
</Paragraphs>
<rd:DefaultName>Textbox51</rd:DefaultName>
<Style></Style>
<Border>
<Color>LightGrey</Color>
<Style></Style>Solid</Style>
</Border>
<BackgroundColor>#f2f2f2</BackgroundColor>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
</Textbox>
</CellContents>
</TablixCell>
<TablixCell>
<CellContents>
<Image Name="Image10">
<Source>External</Source>
<Value>="/SystemCenter.Operations.Manager.Health.Check.Report.Library/Healthy"</Value>
<Style></Style>
<Border>
<Color>LightGrey</Color>
<Style></Style>Solid</Style>
</Border>
</Style>
</Image>
</CellContents>
</TablixCell>
</TablixCells>
</TablixRow>
</TablixRows>
</TablixBody>
<TablixColumnHierarchy>
<TablixMembers>
<TablixMember />
<TablixMember />
</TablixMembers>
</TablixColumnHierarchy>
<TablixRowHierarchy>
<TablixMembers>
<TablixMember>
<KeepWithGroup>After</KeepWithGroup>
<RepeatOnNewPage>true</RepeatOnNewPage>
<KeepTogether>true</KeepTogether>
</TablixMember>
<TablixMember>
<Group Name="Details6">
<Filters>
<Filter>
<FilterExpression>=Fields!NAME.Value</FilterExpression>
<Operator>Equal</Operator>
<FilterValues>
<FilterValue>MOM_DATA</FilterValue>
</FilterValues>
</Filter>
</Filters>
</Group>
</TablixMember>
</TablixMembers>
</TablixRowHierarchy>
<RepeatColumnHeaders>true</RepeatColumnHeaders>
<RepeatRowHeaders>true</RepeatRowHeaders>
<FixedColumnHeaders>true</FixedColumnHeaders>
<FixedRowHeaders>true</FixedRowHeaders>
<DataSetName>DWFreeSpace</DataSetName>
<Top>79.61875mm</Top>
<Left>277.96647mm</Left>
<Height>32.40699mm</Height>
<Width>101.87037mm</Width>
<ZIndex>9</ZIndex>
<Style></Style>
<Border>
<Style></Style>None</Style>
</Border>
</Style>
</Tablix>
<Tablix Name="Tablix7">
<TablixBody>
<TablixColumns>
<TablixColumn>
<Width>85.49911mm</Width>
</TablixColumn>
<TablixColumn>
<Width>25.4mm</Width>
</TablixColumn>
<TablixColumn>
<Width>25.4mm</Width>
</TablixColumn>
<TablixColumn>
<Width>25.4mm</Width>
</TablixColumn>
</TablixColumns>
<TablixRows>
<TablixRow>
<Height>8.40399mm</Height>
<TablixCells>
<TablixCell>
<CellContents>
<Textbox Name="Textbox117">
<CanGrow>true</CanGrow>
<KeepTogether>true</KeepTogether>
<Paragraphs>
<Paragraph>
<TextRuns>
<TextRun>
<Value>Operations Manager</Value>
<Style></Style>
<FontFamily>Segoe UI</FontFamily>
<FontSize>14pt</FontSize>
<FontWeight>SemiBold</FontWeight>
<Color>#595959</Color>
</Style>
</TextRun>
</TextRuns>
<Style /></Style>
</Paragraph>
</Paragraphs>
<rd:DefaultName>Textbox117</rd:DefaultName>
<Style></Style>
<Border>
<Color>LightGrey</Color>
<Style></Style>Solid</Style>
</Border>
<BackgroundColor>#f2f2f2</BackgroundColor>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
</Textbox>
</CellContents>
</TablixCell>
<TablixCell>
<CellContents>
<Textbox Name="Textbox118">
<CanGrow>true</CanGrow>
<KeepTogether>true</KeepTogether>
<Paragraphs>
<Paragraph>
<TextRuns>
<TextRun>
<Value />
<Style></Style>
<FontFamily>Segoe UI</FontFamily>
<FontSize>14pt</FontSize>
<FontWeight>SemiBold</FontWeight>
<Color>#595959</Color>
</Style>
</TextRun>
</TextRuns>
<Style /></Style>
</Paragraph>
</Paragraphs>
<rd:DefaultName>Textbox118</rd:DefaultName>
<Style></Style>
<Border>
<Color>LightGrey</Color>
<Style></Style>Solid</Style>
</Border>
<BackgroundColor>#f2f2f2</BackgroundColor>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
</Textbox>
</CellContents>
</TablixCell>
<TablixCell>
<CellContents>
<Textbox Name="Textbox119">
<CanGrow>true</CanGrow>
<KeepTogether>true</KeepTogether>
<Paragraphs>
<Paragraph>
<TextRuns>
<TextRun>
<Value />
<Style></Style>
<FontFamily>Segoe UI</FontFamily>
<FontSize>14pt</FontSize>
<FontWeight>SemiBold</FontWeight>
<Color>#595959</Color>
</Style>
</TextRun>
</TextRuns>
<Style /></Style>
</Paragraph>
</Paragraphs>
<rd:DefaultName>Textbox119</rd:DefaultName>
<Style></Style>
<Border>
<Color>LightGrey</Color>
<Style></Style>Solid</Style>
</Border>
<BackgroundColor>#f2f2f2</BackgroundColor>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
</Textbox>
</CellContents>
</TablixCell>
<TablixCell>
<CellContents>
<Textbox Name="Textbox120">
<CanGrow>true</CanGrow>
<KeepTogether>true</KeepTogether>
<Paragraphs>
<Paragraph>
<TextRuns>
<TextRun>
<Value />
<Style></Style>
<FontFamily>Segoe UI</FontFamily>
<FontSize>14pt</FontSize>
<FontWeight>SemiBold</FontWeight>
<Color>#595959</Color>
</Style>
</TextRun>
</TextRuns>
<Style /></Style>
</Paragraph>
</Paragraphs>
<rd:DefaultName>Textbox120</rd:DefaultName>
<Style></Style>
<Border>
<Color>LightGrey</Color>
<Style></Style>Solid</Style>
</Border>
<BackgroundColor>#f2f2f2</BackgroundColor>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
</Textbox>
</CellContents>
</TablixCell>
</TablixCells>
</TablixRow>
<TablixRow>
<Height>14.22483mm</Height>
<TablixCells>
<TablixCell>
<CellContents>
<Textbox Name="Textbox97">
<CanGrow>true</CanGrow>
<KeepTogether>true</KeepTogether>
<Paragraphs>
<Paragraph>
<TextRuns>
<TextRun>
<Value>Table Name</Value>
<Style></Style>
<FontFamily>Segoe UI</FontFamily>
<FontSize>14pt</FontSize>
<FontWeight>SemiBold</FontWeight>
<Color>#595959</Color>
</Style>
</TextRun>
</TextRuns>
<Style /></Style>
</Paragraph>
</Paragraphs>
<rd:DefaultName>Textbox97</rd:DefaultName>
<Style></Style>
<Border>
<Color>LightGrey</Color>
<Style></Style>Solid</Style>
</Border>
<BackgroundColor>#f2f2f2</BackgroundColor>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
</Textbox>
</CellContents>
</TablixCell>
<TablixCell>
<CellContents>
<Textbox Name="Textbox99">
<CanGrow>true</CanGrow>
<KeepTogether>true</KeepTogether>
<Paragraphs>
<Paragraph>
<TextRuns>
<TextRun>
<Value>data kb</Value>
<Style></Style>
<FontFamily>Segoe UI</FontFamily>
<FontSize>14pt</FontSize>
<FontWeight>SemiBold</FontWeight>
<Color>#595959</Color>
</Style>
</TextRun>
</TextRuns>
<Style /></Style>
</Paragraph>
</Paragraphs>
<rd:DefaultName>Textbox99</rd:DefaultName>
<Style></Style>
<Border>
<Color>LightGrey</Color>
<Style></Style>Solid</Style>
</Border>
<BackgroundColor>#f2f2f2</BackgroundColor>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
</Textbox>
</CellContents>
</TablixCell>
<TablixCell>
<CellContents>
<Textbox Name="Textbox101">
<CanGrow>true</CanGrow>
<KeepTogether>true</KeepTogether>
<Paragraphs>
<Paragraph>
<TextRuns>
<TextRun>
<Value>index kb</Value>
<Style></Style>
<FontFamily>Segoe UI</FontFamily>
<FontSize>14pt</FontSize>
<FontWeight>SemiBold</FontWeight>
<Color>#595959</Color>
</Style>
</TextRun>
</TextRuns>
<Style /></Style>
</Paragraph>
</Paragraphs>
<rd:DefaultName>Textbox101</rd:DefaultName>
<Style></Style>
<Border>
<Color>LightGrey</Color>
<Style></Style>Solid</Style>
</Border>
<BackgroundColor>#f2f2f2</BackgroundColor>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
</Textbox>
</CellContents>
</TablixCell>
<TablixCell>
<CellContents>
<Textbox Name="Textbox103">
<CanGrow>true</CanGrow>
<KeepTogether>true</KeepTogether>
<Paragraphs>
<Paragraph>
<TextRuns>
<TextRun>
<Value>blob kb</Value>
<Style></Style>
<FontFamily>Segoe UI</FontFamily>
<FontSize>14pt</FontSize>
<FontWeight>SemiBold</FontWeight>
<Color>#595959</Color>
</Style>
</TextRun>
</TextRuns>
<Style /></Style>
</Paragraph>
</Paragraphs>
<rd:DefaultName>Textbox103</rd:DefaultName>
<Style></Style>
<Border>
<Color>LightGrey</Color>
<Style></Style>Solid</Style>
</Border>
<BackgroundColor>#f2f2f2</BackgroundColor>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
</Textbox>
</CellContents>
</TablixCell>
</TablixCells>
</TablixRow>
<TablixRow>
<Height>8.40399mm</Height>
<TablixCells>
<TablixCell>
<CellContents>
<Textbox Name="name">
<CanGrow>true</CanGrow>
<KeepTogether>true</KeepTogether>
<Paragraphs>
<Paragraph>
<TextRuns>
<TextRun>
<Value>=Fields!name.Value</Value>
<Style></Style>
<FontFamily>Segoe UI</FontFamily>
<FontSize>12pt</FontSize>
<Color>#595959</Color>
</Style>
</TextRun>
</TextRuns>
<Style /></Style>
</Paragraph>
</Paragraphs>
<rd:DefaultName>name</rd:DefaultName>
<Style></Style>
<Border>
<Color>LightGrey</Color>
<Style></Style>Solid</Style>
</Border>
<BackgroundColor>#f2f2f2</BackgroundColor>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
</Textbox>
</CellContents>
</TablixCell>
<TablixCell>
<CellContents>
<Textbox Name="data_kb">
<CanGrow>true</CanGrow>
<KeepTogether>true</KeepTogether>
<Paragraphs>
<Paragraph>
<TextRuns>
<TextRun>
<Value>=Fields!data_kb.Value</Value>
<Style></Style>
<FontFamily>Segoe UI</FontFamily>
<FontSize>12pt</FontSize>
<Color>#595959</Color>
</Style>
</TextRun>
</TextRuns>
<Style /></Style>
</Paragraph>
</Paragraphs>
<rd:DefaultName>data_kb</rd:DefaultName>
<Style></Style>
<Border>
<Color>LightGrey</Color>
<Style></Style>Solid</Style>
</Border>
<BackgroundColor>#f2f2f2</BackgroundColor>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
</Textbox>
</CellContents>
</TablixCell>
<TablixCell>
<CellContents>
<Textbox Name="index_kb">
<CanGrow>true</CanGrow>
<KeepTogether>true</KeepTogether>
<Paragraphs>
<Paragraph>
<TextRuns>
<TextRun>
<Value>=Fields!index_kb.Value</Value>
<Style></Style>
<FontFamily>Segoe UI</FontFamily>
<FontSize>12pt</FontSize>
<Color>#595959</Color>
</Style>
</TextRun>
</TextRuns>
<Style /></Style>
</Paragraph>
</Paragraphs>
<rd:DefaultName>index_kb</rd:DefaultName>
<Style></Style>
<Border>
<Color>LightGrey</Color>
<Style></Style>Solid</Style>
</Border>
<BackgroundColor>#f2f2f2</BackgroundColor>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
</Textbox>
</CellContents>
</TablixCell>
<TablixCell>
<CellContents>
<Textbox Name="blob_kb">
<CanGrow>true</CanGrow>
<KeepTogether>true</KeepTogether>
<Paragraphs>
<Paragraph>
<TextRuns>
<TextRun>
<Value>=Fields!blob_kb.Value</Value>
<Style></Style>
<FontFamily>Segoe UI</FontFamily>
<FontSize>12pt</FontSize>
<Color>#595959</Color>
</Style>
</TextRun>
</TextRuns>
<Style /></Style>
</Paragraph>
</Paragraphs>
<rd:DefaultName>blob_kb</rd:DefaultName>
<Style></Style>
<Border>
<Color>LightGrey</Color>
<Style></Style>Solid</Style>
</Border>
<BackgroundColor>#f2f2f2</BackgroundColor>
<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 />
</TablixMembers>
</TablixColumnHierarchy>
<TablixRowHierarchy>
<TablixMembers>
<TablixMember>
<KeepWithGroup>After</KeepWithGroup>
<RepeatOnNewPage>true</RepeatOnNewPage>
</TablixMember>
<TablixMember>
<KeepWithGroup>After</KeepWithGroup>
<RepeatOnNewPage>true</RepeatOnNewPage>
<KeepTogether>true</KeepTogether>
</TablixMember>
<TablixMember>
<Group Name="Details7" />
</TablixMember>
</TablixMembers>
</TablixRowHierarchy>
<RepeatColumnHeaders>true</RepeatColumnHeaders>
<RepeatRowHeaders>true</RepeatRowHeaders>
<FixedColumnHeaders>true</FixedColumnHeaders>
<FixedRowHeaders>true</FixedRowHeaders>
<DataSetName>OMLargeTables</DataSetName>
<Top>157.49907mm</Top>
<Left>16.37242mm</Left>
<Height>31.03281mm</Height>
<Width>161.69911mm</Width>
<ZIndex>10</ZIndex>
<Style></Style>
<Border>
<Style></Style>None</Style>
</Border>
</Style>
</Tablix>
<Tablix Name="Tablix8">
<TablixBody>
<TablixColumns>
<TablixColumn>
<Width>88.37082mm</Width>
</TablixColumn>
<TablixColumn>
<Width>25.4mm</Width>
</TablixColumn>
<TablixColumn>
<Width>25.4mm</Width>
</TablixColumn>
<TablixColumn>
<Width>25.4mm</Width>
</TablixColumn>
</TablixColumns>
<TablixRows>
<TablixRow>
<Height>8.40399mm</Height>
<TablixCells>
<TablixCell>
<CellContents>
<Textbox Name="Textbox121">
<CanGrow>true</CanGrow>
<KeepTogether>true</KeepTogether>
<Paragraphs>
<Paragraph>
<TextRuns>
<TextRun>
<Value>Data Warehouse</Value>
<Style></Style>
<FontFamily>Segoe UI</FontFamily>
<FontSize>14pt</FontSize>
<FontWeight>SemiBold</FontWeight>
<Color>#595959</Color>
</Style>
</TextRun>
</TextRuns>
<Style /></Style>
</Paragraph>
</Paragraphs>
<rd:DefaultName>Textbox121</rd:DefaultName>
<Style></Style>
<Border>
<Color>LightGrey</Color>
<Style></Style>Solid</Style>
</Border>
<BackgroundColor>#f2f2f2</BackgroundColor>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
</Textbox>
</CellContents>
</TablixCell>
<TablixCell>
<CellContents>
<Textbox Name="Textbox122">
<CanGrow>true</CanGrow>
<KeepTogether>true</KeepTogether>
<Paragraphs>
<Paragraph>
<TextRuns>
<TextRun>
<Value />
<Style></Style>
<FontFamily>Segoe UI</FontFamily>
<FontSize>14pt</FontSize>
<FontWeight>SemiBold</FontWeight>
<Color>#595959</Color>
</Style>
</TextRun>
</TextRuns>
<Style /></Style>
</Paragraph>
</Paragraphs>
<rd:DefaultName>Textbox122</rd:DefaultName>
<Style></Style>
<Border>
<Color>LightGrey</Color>
<Style></Style>Solid</Style>
</Border>
<BackgroundColor>#f2f2f2</BackgroundColor>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
</Textbox>
</CellContents>
</TablixCell>
<TablixCell>
<CellContents>
<Textbox Name="Textbox123">
<CanGrow>true</CanGrow>
<KeepTogether>true</KeepTogether>
<Paragraphs>
<Paragraph>
<TextRuns>
<TextRun>
<Value />
<Style></Style>
<FontFamily>Segoe UI</FontFamily>
<FontSize>14pt</FontSize>
<FontWeight>SemiBold</FontWeight>
<Color>#595959</Color>
</Style>
</TextRun>
</TextRuns>
<Style /></Style>
</Paragraph>
</Paragraphs>
<rd:DefaultName>Textbox123</rd:DefaultName>
<Style></Style>
<Border>
<Color>LightGrey</Color>
<Style></Style>Solid</Style>
</Border>
<BackgroundColor>#f2f2f2</BackgroundColor>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
</Textbox>
</CellContents>
</TablixCell>
<TablixCell>
<CellContents>
<Textbox Name="Textbox124">
<CanGrow>true</CanGrow>
<KeepTogether>true</KeepTogether>
<Paragraphs>
<Paragraph>
<TextRuns>
<TextRun>
<Value />
<Style></Style>
<FontFamily>Segoe UI</FontFamily>
<FontSize>14pt</FontSize>
<FontWeight>SemiBold</FontWeight>
<Color>#595959</Color>
</Style>
</TextRun>
</TextRuns>
<Style /></Style>
</Paragraph>
</Paragraphs>
<rd:DefaultName>Textbox124</rd:DefaultName>
<Style></Style>
<Border>
<Color>LightGrey</Color>
<Style></Style>Solid</Style>
</Border>
<BackgroundColor>#f2f2f2</BackgroundColor>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
</Textbox>
</CellContents>
</TablixCell>
</TablixCells>
</TablixRow>
<TablixRow>
<Height>14.22483mm</Height>
<TablixCells>
<TablixCell>
<CellContents>
<Textbox Name="Textbox98">
<CanGrow>true</CanGrow>
<KeepTogether>true</KeepTogether>
<Paragraphs>
<Paragraph>
<TextRuns>
<TextRun>
<Value>Table Name</Value>
<Style></Style>
<FontFamily>Segoe UI</FontFamily>
<FontSize>14pt</FontSize>
<FontWeight>SemiBold</FontWeight>
<Color>#595959</Color>
</Style>
</TextRun>
</TextRuns>
<Style /></Style>
</Paragraph>
</Paragraphs>
<rd:DefaultName>Textbox97</rd:DefaultName>
<Style></Style>
<Border>
<Color>LightGrey</Color>
<Style></Style>Solid</Style>
</Border>
<BackgroundColor>#f2f2f2</BackgroundColor>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
</Textbox>
</CellContents>
</TablixCell>
<TablixCell>
<CellContents>
<Textbox Name="Textbox100">
<CanGrow>true</CanGrow>
<KeepTogether>true</KeepTogether>
<Paragraphs>
<Paragraph>
<TextRuns>
<TextRun>
<Value>data kb</Value>
<Style></Style>
<FontFamily>Segoe UI</FontFamily>
<FontSize>14pt</FontSize>
<FontWeight>SemiBold</FontWeight>
<Color>#595959</Color>
</Style>
</TextRun>
</TextRuns>
<Style /></Style>
</Paragraph>
</Paragraphs>
<rd:DefaultName>Textbox99</rd:DefaultName>
<Style></Style>
<Border>
<Color>LightGrey</Color>
<Style></Style>Solid</Style>
</Border>
<BackgroundColor>#f2f2f2</BackgroundColor>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
</Textbox>
</CellContents>
</TablixCell>
<TablixCell>
<CellContents>
<Textbox Name="Textbox102">
<CanGrow>true</CanGrow>
<KeepTogether>true</KeepTogether>
<Paragraphs>
<Paragraph>
<TextRuns>
<TextRun>
<Value>index kb</Value>
<Style></Style>
<FontFamily>Segoe UI</FontFamily>
<FontSize>14pt</FontSize>
<FontWeight>SemiBold</FontWeight>
<Color>#595959</Color>
</Style>
</TextRun>
</TextRuns>
<Style /></Style>
</Paragraph>
</Paragraphs>
<rd:DefaultName>Textbox101</rd:DefaultName>
<Style></Style>
<Border>
<Color>LightGrey</Color>
<Style></Style>Solid</Style>
</Border>
<BackgroundColor>#f2f2f2</BackgroundColor>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
</Textbox>
</CellContents>
</TablixCell>
<TablixCell>
<CellContents>
<Textbox Name="Textbox104">
<CanGrow>true</CanGrow>
<KeepTogether>true</KeepTogether>
<Paragraphs>
<Paragraph>
<TextRuns>
<TextRun>
<Value>blob kb</Value>
<Style></Style>
<FontFamily>Segoe UI</FontFamily>
<FontSize>14pt</FontSize>
<FontWeight>SemiBold</FontWeight>
<Color>#595959</Color>
</Style>
</TextRun>
</TextRuns>
<Style /></Style>
</Paragraph>
</Paragraphs>
<rd:DefaultName>Textbox103</rd:DefaultName>
<Style></Style>
<Border>
<Color>LightGrey</Color>
<Style></Style>Solid</Style>
</Border>
<BackgroundColor>#f2f2f2</BackgroundColor>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
</Textbox>
</CellContents>
</TablixCell>
</TablixCells>
</TablixRow>
<TablixRow>
<Height>8.40399mm</Height>
<TablixCells>
<TablixCell>
<CellContents>
<Textbox Name="name2">
<CanGrow>true</CanGrow>
<KeepTogether>true</KeepTogether>
<Paragraphs>
<Paragraph>
<TextRuns>
<TextRun>
<Value>=Fields!name.Value</Value>
<Style></Style>
<FontFamily>Segoe UI</FontFamily>
<FontSize>12pt</FontSize>
<Color>#595959</Color>
</Style>
</TextRun>
</TextRuns>
<Style /></Style>
</Paragraph>
</Paragraphs>
<rd:DefaultName>name</rd:DefaultName>
<Style></Style>
<Border>
<Color>LightGrey</Color>
<Style></Style>Solid</Style>
</Border>
<BackgroundColor>#f2f2f2</BackgroundColor>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
</Textbox>
</CellContents>
</TablixCell>
<TablixCell>
<CellContents>
<Textbox Name="data_kb2">
<CanGrow>true</CanGrow>
<KeepTogether>true</KeepTogether>
<Paragraphs>
<Paragraph>
<TextRuns>
<TextRun>
<Value>=Fields!data_kb.Value</Value>
<Style></Style>
<FontFamily>Segoe UI</FontFamily>
<FontSize>12pt</FontSize>
<Color>#595959</Color>
</Style>
</TextRun>
</TextRuns>
<Style /></Style>
</Paragraph>
</Paragraphs>
<rd:DefaultName>data_kb</rd:DefaultName>
<Style></Style>
<Border>
<Color>LightGrey</Color>
<Style></Style>Solid</Style>
</Border>
<BackgroundColor>#f2f2f2</BackgroundColor>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
</Textbox>
</CellContents>
</TablixCell>
<TablixCell>
<CellContents>
<Textbox Name="index_kb2">
<CanGrow>true</CanGrow>
<KeepTogether>true</KeepTogether>
<Paragraphs>
<Paragraph>
<TextRuns>
<TextRun>
<Value>=Fields!index_kb.Value</Value>
<Style></Style>
<FontFamily>Segoe UI</FontFamily>
<FontSize>12pt</FontSize>
<Color>#595959</Color>
</Style>
</TextRun>
</TextRuns>
<Style /></Style>
</Paragraph>
</Paragraphs>
<rd:DefaultName>index_kb</rd:DefaultName>
<Style></Style>
<Border>
<Color>LightGrey</Color>
<Style></Style>Solid</Style>
</Border>
<BackgroundColor>#f2f2f2</BackgroundColor>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
</Textbox>
</CellContents>
</TablixCell>
<TablixCell>
<CellContents>
<Textbox Name="blob_kb2">
<CanGrow>true</CanGrow>
<KeepTogether>true</KeepTogether>
<Paragraphs>
<Paragraph>
<TextRuns>
<TextRun>
<Value>=Fields!blob_kb.Value</Value>
<Style></Style>
<FontFamily>Segoe UI</FontFamily>
<FontSize>12pt</FontSize>
<Color>#595959</Color>
</Style>
</TextRun>
</TextRuns>
<Style /></Style>
</Paragraph>
</Paragraphs>
<rd:DefaultName>blob_kb</rd:DefaultName>
<Style></Style>
<Border>
<Color>LightGrey</Color>
<Style></Style>Solid</Style>
</Border>
<BackgroundColor>#f2f2f2</BackgroundColor>
<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 />
</TablixMembers>
</TablixColumnHierarchy>
<TablixRowHierarchy>
<TablixMembers>
<TablixMember>
<KeepWithGroup>After</KeepWithGroup>
<RepeatOnNewPage>true</RepeatOnNewPage>
</TablixMember>
<TablixMember>
<KeepWithGroup>After</KeepWithGroup>
<RepeatOnNewPage>true</RepeatOnNewPage>
<KeepTogether>true</KeepTogether>
</TablixMember>
<TablixMember>
<Group Name="Details8" />
</TablixMember>
</TablixMembers>
</TablixRowHierarchy>
<RepeatColumnHeaders>true</RepeatColumnHeaders>
<RepeatRowHeaders>true</RepeatRowHeaders>
<FixedColumnHeaders>true</FixedColumnHeaders>
<FixedRowHeaders>true</FixedRowHeaders>
<DataSetName>DWLargeTables</DataSetName>
<Top>157.49907mm</Top>
<Left>247.61927mm</Left>
<Height>31.03281mm</Height>
<Width>164.57082mm</Width>
<ZIndex>11</ZIndex>
<Style></Style>
<Border>
<Style></Style>None</Style>
</Border>
</Style>
</Tablix>
</ReportItems>
<Height>208.51027mm</Height>
<Style /></Style>
</Script></Body>
<Width>514.80973mm</Width>
<Page>
<PageHeader>
<Height>36.66408mm</Height>
<PrintOnFirstPage>true</PrintOnFirstPage>
<PrintOnLastPage>true</PrintOnLastPage>
<ReportItems>
<Image Name="Image5">
<Source>Embedded</Source>
<Value>checktrpl_blk_96grey</Value>
<Sizing>FitProportional</Sizing>
<Top>16.98978mm</Top>
<Left>15.70556mm</Left>
<Height>15mm</Height>
<Width>15mm</Width>
<Style></Style>
<Border>
<Style></Style>None</Style>
</Border>
</Style>
</Image>
<Textbox Name="Textbox17">
<CanGrow>true</CanGrow>
<KeepTogether>true</KeepTogether>
<Paragraphs>
<Paragraph>
<TextRuns>
<TextRun>
<Value>Operations Manager Health Check report - Database State</Value>
<Style></Style>
<FontFamily>Segoe UI</FontFamily>
<FontSize>18pt</FontSize>
<Color>White</Color>
</Style>
</TextRun>
</TextRuns>
<Style /></Style>
</Paragraph>
</Paragraphs>
<rd:DefaultName>Textbox17</rd:DefaultName>
<Top>0mm</Top>
<Left>15.35278mm</Left>
<Height>13.02103mm</Height>
<Width>291.13939mm</Width>
<ZIndex>1</ZIndex>
<Style></Style>
<Border>
<Style></Style>None</Style>
</Border>
<BackgroundColor>#41424e</BackgroundColor>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
</Textbox>
<Textbox Name="Textbox33">
<CanGrow>true</CanGrow>
<KeepTogether>true</KeepTogether>
<Paragraphs>
<Paragraph>
<TextRuns>
<TextRun>
<Value>Report used for quick overview on SCOM Databases</Value>
<Style></Style>
<FontSize>14pt</FontSize>
<Color>#595959</Color>
</Style>
</TextRun>
</TextRuns>
<Style /></Style>
</Paragraph>
</Paragraphs>
<rd:DefaultName>Textbox33</rd:DefaultName>
<Top>16.98978mm</Top>
<Left>41.77242mm</Left>
<Height>15mm</Height>
<Width>243.54582mm</Width>
<ZIndex>2</ZIndex>
<Style></Style>
<Border>
<Style></Style>None</Style>
</Border>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
</Textbox>
<Textbox Name="Textbox18">
<CanGrow>true</CanGrow>
<KeepTogether>true</KeepTogether>
<Paragraphs>
<Paragraph>
<TextRuns>
<TextRun>
<Value>Created By Oskar Landman &amp; Pete Zerger</Value>
<Style></Style>
<FontFamily>Segoe UI</FontFamily>
<FontSize>14pt</FontSize>
<Color>White</Color>
</Style>
</TextRun>
</TextRuns>
<Style></Style>
<TextAlign>Center</TextAlign>
</Style>
</Paragraph>
</Paragraphs>
<rd:DefaultName>Textbox18</rd:DefaultName>
<Top>0mm</Top>
<Left>306.49217mm</Left>
<Height>13.02103mm</Height>
<Width>105.69792mm</Width>
<ZIndex>3</ZIndex>
<Style></Style>
<Border>
<Style></Style>None</Style>
</Border>
<BackgroundColor>#41424e</BackgroundColor>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
</Textbox>
</ReportItems>
<Style></Style>
<Border>
<Style></Style>None</Style>
</Border>
</Style>
</PageHeader>
<PageFooter>
<Height>11.78908mm</Height>
<PrintOnFirstPage>true</PrintOnFirstPage>
<PrintOnLastPage>true</PrintOnLastPage>
<ReportItems>
<Textbox Name="ExecutionTime">
<CanGrow>true</CanGrow>
<KeepTogether>true</KeepTogether>
<Paragraphs>
<Paragraph>
<TextRuns>
<TextRun>
<Value>=Globals!ExecutionTime</Value>
<Style></Style>
<FontFamily>Segoe UI</FontFamily>
<Color>#595959</Color>
</Style>
</TextRun>
</TextRuns>
<Style></Style>
<TextAlign>Right</TextAlign>
</Style>
</Paragraph>
</Paragraphs>
<rd:DefaultName>ExecutionTime</rd:DefaultName>
<Top>5.43908mm</Top>
<Left>35.37292mm</Left>
<Height>6.35mm</Height>
<Width>50.8mm</Width>
<Style></Style>
<Border>
<Style></Style>None</Style>
</Border>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
</Textbox>
<Textbox Name="ExecutionTime2">
<CanGrow>true</CanGrow>
<KeepTogether>true</KeepTogether>
<Paragraphs>
<Paragraph>
<TextRuns>
<TextRun>
<Value>Run Date:</Value>
<Style></Style>
<FontFamily>Segoe UI</FontFamily>
<Color>#595959</Color>
</Style>
</TextRun>
</TextRuns>
<Style></Style>
<TextAlign>Left</TextAlign>
</Style>
</Paragraph>
</Paragraphs>
<rd:DefaultName>ExecutionTime</rd:DefaultName>
<Top>5.43908mm</Top>
<Left>15.70556mm</Left>
<Height>6.35mm</Height>
<Width>19.31458mm</Width>
<ZIndex>1</ZIndex>
<Style></Style>
<Border>
<Style></Style>None</Style>
</Border>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
</Textbox>
<Textbox Name="ExecutionTime4">
<CanGrow>true</CanGrow>
<KeepTogether>true</KeepTogether>
<Paragraphs>
<Paragraph>
<TextRuns>
<TextRun>
<Value>Page Numer:</Value>
<Style></Style>
<FontFamily>Segoe UI</FontFamily>
<Color>#595959</Color>
</Style>
</TextRun>
</TextRuns>
<Style></Style>
<TextAlign>Right</TextAlign>
</Style>
</Paragraph>
</Paragraphs>
<rd:DefaultName>ExecutionTime</rd:DefaultName>
<Top>5.1745mm</Top>
<Left>362.97759mm</Left>
<Height>6.35mm</Height>
<Width>23.28333mm</Width>
<ZIndex>2</ZIndex>
<Style></Style>
<Border>
<Style></Style>None</Style>
</Border>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
</Textbox>
<Textbox Name="ExecutionTime3">
<CanGrow>true</CanGrow>
<KeepTogether>true</KeepTogether>
<Paragraphs>
<Paragraph>
<TextRuns>
<TextRun>
<Value>=Globals!PageNumber &amp; " of " &amp; Globals!TotalPages</Value>
<Style></Style>
<FontFamily>Segoe UI</FontFamily>
<Color>#595959</Color>
</Style>
</TextRun>
</TextRuns>
<Style></Style>
<TextAlign>Right</TextAlign>
</Style>
</Paragraph>
</Paragraphs>
<rd:DefaultName>ExecutionTime</rd:DefaultName>
<Top>5.1745mm</Top>
<Left>386.26092mm</Left>
<Height>6.35mm</Height>
<Width>25.92917mm</Width>
<ZIndex>3</ZIndex>
<Style></Style>
<Border>
<Style></Style>None</Style>
</Border>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
</Textbox>
</ReportItems>
<Style /></Style>
</PageFooter>
<PageHeight>8.26772in</PageHeight>
<PageWidth>15.65504in</PageWidth>
<LeftMargin>0in</LeftMargin>
<RightMargin>0in</RightMargin>
<TopMargin>0in</TopMargin>
<BottomMargin>0in</BottomMargin>
<Style /></Style>
</Page>
</ReportSection>
</ReportSections>
<EmbeddedImages>
<EmbeddedImage Name="checktrpl_blk_96grey">
<MIMEType>image/png</MIMEType>
<ImageData>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</ImageData>
</EmbeddedImage>
</EmbeddedImages>
<Language>en-US</Language>
<CodeModules>
<CodeModule>Microsoft.EnterpriseManagement.Reporting.Code, Version=6.0.0.0, Culture=neutral</CodeModule>
</CodeModules>
<ConsumeContainerWhitespace>true</ConsumeContainerWhitespace>
<rd:ReportUnitType>Inch</rd:ReportUnitType>
<rd:ReportID>ab518a51-343d-46c4-b1f8-4ec65faafd95</rd:ReportID>
</Report>