After upgrading Information Centric Analytics (ICA) and running the nightly RiskFabric Processing job, the following error is captured in the SQL Server Agent history log and in the table dbo.Log_DataTransformation
in the RiskFabric
relational database:
LogGroupID=<ID>;LogID=<ID>;LogGroupDescription=Integration Wizard - spIW_RunImportRuleMappingStaging @i_nImportRuleMappingID = <ID>;ErrorDesc=Error Msg: Invalid object name '<table_name>'.
Version : 6.x
Component : RiskFabric Processing
A data source query's staging table has been deleted.
To resolve this error, the data source query's staging table must be re-created. To do this, follow this procedure:
RiskFabric
relational databaseUSE RiskFabric;
GO
SELECT s.LinkedServerLabel AS "DataSource",
q.DataSourceQueryName AS "DataSourceQuery"
FROM dbo.IW_ImportRuleMapping AS m
INNER JOIN dbo.IW_DataSourceQuery AS q
ON m.DataSourceQueryID = q.DataSourceQueryID
INNER JOIN dbo.LinkedServers AS s
ON q.LinkedServerID = s.LinkedServerID
WHERE m.ImportRuleMappingID = <ID-from-error>;
DataSource
and DataSourceQuery
valuesDataSource
value returned by the query on step 4DataSourceQuery
returned by the query on step 4 and select Edit Query