How can I use SQLCMD with Windows Authentication (-E,) but without elevated permissions

ぐ巨炮叔叔 提交于 2019-12-13 08:36:35

问题


I'm going to create a script to execute numerous SQL files. I've chose to use SQLCMD instead of ADODB because it provides logging information quickly, and we're executing T-SQL. I'm testing out SQLCMD.exe before putting it into the script.

Connecting to the database using SQLCMD.exe, I utilize -E for Windows Authentication. This means that I need to use my network account, which does not have elevated access on any given machine. However, SQLCMD.exe requires elevated access in order to execute a query, otherwise I receive the following error:

Sqlcmd: Error: Error occurred while opening or operating on file (Reason: Access is denied).

After running the following command:

sqlcmd.exe -S <SQLSERVER,PORT> -d <DATABASE> -i scriptfile.sql -o scriptfile.log -E

How can I utilize SQLCMD.exe with elevated local permissions (Administrator) but use Windows Authentication to connect to the server (using a non-Administrator account)? I'd prefer not to change any permissions of SQLCMD.exe, as there may be multiple people that use this script that I'm not keen on informing them of this prior instruction.


回答1:


What path are you running the command from when you test it? Does the non-administrator running the command have access to read from scriptfile.sql and access to write to scriptfile.log? Most commands generally default to the current working directory.



来源:https://stackoverflow.com/questions/33305856/how-can-i-use-sqlcmd-with-windows-authentication-e-but-without-elevated-perm

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!