Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I need to be able to connect to a SQL Server from Excel using a Username/Password. I have specified:

'Declare variables'
    Set objMyConn = New ADODB.Connection
    Set objMyRecordset = New ADODB.Recordset
    Dim strSQL As String

'Open Connection'
    objMyConn.ConnectionString = "Driver=SQL Server;Server=SERVER\SERVER;Database=we_ci_db; Uid = genericReadWrite; Pwd=XYZ;"
    objMyConn.Open

'Set and Excecute SQL Command'
    strSQL = "select TOP 1 * from tblUsers WHERE alias='" & "username" & "'"

    'Debug.Print strSQL
'Open Recordset'
    Set objMyRecordset.ActiveConnection = objMyConn
    objMyRecordset.Open strSQL

'Copy Data to Excel'
    Sheets("Sheet1").Range("A4").CopyFromRecordset (objMyRecordset)

The code copies some basic details to a 'system' tab, updates some flags "UserID, SystemAccess" etc, before removing the password hash for security.

Now I thought it had been working fine up to now, but it had apparently been falling back to Windows Authentication (My team and I are explicitly listed as users on the SQL Server.

But when I get someone who isn't explicitly added as a NT Login to the server, it won't work. Note the server IS set up for mixed authentication.

In Excel, we get -2147467259 - [Microsoft][ODBC SQL Server Driver][SQL Server]Cannot open database "we_ci_db" requested by the login. The login failed.

The Server Logs say: Login failed for user 'DOMAIN\user'. Reason: Failed to open the explicitly specified database. [CLIENT: xx.xx.xx.xx]

I would appreciate any assistance in getting this to work as it's starting to bug me. I don't know if it's a SQL Server issue or a connection string issue, though the connection string at least partially works, even if the server is ignoring the username.

share|improve this question
Has user, who is trying to login, got privilege to use "we_ci_db" database? – cadaver Sep 11 '12 at 12:42
genericReadWrite has access as an SQL User (via User Mapping), the person is not listed as an NT User on the server/db. – aSystemOverload Sep 11 '12 at 13:39

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.