问题
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