|
|
|
SSC-Enthusiastic
      
Group: General Forum Members
Last Login: Tuesday, May 07, 2013 1:40 PM
Points: 111,
Visits: 280
|
|
An employee left and they are the owner of reports. Now the reports won't run. Is there anyway to change the report owner?
|
|
|
|
|
Forum Newbie
      
Group: General Forum Members
Last Login: Saturday, August 11, 2007 1:48 AM
Points: 4,
Visits: 1
|
|
I might be able to give you some advice if you can provide a better detail such as the error description.
How do you interact with the report is it thru the Report Manager, is there a job that actually execute the report, a snapshot?
All reports run in the context of a user, I figured the user account must have been disabled or removed from your active directory. If you still have access to the report than chances are you can update the data source and change the credential being use by the report but firstly verify if the account has access to the database or server to be access by the report.
|
|
|
|
|
Forum Newbie
      
Group: General Forum Members
Last Login: Friday, November 16, 2012 11:51 AM
Points: 2,
Visits: 17
|
|
| My Users are having the same problem. We have SSRS installed in SharePoint Integrated mode. All the reports were deployed by one User who left the company. When they disabled said User's account the reports stopped working. They re-enabled it as a temporary solution, but have yet to find a permanent solution. Are there best practices to deploying the reports with a system account so the reports are not owned by a specific User?
|
|
|
|
|
Forum Newbie
      
Group: General Forum Members
Last Login: Wednesday, May 15, 2013 8:59 AM
Points: 5,
Visits: 138
|
|
I use this; Run it against the reportserver db.
DECLARE @OldUserID uniqueidentifier DECLARE @NewUserID uniqueidentifier SELECT @OldUserID = UserID FROM dbo.Users WHERE UserName = '<NewUser/domain>' SELECT @NewUserID = UserID FROM dbo.Users WHERE UserName = '<OldUser/domain>' UPDATE dbo.Subscriptions SET OwnerID = @NewUserID WHERE OwnerID = @OldUserID and laststatus like 'Failure%'
** we also created a ReportSub/domain user account and we use that account in the NewUser spot mentioned above.
|
|
|
|