Skip to content

Commit

Permalink
#336 modified column name to possibly corrupt
Browse files Browse the repository at this point in the history
  • Loading branch information
PiJoCoder committed Apr 24, 2024
1 parent 38226df commit 04f9bd7
Show file tree
Hide file tree
Showing 5 changed files with 24 additions and 30 deletions.
23 changes: 10 additions & 13 deletions NexusReports/Missing_MSIs_or_MSPs_C.rdl
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<CommandText>SELECT
ProductName,
ExpectedInstallerCacheFile,
FileIsPresentInCacheButLikelyCorrupt,
FileIsPresentInCacheButPossiblyCorrupt,
ProductVersion,
PackageName
FROM dbo.tbl_setup_missing_msi_msp_packages</CommandText>
Expand All @@ -31,8 +31,8 @@ FROM dbo.tbl_setup_missing_msi_msp_packages</CommandText>
<DataField>ProductName</DataField>
<rd:TypeName>System.String</rd:TypeName>
</Field>
<Field Name="FileIsPresentInCacheButLikelyCorrupt">
<DataField>FileIsPresentInCacheButLikelyCorrupt</DataField>
<Field Name="FileIsPresentInCacheButPossiblyCorrupt">
<DataField>FileIsPresentInCacheButPossiblyCorrupt</DataField>
<rd:TypeName>System.String</rd:TypeName>
</Field>
<Field Name="PackageName">
Expand Down Expand Up @@ -200,7 +200,7 @@ FROM dbo.tbl_setup_missing_msi_msp_packages</CommandText>
<Paragraph>
<TextRuns>
<TextRun>
<Value>File Is Present In Cache But Likely Corrupt</Value>
<Value>File is in Cache But Possibly Corrupt</Value>
<Style>
<FontFamily />
<FontSize>11pt</FontSize>
Expand Down Expand Up @@ -355,7 +355,6 @@ FROM dbo.tbl_setup_missing_msi_msp_packages</CommandText>
<PaddingBottom>2pt</PaddingBottom>
</Style>
</Textbox>
<rd:Selected>true</rd:Selected>
</CellContents>
</TablixCell>
<TablixCell>
Expand Down Expand Up @@ -391,19 +390,18 @@ FROM dbo.tbl_setup_missing_msi_msp_packages</CommandText>
<PaddingBottom>2pt</PaddingBottom>
</Style>
</Textbox>
<rd:Selected>true</rd:Selected>
</CellContents>
</TablixCell>
<TablixCell>
<CellContents>
<Textbox Name="FileIsPresentInCacheButLikelyCorrupt">
<Textbox Name="FileIsPresentInCacheButPossiblyCorrupt">
<CanGrow>true</CanGrow>
<KeepTogether>true</KeepTogether>
<Paragraphs>
<Paragraph>
<TextRuns>
<TextRun>
<Value>=Fields!FileIsPresentInCacheButLikelyCorrupt.Value</Value>
<Value>=Fields!FileIsPresentInCacheButPossiblyCorrupt.Value</Value>
<Style>
<FontFamily />
<Color>#333333</Color>
Expand All @@ -413,7 +411,7 @@ FROM dbo.tbl_setup_missing_msi_msp_packages</CommandText>
<Style />
</Paragraph>
</Paragraphs>
<rd:DefaultName>FileIsPresentInCacheButLikelyCorrupt</rd:DefaultName>
<rd:DefaultName>FileIsPresentInCacheButPossiblyCorrupt</rd:DefaultName>
<Style>
<Border>
<Style>None</Style>
Expand All @@ -427,7 +425,6 @@ FROM dbo.tbl_setup_missing_msi_msp_packages</CommandText>
<PaddingBottom>2pt</PaddingBottom>
</Style>
</Textbox>
<rd:Selected>true</rd:Selected>
</CellContents>
</TablixCell>
<TablixCell>
Expand Down Expand Up @@ -464,7 +461,6 @@ FROM dbo.tbl_setup_missing_msi_msp_packages</CommandText>
<PaddingBottom>2pt</PaddingBottom>
</Style>
</Textbox>
<rd:Selected>true</rd:Selected>
</CellContents>
</TablixCell>
<TablixCell>
Expand Down Expand Up @@ -501,7 +497,6 @@ FROM dbo.tbl_setup_missing_msi_msp_packages</CommandText>
<PaddingBottom>2pt</PaddingBottom>
</Style>
</Textbox>
<rd:Selected>true</rd:Selected>
</CellContents>
</TablixCell>
</TablixCells>
Expand Down Expand Up @@ -537,10 +532,12 @@ FROM dbo.tbl_setup_missing_msi_msp_packages</CommandText>
</TablixMember>
</TablixMembers>
</TablixRowHierarchy>
<FixedColumnHeaders>true</FixedColumnHeaders>
<KeepTogether>true</KeepTogether>
<DataSetName>DataSet1</DataSetName>
<Top>0.73208in</Top>
<Height>0.73208in</Height>
<Width>13.77084in</Width>
<Width>13.77083in</Width>
<ZIndex>1</ZIndex>
<Style />
</Tablix>
Expand Down
2 changes: 1 addition & 1 deletion RowsetImportEngine/TextRowsets.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4353,7 +4353,7 @@
<KnownColumns>
<Column name="ProductName" type="RowsetImportEngine.NVarCharColumn" length="65" />
<Column name="ExpectedInstallerCacheFile" type="RowsetImportEngine.NVarCharColumn" length="52" />
<Column name="FileIsPresentInCacheButLikelyCorrupt" type="RowsetImportEngine.NVarCharColumn" length="52" />
<Column name="FileIsPresentInCacheButPossiblyCorrupt" type="RowsetImportEngine.NVarCharColumn" length="52" />
<Column name="ProductVersion" type="RowsetImportEngine.VarCharColumn" length="14" />
<Column name="PackageName" type="RowsetImportEngine.NVarCharColumn" length="32" />
</KnownColumns>
Expand Down
2 changes: 1 addition & 1 deletion sqlnexus/PerfStatsAnalysis.sql
Original file line number Diff line number Diff line change
Expand Up @@ -7163,7 +7163,7 @@ BEGIN

