No encuentra el servidor (SQL 7)

09/09/2004 - 02:58 por Boromir | Informe spam
Abusando de su amabilidad, que sera que cuando intento crear un ODBC
despues de elejir el servidor, en la siguiente ventana (autenticidad ya sea
por NT
o SQL) le doy siguiente y me da el error:

Connection Failed:
SQLState: '01000'
SQL Server Error:53
[Microsoft][ODBC SQL Server Driver][DBNETLIB]ConnectionOpen ((Connect())
Connection Failed:
SQLState: '08001'
SQL Server Error:17
[Microsoft][ODBC SQL Server Driver][DBNETLIB] SQL server does not exist or
access denied.

Con ayuda, logre crear una paqueña aplicacion en VB pero suicede lo mismo,
Dim Cn As New ADODB.Connection
Dim Rs As New ADODB.Recordset
Dim StrCnn As String

StrCnn = "Provider=SQLOLEDB.1;Integrated Security=SSPI;Persist Security
Info=False;User ID=sa;password!09;Initial Catalog=Camionetas;Data
Source=vainilla"

Cn.Open StrCnn

Rs.Source = "Select * from CatVendedores"

Do While Not Rs.EOF
Msgbox Rs!campo
Rs.MoveNext
Loop
End If

Set Rs = Nothing
cn.close
Set Cn = Nothing

inclusive intente usar el ADODC con oledb para SQL pero en ese caso ni
siquiera me detecto el servidor .

Cualquier orientacion...
GRACIAS !
 

Leer las respuestas

#1 Miguel Egea
13/09/2004 - 15:16 | Informe spam
intenta usar tcp-ip en lugar de name-pipes, puedes usarlo añadiendo esto
Network LibraryÛMSSOCN, a tu cadena de conexión.
Puedes ver más detalles en
http://support.microsoft.com/defaul...-US;238949

Saludos

Miguel Egea
Microsoft SQL-SERVER MVP
Brigada Anti-Cursores
http://www.portalsql.com

(Quita el online si me tienes que mandar un correo)
"Boromir" escribió en el mensaje
news:
Abusando de su amabilidad, que sera que cuando intento crear un ODBC
despues de elejir el servidor, en la siguiente ventana (autenticidad ya


sea
por NT
o SQL) le doy siguiente y me da el error:

Connection Failed:
SQLState: '01000'
SQL Server Error:53
[Microsoft][ODBC SQL Server Driver][DBNETLIB]ConnectionOpen ((Connect())
Connection Failed:
SQLState: '08001'
SQL Server Error:17
[Microsoft][ODBC SQL Server Driver][DBNETLIB] SQL server does not exist or
access denied.

Con ayuda, logre crear una paqueña aplicacion en VB pero suicede lo mismo,
Dim Cn As New ADODB.Connection
Dim Rs As New ADODB.Recordset
Dim StrCnn As String

StrCnn = "Provider=SQLOLEDB.1;Integrated Security=SSPI;Persist Security
Info=False;User ID=sa;password!09;Initial Catalog=Camionetas;Data
Source=vainilla"

Cn.Open StrCnn

Rs.Source = "Select * from CatVendedores"

Do While Not Rs.EOF
Msgbox Rs!campo
Rs.MoveNext
Loop
End If

Set Rs = Nothing
cn.close
Set Cn = Nothing

inclusive intente usar el ADODC con oledb para SQL pero en ese caso ni
siquiera me detecto el servidor .

Cualquier orientacion...
GRACIAS !


Preguntas similares