Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

Reply
khassan
New Member

Power BI Report Server "PUBLISH" Option - DISABLE / Remove

With Power BI Report Server Jan-2023 release, is it possibel to "DISABLE" or "REMOVE" Publish option?

2 REPLIES 2
mseltene
New Member

To disable the Power BI publish features, you can use the following code: 

 

select * from [reportserver].[dbo].[configurationinfo] where name like '%power%'
go
update [reportserver].[dbo].[configurationinfo] set value = 'False' where name = 'enablepowerbireportexportdata'
update [reportserver].[dbo].[configurationinfo] set value = 'False' where name = 'enablepowerbireportexportunderlyingdata'
update [reportserver].[dbo].[configurationinfo] set value = 'False' where name = 'enablepowerbireportmigrate'
go
SgtSmurf87
New Member

To disable the Publish feature in SQL Server Reporting Services (SSRS) 2019,

  1. Connect to the Reporting Services instance in SQL Server Management Studio (SSMS).
  2. Right-click the instance name, select Properties.
  3. In the "Select a page" pane, select Advanced.
  4. Under User-Defined, set these items to False
    1. EnablePowerBIReportExportData
    2. EnablePowerBIReportMigrate

I did not have to restart Reporting Services for these changes to take effect.

 

SSRS 2019 Disable PowerBI Publish.png

Helpful resources

Announcements
LearnSurvey

Fabric certifications survey

Certification feedback opportunity for the community.

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.