Showing posts with label windows. Show all posts
Showing posts with label windows. Show all posts

Tuesday, January 13, 2009

Access Remote SQL Server with SQL Management Studio and Windows Authentication

Hello, All!

I found an interesting way how to access sql server, when only windows user is granted access to it (and this user is in different domain).

http://www.galcho.com/Blog/CommentView.aspx?guid=20d0d23f-9f7d-46e8-a82c-971c1118996e



So the command is the following:

runas /netonly /user:domain\user SqlWb.exe
/netonly – is required switch. It means that the process should be runned locally under the current windows account, but when accessing remote side it uses the specified credentials.