From a SQL Server 7.0 database, I call a SQL Server 2000
database remotely. I get the error message:
[DBNMPNTW]ConnectionOpen (CreateFile()).
[OLE/DB provider returned message: Client unable to
establish connection]
I've done this many times among SQL 7.0 servers. I
recently configured a remote pair involving 7.0 & 2000 the
same way as I have among the 7.0's. All have the same
domain, username, & pw. A remote stored procedure call
worked when the SQL 2000 server called the SQL 7.0, but
not in the other direction.
An example of calling a SQL 7.0 database (on TEST) from
SQL 2000:
INSERT INTO tbl_demographics
However, I also need to pull the id's in the other
direction, from the SQL 2000 server to an SQL 7.0 server,
so that data for only relevant people is transferred (back
to SQL 2000).
An example of calling a SQL 2000 server (on ATLAS) from a
SQL 7.0 server is:
INSERT INTO tbl_ids (person_id)
This error message above occurs when I used remote
procedure calls to remote servers. But much the same
message occurs when I use linked servers, except for the
[DBNMPNTW] part.
I would appreciate any suggestions.