MS SQL: Database + Windows Authentication + Username/Password? - Stack Overflow most recent 30 from stackoverflow.com2009-12-07T02:14:23Zhttp://stackoverflow.com/feeds/question/830929http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/830929/ms-sql-database-windows-authentication-username-password0MS SQL: Database + Windows Authentication + Username/Password?galets2009-05-06T18:11:53Z2009-05-06T22:49:08Z
<p>I have always thought that in order to connect to SQL server using windows authentication with explicitly specified creds, you must LogonUser, Impersonate, then connect.</p>
<p>It seems to me that <a href="http://blogs.msdn.com/spike/archive/2008/11/14/connectionstrings-mixing-usernames-and-windows-authentication-who-goes-first.aspx" rel="nofollow">this link</a> suggests that it's possible to connect to SQL server without all this hassle, simply by specifying "uid=...;pwd=..." in connection string. I tested this method just to be sure it doesn't work, and - lo and behold - it didn't. If that blog post wasn't on msdn.com, I would have just dismissed it as noob talk, but it is.</p>
<p>Does anyone have an idea what am I missing?</p>
<p><strong>EDIT1:</strong> Many respondents misunderstood what I was referring to. Here's a copy/paste of what I was talking about. It's <em>not</em> integrated SQL, nor it's an ASP.NET impersonation made by IIS:</p>
<pre><code>string sql4 = String.Format(
@"Data Source={0};Integrated Security=SSPI;uid=<uid>;pwd=<pid>", server);
// Database + Windows Authentication + Username/Password
</code></pre>
http://stackoverflow.com/questions/830929/ms-sql-database-windows-authentication-username-password/830941#8309411Answer by marc_s for MS SQL: Database + Windows Authentication + Username/Password?marc_s2009-05-06T18:16:14Z2009-05-06T18:21:50Z<p>It depends - if you connect from a command-line or Winforms app DIRECTLY to your SQL Server, you EITHER specify "Integrated Security=SSPI;" and then use your Windows credentials as logon credentials, OR you specify "user id=....;pwd=....." - but that's then a SQL logon - NOT your Windows logon.</p>
<p>You mention "impersonate and then connect" - that seems to indicate ASP.NET - that's a totally different story again. If you impersonate, then you're basically using your Windows credentials, e.g. the web server will "impersonate" you and log on as you (using your Windows credentials). In that case, again, no "uid=....;pwd=....." needs to be specified (if it is, it will be ignored).</p>
<p>As that link you mentioned clearly shows - if you can connect directly, and you specify "Integrated Security=SSPI;", then this takes precedence over any uid=...;pwd=.... which you might also specified and logs you in using your Windows credentials; those extra uid=...;pwd=.... pieces are ignored.</p>
<p>Marc</p>
http://stackoverflow.com/questions/830929/ms-sql-database-windows-authentication-username-password/830959#8309590Answer by Thirster42 for MS SQL: Database + Windows Authentication + Username/Password?Thirster422009-05-06T18:20:15Z2009-05-06T18:20:15Z<p>that's probably for sql server logins.</p>
http://stackoverflow.com/questions/830929/ms-sql-database-windows-authentication-username-password/831253#8312530Answer by BlackWasp for MS SQL: Database + Windows Authentication + Username/Password?BlackWasp2009-05-06T19:18:23Z2009-05-06T19:18:23Z<p>The article and point in question relates to SQL security, not integrated security. You can pass the credentials for a SQL user and log in in this manner if SQL authentication (mixed mode) is enabled. If the SQL server is set up to use integrated security only then this will not work. It will also not work to allow logging in using Windows logon credentials.</p>
http://stackoverflow.com/questions/830929/ms-sql-database-windows-authentication-username-password/832136#8321361Answer by John Saunders for MS SQL: Database + Windows Authentication + Username/Password?John Saunders2009-05-06T22:35:23Z2009-05-06T22:35:23Z<p>There are two distinct kinds of security with SQL Server. "Windows Authentication", and "SQL Server Authentication". When you see uid and pwd you're seeing the latter. The uid in this case is not a Windows principal - the OS knows nothing about it.</p>
<p>So the answer to your question is, <strong>no</strong>, you can't pass Windows user name and password in the connection string to log in to SQL Server.</p>
http://stackoverflow.com/questions/830929/ms-sql-database-windows-authentication-username-password/832189#8321890Answer by Cyberherbalist for MS SQL: Database + Windows Authentication + Username/Password?Cyberherbalist2009-05-06T22:49:08Z2009-05-06T22:49:08Z<p>In our shop, we routinely use connection strings like you describe. No problemo. But your sql server database must be set up to use sql security, not windows authentication.</p>
<p>A sample connection string (from web.config) in our app looks like:</p>
<pre><code><connectionStrings>
<add name="ConfigurationData" connectionString="server=DevServer;
database=travel_expense_management_dv;uid=userid;pwd=password!;"
providerName="System.Data.SqlClient" />
</connectionStrings>
</code></pre>
<p>On the other hand, the DBA guru for our shop set me up a personal database on the main server that had integrated security with my Windows logon. I didn't need uid and pwd because it took my authentication info from context.</p>