I am trying to execute a job from SQL Server Agent however receiving the error:
The login is from an untrusted domain and cannot be used with Windows authentication.
The Sql server 2016 with Sql server Agent and SSIS where a credential account proxy
is linking to windows admin account
. The proxy is set SSIS package excecution
:
The job has only 1 step to run SSIS package. This package is developed/tested/deployed from VS 2016+Data tools.
Here is the step:
and the error:
Right click on the job to view History. Here is the error:
Executed as user: MACHINE_NAME\admin_user. Microsoft (R) SQL Server Execute Package Utility Version 13.0.1601.5 for 64-bit Copyright (C) 2016 Microsoft. All rights reserved. Started: 2:15:10 PM Failed to execute IS server package because of error 0x80131904. Server: xxx, Package path: \SSISDB\Practise 1\SSIS 1\Package.dtsx, Environment reference Id: NULL. Description: Login failed. The login is from an untrusted domain and cannot be used with Windows authentication. Source: .Net SqlClient Data Provider Started: 2:15:10 PM Finished: 2:15:10 PM Elapsed: 0.188 seconds. The package execution failed. The step failed.
run as
. – beewest