Please start any new threads on our new
site at https://forums.sqlteam.com. We've got lots of great SQL Server
experts to answer whatever question you can come up with.
Author |
Topic |
KingCarlos
Yak Posting Veteran
74 Posts |
Posted - 2009-12-13 : 19:29:42
|
Connecting to a SQL Server DB from a local PC (non network PC)I need some assistance regarding SQL connection.I have a user who logs on to his local PC but the user is required to log on to a piece of software that connects to a SQL database which resides on a server.How is this done in SQL Server management studio?I am only familiar with setting up access for users that reside in a domain. |
|
tkizer
Almighty SQL Goddess
38200 Posts |
|
KingCarlos
Yak Posting Veteran
74 Posts |
Posted - 2009-12-13 : 19:44:37
|
So I would create a new login and give it the name PC-id\user-idand choose SQL Authenticaion and give the appropiate password? |
 |
|
tkizer
Almighty SQL Goddess
38200 Posts |
|
KingCarlos
Yak Posting Veteran
74 Posts |
Posted - 2009-12-14 : 01:13:29
|
<I>and then the user will connect via SQL authentication instead of Windows authentication.</I>Thanks but now I am stuck with the application, I am not sure how the user account will check for the SQL authentication account rather than the windows account authentication. |
 |
|
tkizer
Almighty SQL Goddess
38200 Posts |
Posted - 2009-12-14 : 11:08:58
|
Check with the developer of the application if they can change the connection string to use SQL authentication instead of integrated security. If the connection string is exposed like it is in .NET, then this may be simple. Not sure about the application security side though, so the developer will need to investigate.Tara KizerMicrosoft MVP for Windows Server System - SQL Serverhttp://weblogs.sqlteam.com/tarad/Subscribe to my blog"Let's begin with the premise that everything you've done up until this point is wrong." |
 |
|
KingCarlos
Yak Posting Veteran
74 Posts |
Posted - 2009-12-15 : 20:53:57
|
Thanks for the tips !! |
 |
|
|
|
|