SSRS When uploading report owner name is wrong

Mike

I have SQL 2014 professional version 12.0.5000.0 with SSRS runing. eI have created a report in report builder 3.0 which works and runs find.

However when I go to create a subscription and run I get the user a1234 (as a example ) don't exist.

I looked there is no user with that name added to SSRS or in our domain.

my user name is ah1234 (as a example )

I looked in the subscription table and the owner is me ? However, the subscription is showing the owner as a1234?

I checked the report I uploaded it says the owner is a1234.

I'm thinking it might be a active directory issue but not sure.

Has anyone has see this before if so how can I fix the owner name of the subscription?

MandyShaw

I don't know how SSRS has corrupted the owner name but here is a trick (written on 2008 R2) to correct owner names (I use this when people leave & their Active Directory user id gets deleted leaving orphaned subs that will not run).

Note that it updates the Microsoft-supplied subscriptions table, you may not wish to do that.

First identify the SSRS owner id for the from-person & also that of the to-person (you may need to get the to-person to create a subscription first):

SELECT distinct [OwnerID], u.username 
  FROM [<ssrs-database>].[dbo].[Subscriptions] s 
  join [<ssrs-database>].[dbo].[Users] u on s.ownerid = u.userid 

Now make a safe copy of the subscriptions list, e.g.:

SELECT * into temp.subscriptionscpy 
  FROM [<ssrs-database>].[dbo].[Subscriptions] s 

Now make the change, e.g. (this one changes the owner of all relevant subs):

update [<ssrs-database>].[dbo].[Subscriptions] 
  set ownerid = 'DDD87598-8957-42C8-8DBC-A893E7174CB6'
  where ownerid = 'EBF0E483-69E6-4458-B171-BA28FFCCDF3F' 

Now check the owner is as you want it.

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

Uploading SSRS report causes datasource to require credentials

From Dev

Column grouping in ssrs report giving wrong results

From Dev

What is the purpose of uploading any file to the SSRS Report Server?

From Dev

How to include test case owner name in the testng report

From Dev

Adding values to a Report when there is no Data in query SSRS

From Dev

Tablix border inconsistent when zooming into ssrs report

From Dev

trigger SSRS report when finishing a SSIS job

From Dev

SSRS Report Works when the Parameter uses the "=" Operator but not "IN"

From Dev

From C# when calling SSRS report only main report shows data sub report giving error

From Dev

SSRS - Changing tab name when exporting to excel

From Dev

Getting a strange error when Try to save a SSRS report

From Dev

SSRS: "Index was out of range" in VS2010 but not when report is deployed

From Dev

CRM Report (SSRS) Body Disappears When Zooming, Using Toolbar In IE

From Dev

SSRS Uploaded report only shows xml when viewed

From Dev

Can an SSRS Report show different components when printed?

From Dev

How to run a procedure immediately when 'view report' is clicked in ssrs?

From Dev

SSRS-Datasource won't change when reupload report

From Dev

Error while uploading a report

From Dev

Calculating Median - Report Builder 3 - SSRS - "Median=0" - What is wrong with my code?

From Dev

Report Parameter validation in ssrs report

From Dev

Passing parameters to a report in SSRS but no report

From Dev

SSRS report - panels are multiplying in a report

From Dev

Kill process by name and owner?

From Dev

Delete SSRS Report

From Dev

String Split in SSRS Report

From Dev

Crystal Report to SSRS

From Java

SSRS Report Numerical Formatting

From Dev

SSRS Conditional Border Report

From Dev

SSRS Report - Specific Format

Related Related

  1. 1

    Uploading SSRS report causes datasource to require credentials

  2. 2

    Column grouping in ssrs report giving wrong results

  3. 3

    What is the purpose of uploading any file to the SSRS Report Server?

  4. 4

    How to include test case owner name in the testng report

  5. 5

    Adding values to a Report when there is no Data in query SSRS

  6. 6

    Tablix border inconsistent when zooming into ssrs report

  7. 7

    trigger SSRS report when finishing a SSIS job

  8. 8

    SSRS Report Works when the Parameter uses the "=" Operator but not "IN"

  9. 9

    From C# when calling SSRS report only main report shows data sub report giving error

  10. 10

    SSRS - Changing tab name when exporting to excel

  11. 11

    Getting a strange error when Try to save a SSRS report

  12. 12

    SSRS: "Index was out of range" in VS2010 but not when report is deployed

  13. 13

    CRM Report (SSRS) Body Disappears When Zooming, Using Toolbar In IE

  14. 14

    SSRS Uploaded report only shows xml when viewed

  15. 15

    Can an SSRS Report show different components when printed?

  16. 16

    How to run a procedure immediately when 'view report' is clicked in ssrs?

  17. 17

    SSRS-Datasource won't change when reupload report

  18. 18

    Error while uploading a report

  19. 19

    Calculating Median - Report Builder 3 - SSRS - "Median=0" - What is wrong with my code?

  20. 20

    Report Parameter validation in ssrs report

  21. 21

    Passing parameters to a report in SSRS but no report

  22. 22

    SSRS report - panels are multiplying in a report

  23. 23

    Kill process by name and owner?

  24. 24

    Delete SSRS Report

  25. 25

    String Split in SSRS Report

  26. 26

    Crystal Report to SSRS

  27. 27

    SSRS Report Numerical Formatting

  28. 28

    SSRS Conditional Border Report

  29. 29

    SSRS Report - Specific Format

HotTag

Archive