Can anyone help me?
I have a service set up to run overnight. This service is an executable, compiled from a C# source, which is attempting to call an SSIS package.
This package is attempting to read in data from three different databases on other servers and import that data into a third database held locally. These databases require SQL Server authentication to access.
When I run the SSIS package directly, it works fine. But when I set it up to run from the service if fails to connect to the first database.
I get the following error message:
SSIS Package SSIS Error Code DTS_E_OLEDBERROR. An OLE DB error has occurred. Error code: 0x80004005.
An OLE DB record is available. Source: "Microsoft SQL Native Client" Hresult: 0x80004005 Description: "Login failed for user ''. The user is not associated with a trusted SQL Server connection."
I'm guessing it's some kind of permissions issue, but I've tried various things and nothing works. Does snyone out there have any suggestions?
I have a service set up to run overnight. This service is an executable, compiled from a C# source, which is attempting to call an SSIS package.
This package is attempting to read in data from three different databases on other servers and import that data into a third database held locally. These databases require SQL Server authentication to access.
When I run the SSIS package directly, it works fine. But when I set it up to run from the service if fails to connect to the first database.
I get the following error message:
SSIS Package SSIS Error Code DTS_E_OLEDBERROR. An OLE DB error has occurred. Error code: 0x80004005.
An OLE DB record is available. Source: "Microsoft SQL Native Client" Hresult: 0x80004005 Description: "Login failed for user ''. The user is not associated with a trusted SQL Server connection."
I'm guessing it's some kind of permissions issue, but I've tried various things and nothing works. Does snyone out there have any suggestions?