I have written a package that accesses a shared windows directory and imports a text file from it to Sql Server. When I run this package manually, it works fine. However, when I schedule it to run as a job, it fails noting that the file on the shared directory is not accessible. It turns out that when I run the job manually, I'm running it under a different user id which has read/write access permission to the shared drive. However, when I run it via the job scheduler, I'm running it under a different user id which has no access to the shared drive. How can I change the job scheduler to use the correct user id - the one that I'm running the package under manually? Your help is appreciated. Thanks