Skip to Main Content

Español

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Conectar Oracle Apex con Sybase

mauricio coboApr 17 2019 — edited May 3 2019

Hola Chicos, favor su gentil ayuda, estoy tratando de conectar oracle apex con sybase..... estos son los pasos realziados

Ya he creado dblink a otras bases de oracle remotas. pero ahora tengo la necesidad de conectarme a una deSYBASE. Segui los pasos del video en mención y me esta dando un error:

LA IP de la BD sybase es la 192.168.0.102

y el Oracle apex esta en localhost

tengo las siguientes configuraciones y me da el siguiente error:::: /*DNS de sistema*/

/*Adaptive Server Enterprise*/ pmdb_new

/*initpmdb_new.ora*/

# HS init parameters

Hz_FDS_CONNECT_INFO = pmdb_new

HS_FDS_TRACE_LEVEL = OFF

__________________________________________

/*listener.ora*/

(SID_DESC =   (SID_NAME = pmdb_new

(ORACLE_HOME = C:\oraclexe\app\oracle\product\11.2.0\server)  

(PROGRAM = dg4odbc)   )

__________________________________________

/*tsnames.ora*/

pmdb_new =   (DESCRIPTION =   (ADDRESS = (PROTOCOL = TCP)(HOST = localhost)(PORT = 1521))   (CONNECT_DATA =   (SID = pmdb_new)   )   (HS = OK)   )

_________________________________

/*DBLINK*/ create database link "pmdb_new" connect to "sa" identified by "clave666"

using '(DESCRIPTION =  

(ADDRESS_LIST =

(ADDRESS = (PROTOCOL = TCP)(HOST = 192.168.0.102)(PORT = 1521))

  )   (CONNECT_DATA =  

(SID = pmdb_new)

  )  

(HS = OK)   )'

o de la siguiente manera   create database link pmdb_new connect to "sa" identified by "clave666" using 'pmdb_new'; /*CONSULTA*/ select * from tabla@pmdb_new /*ERROR*/ ORA-28545: error diagnosed by Net8 when connecting to an agent Unable to retrieve text of NETWORK/NCR message 12541 ORA-02063: preceding 2 lines from PMDB_NEW 

Gracias por cualquier ayuda que me puedas brindar

--

H. Mauricio Cobo Rojas

Comments
Post Details
Added on Apr 17 2019
2 comments
535 views