I have the following construct:
srv-mssql1
- Windows Server 2008
- Microsoft SQL Server
- With a local user: dbuserNT1 (it is added unders Logins as a DB user)
srv-iisweb1
- Windows Server 2012
- IIS
- ASP.Net / C# app running
I want to connect to the SQL Server with the user dbuserNT1 from srv-iisweb1 (through the ASP.Net app).
How do I have to build my connection string to achieve that?
Please note that dbuserNT1 is a local user on srv-mssql1
So I tought I'd need to use the user srv-mssql1\dbuserNT1. But that doesn't work.
Doesn't work trough ssms on my windows 7 machine, but from the srv-mssql1 also with ssms it works trough windows authentication.
When I try to connect from my Windows 7 machine, ssms throws Error: 18456
Thanks in advance