DECLARE @InstCacheFiles VARCHAR(8000), @InstCacheCorruptFiles VARCHAR(8000)
SELECT @InstCacheFiles = COALESCE(@InstCacheFiles + CHAR(13) + CHAR(10) , '') + ISNULL([ExpectedInstallerCacheFile], ''),
@InstCacheCorruptFiles = COALESCE(@InstCacheCorruptFiles + CHAR(13) + CHAR(10) , '') + ISNULL([FileIsPresentInCacheButLikelyCorrupt], '')
@InstCacheCorruptFiles = COALESCE(@InstCacheCorruptFiles + CHAR(13) + CHAR(10) , '') + ISNULL([FileIsPresentInCacheButPossiblyCorrupt], '')
FROM dbo.tbl_setup_missing_msi_msp_packages


Expand Down
25 changes: 11 additions & 14 deletions sqlnexus/Reports/Missing_MSIs_or_MSPs_C.rdlC
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<DataSource Name="DataSource_Private">
<ConnectionProperties>
<DataProvider>SQL</DataProvider>
<ConnectString>Data Source=.;Initial Catalog=sqlnexus</ConnectString>
<ConnectString>Data Source=.;Initial Catalog=sqlnexus_many_missing_msis</ConnectString>
<IntegratedSecurity>true</IntegratedSecurity>
</ConnectionProperties>
<rd:SecurityType>Integrated</rd:SecurityType>
Expand All @@ -20,7 +20,7 @@
<CommandText>SELECT
ProductName,
ExpectedInstallerCacheFile,
FileIsPresentInCacheButLikelyCorrupt,
FileIsPresentInCacheButPossiblyCorrupt,
ProductVersion,
PackageName
FROM dbo.tbl_setup_missing_msi_msp_packages</CommandText>
Expand All @@ -31,8 +31,8 @@ FROM dbo.tbl_setup_missing_msi_msp_packages</CommandText>
<DataField>ProductName</DataField>
<rd:TypeName>System.String</rd:TypeName>
</Field>
<Field Name="FileIsPresentInCacheButLikelyCorrupt">
<DataField>FileIsPresentInCacheButLikelyCorrupt</DataField>
<Field Name="FileIsPresentInCacheButPossiblyCorrupt">
<DataField>FileIsPresentInCacheButPossiblyCorrupt</DataField>
<rd:TypeName>System.String</rd:TypeName>
</Field>
<Field Name="PackageName">
Expand Down Expand Up @@ -200,7 +200,7 @@ FROM dbo.tbl_setup_missing_msi_msp_packages</CommandText>
<Paragraph>
<TextRuns>
<TextRun>
<Value>File Is Present In Cache But Likely Corrupt</Value>
<Value>File is in Cache But Possibly Corrupt</Value>
<Style>
<FontFamily />
<FontSize>11pt</FontSize>
Expand Down Expand Up @@ -355,7 +355,6 @@ FROM dbo.tbl_setup_missing_msi_msp_packages</CommandText>
<PaddingBottom>2pt</PaddingBottom>
</Style>
</Textbox>
<rd:Selected>true</rd:Selected>
</CellContents>
</TablixCell>
<TablixCell>
Expand Down Expand Up @@ -391,19 +390,18 @@ FROM dbo.tbl_setup_missing_msi_msp_packages</CommandText>
<PaddingBottom>2pt</PaddingBottom>
</Style>
</Textbox>
<rd:Selected>true</rd:Selected>
</CellContents>
</TablixCell>
<TablixCell>
<CellContents>
<Textbox Name="FileIsPresentInCacheButLikelyCorrupt">
<Textbox Name="FileIsPresentInCacheButPossiblyCorrupt">
<CanGrow>true</CanGrow>
<KeepTogether>true</KeepTogether>
<Paragraphs>
<Paragraph>
<TextRuns>
<TextRun>
<Value>=Fields!FileIsPresentInCacheButLikelyCorrupt.Value</Value>
<Value>=Fields!FileIsPresentInCacheButPossiblyCorrupt.Value</Value>
<Style>
<FontFamily />
<Color>#333333</Color>
Expand All @@ -413,7 +411,7 @@ FROM dbo.tbl_setup_missing_msi_msp_packages</CommandText>
<Style />
</Paragraph>
</Paragraphs>
<rd:DefaultName>FileIsPresentInCacheButLikelyCorrupt</rd:DefaultName>
<rd:DefaultName>FileIsPresentInCacheButPossiblyCorrupt</rd:DefaultName>
<Style>
<Border>
<Style>None</Style>
Expand All @@ -427,7 +425,6 @@ FROM dbo.tbl_setup_missing_msi_msp_packages</CommandText>
<PaddingBottom>2pt</PaddingBottom>
</Style>
</Textbox>
<rd:Selected>true</rd:Selected>
</CellContents>
</TablixCell>
<TablixCell>
Expand Down Expand Up @@ -464,7 +461,6 @@ FROM dbo.tbl_setup_missing_msi_msp_packages</CommandText>
<PaddingBottom>2pt</PaddingBottom>
</Style>
</Textbox>
<rd:Selected>true</rd:Selected>
</CellContents>
</TablixCell>
<TablixCell>
Expand Down Expand Up @@ -501,7 +497,6 @@ FROM dbo.tbl_setup_missing_msi_msp_packages</CommandText>
<PaddingBottom>2pt</PaddingBottom>
</Style>
</Textbox>
<rd:Selected>true</rd:Selected>
</CellContents>
</TablixCell>
</TablixCells>
Expand Down Expand Up @@ -537,10 +532,12 @@ FROM dbo.tbl_setup_missing_msi_msp_packages</CommandText>
</TablixMember>
</TablixMembers>
</TablixRowHierarchy>
<FixedColumnHeaders>true</FixedColumnHeaders>
<KeepTogether>true</KeepTogether>
<DataSetName>DataSet1</DataSetName>
<Top>0.73208in</Top>
<Height>0.73208in</Height>
<Width>13.77084in</Width>
<Width>13.77083in</Width>
<ZIndex>1</ZIndex>
<Style />
</Tablix>
Expand Down
2 changes: 1 addition & 1 deletion sqlnexus/TextRowsets.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4353,7 +4353,7 @@
<KnownColumns>
<Column name="ProductName" type="RowsetImportEngine.NVarCharColumn" length="65" />
<Column name="ExpectedInstallerCacheFile" type="RowsetImportEngine.NVarCharColumn" length="52" />
<Column name="FileIsPresentInCacheButLikelyCorrupt" type="RowsetImportEngine.NVarCharColumn" length="52" />
<Column name="FileIsPresentInCacheButPossiblyCorrupt" type="RowsetImportEngine.NVarCharColumn" length="52" />
<Column name="ProductVersion" type="RowsetImportEngine.VarCharColumn" length="14" />
<Column name="PackageName" type="RowsetImportEngine.NVarCharColumn" length="32" />
</KnownColumns>
Expand Down

0 comments on commit 04f9bd7

Please sign in to comment.