How to delete subscriptions in PowerBI RS

Bilal H. Bhatt 136 Reputation points
2025-07-15T06:59:58.66+00:00

Hello,

I have a user which has lot of subscription in PowerBI Report server. I want to delete all the subscriptions associate with this user.

Please let me know how can i do it?

Thanks

SQL Server Reporting Services
SQL Server Reporting Services
A SQL Server technology that supports the creation, management, and delivery of both traditional, paper-oriented reports and interactive, web-based reports.
0 comments No comments
{count} votes

1 answer

Sort by: Most helpful
  1. Dinesh Yadlapalli 0 Reputation points Microsoft External Staff Moderator
    2025-11-24T13:29:48.37+00:00

    Hi @Bilal H. Bhatt,

    Thank you for reaching out to the Microsoft Q & A Forum.

    Please try below steps to Delete Subscriptions for a User.

    1. Open SQL Server Management Studio (SSMS). Connect to the SQL instance hosting your PBIRS databases. Locate the ReportServer database (not ReportServerTempDB).
    2. Subscriptions are stored in the Subscriptions table. Each subscription has an OwnerID that links to the user in the Users table.

    Run below query to find all subscriptions for the user.

    USE ReportServer;

    SELECT s.SubscriptionID, s.Path, u.UserName

    FROM Subscriptions s

    INNER JOIN Users u ON s.OwnerID = u.UserID

    WHERE u.UserName = 'DOMAIN\UserName';

    Replace DOMAIN\UserName with the actual username.

    1. Once you confirm the list, delete them with below query.

    DELETE s

    FROM Subscriptions s

    INNER JOIN Users u ON s.OwnerID = u.UserID

    WHERE u.UserName = 'DOMAIN\UserName';

    Note: Always take a backup of the ReportServer database before running DELETE operations.

    1. For testing, Run the SELECT query again to ensure no subscriptions remain for that user.

    I hope this information helps. Please do let us know if you have any further queries.

     

    Regards,

    Dinesh

    0 comments No comments

Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.