Forum Discussion
Petebro
Microsoft Employee
5 years agoPower BI Report Server May 2021 Released!
Today we are pleased to release the May 2021 update for Power BI Report Server. The May release comes with many fixes for issues posted here on the community forums. Microsoft Download Center lin...
Petebro
Microsoft Employee
5 years agoIt 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'
pabeader
Post Patron
5 years agoI made the change but don't see any noticable difference.