[Stackoverflow] [Progress OpenEdge ABL] What are the best practices for troubleshooting Heterogeneous ODBC connections?

Status
Not open for further replies.
P

Paul Stearns

Guest
I am trying to establish a heterogeneous ODBC connection from an Oracle 21c XE database to a Progress OpenEdge 11.7 database. I have installed a 32 bit ODBC driver on the Windows 2019 server where the 21c XE DB resides. I have set up an ODBC System DSN, tested it and it works.

I created a initTIMEDATA.ora file in the C:\app\Administrator\product\21c\homes\OraDB21Home1\hs\admin folder.

It contains;

Code:
HS_FDS_CONNECT_INFO = TimeData
HS_FDS_TRACE_LEVEL = 4
HS_FDS_TRACE_FILE_NAME = TimeData.trc

Where TimeData matches the ODBC System DSN name.

I modified the listener.ora adding;

Code:
  (SID_DESC=
     (SID_NAME=TimeData)
     (ORACLE_HOME=C:\app\Administrator\product\21c\dbhomeXE)
     (PROGRAM=C:\app\Administrator\product\21c\dbhomeXE\bin\dg4odbc)
     (ENVS = LD_LIBRARY_PATH=C:\Progressx86\OpenEdge\lib:C:\app\Administrator\product\21c\dbhomeXE\bin)
    )

I modified my tnsnames.ora file adding;

Code:
TIMEDATA=
  (DESCRIPTION=
   (ADDRESS=
     (PROTOCOL=TCP)
     (HOST=10.254.10.41)
     (PORT=4621)
   )
   (CONNECT_DATA=
     (SID=TimeData))
   (HS=OK))

I created a DBLink like;

Code:
CREATE PUBLIC DATABASE LINK time_data_link CONNECT TO "sqluser" IDENTIFIED BY "myPassword" USING 'TIMEDATA';

After restarting everything (DB, Listener...) the listener shows;

Code:
Service "TimeData" has 1 instance(s).
 Instance "TimeData", status UNKNOWN, has 1 handler(s) for this service...

When I try to run a query;

Code:
SELECT * FROM employee_view@time_data_link;

I get;

Code:
ORA-28545: error diagnosed by Net8 when connecting to an agent
Unable to retrieve text of NETWORK/NCR message 65535
ORA-02063: preceding 2 lines from TIME_DATA_LINK
28545. 0000 - "error diagnosed by Net8 when connecting to an agent"
*Cause:  An attempt to call an external procedure or to issue SQL
      to a non-Oracle system on a Heterogeneous Services database link
      failed at connection initialization. The error diagnosed
      by Net8 NCR software is reported separately.
*Action:  Refer to the Net8 NCRO error message. If this isn't clear,
      check connection administrative setup in tnsnames.ora
      and listener.ora for the service associated with the
      Heterogeneous Services database link being used, or with
      'extproc_connection_data' for an external procedure call.
Error at Line: 1 Column: 29

I see no errors in the listener.log, I cannot find TimeData.trc. In poking around the DB trace files I found a trace file related with multiple copies of;

Code:
HS connect: nscall returned status ffffffff (-1)
  ns main err code: 12569
  ns (2) err code: 0
  nt main err code: 0
  nt (2) err code: 0
  nt OS  err code: 0

*** 2022-04-03T17:01:07.758909-04:00 (XEPDB1(3))
HS: Unable to establish RPC connection to HS Agent...
HS: ... Agent SID = (DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=10.254.10.41)(PORT=4621))(CONNECT_DATA=(SID=TimeData))), NCR error = 65535 Unable to retrieve text of NETWORK/NCR message 65535

I have reached the end of my troubleshooting skills and hope someone else may be able to point me in the right direction.

Continue reading...
 
Status
Not open for further replies.
Top