I am trying to populate the sql table using OpenRowSet function, source for data is a excel file . This code is executed from Windows NT service. Code executes fine till the time Windows Service started with Anonymous account but fails when system account is assigned in Log On tab.
As per documentation Microsoft Access Database Engine 2010 which bundles the Microsoft.ACE.OLEDB.12.0 is not intended to "To be used by a system service or server-side program where the code will run under a system account, or will deal with multiple users identities concurrently, or is highly reentrant and expects stateless behavior. Examples would include a program that is run from task scheduler when no user is logged in, or a program called from server-side web application such as ASP.NET, or a distributed component running under COM+ services."
I confirmed that it executes fine when database connection string contains the user id and password it works as expected. It fails when connection string contains Trusted_Connection=True and service executes under system account.
Is there way out so that i can run the service with "Trusted_Connection=True" in db connection string?
Thanks in Advance.