SQL SERVER – FIX: Error – The Job Failed. Unable to Determine If The Owner Domain\User of Job Job_Name Has Server Access

SQL SERVER - FIX: Error - The Job Failed. Unable to Determine If The Owner Domain\User of Job Job_Name Has Server Access reunion I keep on breaking my lab environment and have learned many things from it. Here is one of the recent errors which I fixed. In this blog, we would learn how to fix error “The job failed. Unable to determine if the owner <Domain\User> of job <Job_Name> has server access.” While executing a SQL Agent job.

Here is the complete error message which I saw in the logs.

The job failed.  Unable to determine if the owner (SQLAuth\SQLSvc) of job MntPlan.RebuildIndex_UpdStats has server access (reason: Could not obtain information about Windows NT group/user ‘SQLAuth\SQLSvc’, error code 0x5. SQLSTATE 42000 (Error 15404))

As the error message stated, the Job Owner doesn’t have access on the instance. Actually, I deleted the user from the AD to reproduce the error. This means the user had access when the Maintenance Plan was created but not anymore.

WORKAROUND/SOLUTION

Since this was a maintenance plan, we can update job owner but I have seen an issue with this. It overwrites the setting when the maintenance plan is edited and saved. So, the right way to modify the owner of the maintenance plan by using T-SQL. (We are making it “sa”)
USE MSDB
GO
UPDATE sysssispackages
SET ownersid = SUSER_SID('sa')
WHERE NAME = 'Name Of Maint Plan'

After making the owner as ‘sa’ and saving it again, the job executed successfully. The matter of fact, I have seen quite a lot in the real world when I execute something as username SA, it usually take care of all the security issues.

Do you know any other solution to fix the error? Please share via the comment section.

Reference: Pinal Dave (https://blog.SQLAuthority.com)

SQL Error Messages, SQL Scripts, SQL Server, SQL Server Security
Previous Post
SQL SERVER – Unable to Remove Replication Publication – Could not Delete the Subscription at Subscriber ‘SubServer’ in Database ‘SubDB’
Next Post
SQL SERVER – FIX: Backup to URL Error: Operating System Error 50(The Request is Not Supported.)

Related Posts

3 Comments. Leave new

  • Ok, but what if I need the owner to be the user that is in the message (in your case, SQLAuth\SQLSvc)? Yesterday the job was executing fine, but today I got the error message. What happened with the user permissions? Is that something I have to set in AD? Apparently no one has changed anything with the user account. I don’t want to change the owner to sa.

    Reply
  • Ok, but what if I need the owner to be the user that is in the message (in your case, SQLAuth\SQLSvc)? Yesterday the job was executing fine, but today I got the error message. What happened with the user permissions? Is that something I have to set in AD? Apparently no one has changed anything with the user account.

    Reply
  • I am in the same boat . . . what if SQLAuth\SQLSvc is member of SQL Agent Operator Roles and is member of an AD Group (as opposed to a single login . . . how can we refresh permissions so job executes?

    Reply

Leave a Reply