Ver Mensaje Individual
  #1 (permalink)  
Antiguo 30/04/2009, 10:11
Avatar de mazingerz
mazingerz
 
Fecha de Ingreso: febrero-2003
Ubicación: Sarasota FL
Mensajes: 147
Antigüedad: 22 años, 3 meses
Puntos: 0
DNS de sistema

Hola muchachos, tengo un problema, a ver si es posible me ayuden:

Si creo un DSN de Sistema con autentificacion de SQL Server

var sConnectionString = "DSN=myDsnSystem;Uid=sa;Pwd=lasuperclave;
oCnn.ConnectionString = sConnectionString
oCnn.Open();
Perfecto funciona bien.
Ahora bien si el mismo DNS de Sistema le damos autentificacion de Windows NT


var sConnectionString = "DSN=myDsnSystem";
oCnn.ConnectionString = sConnectionString
oCnn.Open();


Error Type:
Microsoft OLE DB Provider for ODBC Drivers (0x80040E4D)
[Microsoft][ODBC SQL Server Driver][SQL Server]Login failed for user 'FROJAS\IUSR_FROJAS'.


que falta para lograr la conexion, no puedo cambiar el acceso ya que hay otras applicaciones en ruintime.
Gracias

Saludos.