May 18, 2010 #1 perrymans IS-IT--Management Nov 27, 2001 1,340 US Is there a way to protect the password passed as part of an sp_addlogin command from a client to server using OpenClient? Thanks. Sean.
Is there a way to protect the password passed as part of an sp_addlogin command from a client to server using OpenClient? Thanks. Sean.
May 18, 2010 1 #2 dbalearner Technical User Aug 23, 2003 170 GB Try isql with -X option isql -U${USERNAME} -P${PASSWORD} -S${SERVER_NAME} -w1000 -X exec sp_addlogin <LOGIN_NAME>,<PASSWORD>,<DATABASE>, ... go -X specifies that, in the connection to the server, the application initiates the login with client-side password encryption HTH, Learner Upvote 0 Downvote
Try isql with -X option isql -U${USERNAME} -P${PASSWORD} -S${SERVER_NAME} -w1000 -X exec sp_addlogin <LOGIN_NAME>,<PASSWORD>,<DATABASE>, ... go -X specifies that, in the connection to the server, the application initiates the login with client-side password encryption HTH, Learner