Forum Discussion
Power BI Report Server May 2021 Released!
What does this mean? "ConfigurationInfo table of the catalog for your Reportserver" I have no idea what this is talking about. But it sounds interesting.
- Petebro5 years ago
Microsoft Employee
It is a table in your reportserver catalog that stores some settings. Below is a sample script to enable or disable the setting. Always remember to backup your catalog regularly if changing settings.
/****** Script to ENABLE Portal preview ******/
UPDATE [ReportServer].[dbo].[ConfigurationInfo]
SET [dbo].[ConfigurationInfo].Value = 'true'
Where [dbo].[ConfigurationInfo].Name = 'UsePortalV2'
/****** Script to DISABLE Portal preview ******/
UPDATE [ReportServer].[dbo].[ConfigurationInfo]
SET [dbo].[ConfigurationInfo].Value = 'false'
Where [dbo].[ConfigurationInfo].Name = 'UsePortalV2'
- pabeader5 years ago
Post Patron
I made the change but don't see any noticable difference.