vote up 0 vote down star

Is there a way to have Excel connect to Sql Server using the current user's network windows authentication (trusted connection/integrated security)? I don't want to rely on a sql login or have a uid/password in my code.

flag

67% accept rate

2 Answers

vote up 1 vote down
Driver={SQL Native Client};server=servernamehere;database=dbnamehere;Trusted_Connection=yes;

http://www.sqlstrings.com/SQL-Server-connection-strings.htm

http://www.connectionstrings.com/sql-server

Try this one:

Provider=sqloledb;Data Source=myServerName;Initial Catalog=myDatabaseName;Integrated Security=SSPI
link|flag
Tried that already. Doesn't work from VBA. – notnot Oct 15 at 19:19
2  
What Data Access component are you using? – Cade Roux Oct 15 at 20:34
ADODB.Connection – notnot Oct 19 at 14:57
vote up 1 vote down

See: http://www.connectionstrings.com/

Especially http://www.connectionstrings.com/sql-server-2005, for example:

Data Source=myServerAddress;Initial Catalog=myDataBase;Integrated Security=SSPI;

or any other suitable connection string you find there.

link|flag
Doesn't work for VBA – notnot Oct 15 at 19:16

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.