A SQL Server technology that supports the creation, management, and delivery of both traditional, paper-oriented reports and interactive, web-based reports.
Hi @Rich Vieira ,
One way is to update your data source after you migrate the report:
USE [ReportServer]
GO
UPDATE [dbo].[DataSource]
SET [Link] = (SELECT TOP 1 [ItemID] FROM [dbo].[Catalog] where name = [dbo].[DataSource].[Name])
WHERE name is not null and link is null
See more: SSRS : Bulk Update Custom Data Source
If you want to use the shared datasource to overwrite the previous embedded datasource, please refer to: Bulk update of shared datasource for SSRS reports
Best Regards,
Joy
If the answer is the right solution, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.