When viewing a data source in the Information Centric Analytics (ICA) console under Admin > Integrations > Data Sources, the status displayed is:
This registered connection no longer exists.
Release : 6.5.x
Component : Integration Pack
The linked server for the data source in question has been removed in SQL. To determine which linked server is missing, run the following query (use the Server name from the Data Source list for the @Name variable):
DECLARE @Name varchar(255);
SET @Name = N'';
SELECT LinkedServerName
FROM RiskFabric.dbo.LinkedServers
WHERE LinkedServerName LIKE '%'+@Name+'%';
Connect to SQL Server using SQL Server Management Studio (SSMS). In SSMS, navigate to Databases > Server Objects > Linked Servers. The LinkedServerName
value returned by the preceding query will be missing from this list.
Restore the missing SQL linked server by editing the integration's connection settings. Alternatively, you can manually create a linked server in SQL Server. To do this: