So, I have an older report that has many subscriptions and each subscription has custom parameters defined. We have to replace this report with a new version and this new version of the report has a different name (cannot just overwrite it).I know the exact ItemID of both the old and new report (from Catalog table). It appears that ItemID from Catalog table maps to Report_OID in the Subscriptions table.Is it ok to update the Report_OID within the ReportServer.dbo.Subscriptions table to point at a new ItemID.For example, I would update with the following query:declare @Old_Report_OID uniqueidentifier = 'old value'declare @New_Report_OID uniqueidentifier = 'new value'update sset s.Report_OID = @New_Report_OIDfrom reportserver.dbo.Subscriptions swhere s.Report_OID = @Old_ReportOIDAm I making the correct assumption to batch correct the Subscriptions table? Thanks in advance.Jamesp.s. Yes, I have backups. YEs, I will backup the subscriptions table before updating.
↧