In SQL Server 2005, can I specify only execute permissions to a SSIS package, but restrict access to all tables and other objects in a database? The SSIS package will be updating a few tables however.
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
If the package is to be run in the context of the user that is executing the package, it would be tough to update something you don’t have permissions for. If your package is run through the SQL Server Agent, it will run as the agent account, and if that has access to update the tables in question, the user without access (if given access to create and/or start jobs) – you should be able to do what you want.