Heterogeneous services

Hello !
Could someone provide me with instructions how to make link from Oracle 9.2.0.6(Rac-2 nodes) on Tru 64 to SqlServer on Win 2000?
THX

Thx Eric.
Now I am facin with another problem.
I have 8.1.0.7 db on Win2000, where also resides SQLserver.
I created system DSN(cmswebstorage) and i used that name for SID in tnsnames.ora ,listener.ora & initDSN.ora
I altered initDSNname.ora file in $ORACLE_HOME/hs/admin where i place next values :
# This is a sample agent init file that contains the HS parameters that are
# needed for an ODBC Agent.
# HS init parameters
HS_FDS_CONNECT_INFO = cmsWebStorage
HS_FDS_TRACE_LEVEL = off
I also altered $ORACLE_HOME/network/admin/tnsnames.ora & listener.ora files
Then I created DB link and tryied to make desc table_name@dblink and get
ERROR:
ORA-28509: unable to establish a connection to non-Oracle system
ORA-02063: preceding line from CMSWEBSTORAGE
So if someone will have some spare time for helping me, ill post other relevant information regarding this problem.
Toni

Similar Messages

  • Setup heterogeneous service to connect MySQL from Oracle

    Hello,
    I have got an issue with heterogeneous service configuration like
    SQL> select * from colour@mysql_local;
    select * from colour@mysql_local
    ERROR at line 1:
    ORA-28546: connection initialization failed, probable Net8 admin error
    ORA-02063: preceding line from MYSQL_LOCAL
    If anybody can advise me what is wrong in conf or might be I missed something
    Thanks
    Environment:
    OS: Windows 7 Pro
    Oracle 11.2.0.3
    MySQL: 5.6
    Configuration:
    System ODBC configured : MYSQL_LOCAL
    Tested connection - sucessful
    Listener
    SID_LIST_LISTENER =
    (SID_LIST =
    (SID_DESC =
    (SID_NAME = CLRExtProc)
    (ORACLE_HOME = C:\app\product\11.2.0\dbhome_1)
    (PROGRAM = extproc)
    (ENVS = "EXTPROC_DLLS=ONLY:C:\app\product\11.2.0\dbhome_1\bin\oraclr11.dll")
    (SID_DESC =
    (SID_NAME = MYSQL_LOCAL)
    (ORACLE_HOME = C:\app\product\11.2.0\dbhome_1)
    (PROGRAM=dg4odbc)
    LISTENER =
    (DESCRIPTION_LIST =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC1521))
    (ADDRESS = (PROTOCOL = TCP)(HOST = localhost)(PORT = 1521))
    ADR_BASE_LISTENER = C:\app
    Tnsnames.ora
    MYSQL_LOCAL =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = TCP)(HOST = localhost)(PORT = 1521))
    (CONNECT_DATA =
    (SID = MYSQL_LOCAL)
    (HS = OK)
    initdg4odbc.ora
    HS_FDS_CONNECT_INFO = mysql_local
    HS_FDS_TRACE_LEVEL = OFF
    SQL> conn / as sysdba
    SQL> create public database link MYSQL_LOCAL connect to root identified by 12346 using 'MYSQL_LOCAL';
    C:\Windows\system32>lsnrctl status
    LSNRCTL for 64-bit Windows: Version 11.2.0.3.0 - Production on 08-MAY-2013 17:44:24
    Copyright (c) 1991, 2011, Oracle. All rights reserved.
    Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=IPC)(KEY=EXTPROC1521)))
    STATUS of the LISTENER
    Alias LISTENER
    Version TNSLSNR for 64-bit Windows: Version 11.2.0.3.0 - Production
    Start Date 08-MAY-2013 17:44:05
    Uptime 0 days 0 hr. 0 min. 18 sec
    Trace Level off
    Security ON: Local OS Authentication
    SNMP OFF
    Listener Parameter File C:\app\product\11.2.0\dbhome_1\network\admin\listener.ora
    Listener Log File C:\app\diag\tnslsnr\D-9RGC8X1\listener\alert\log.xml
    Listening Endpoints Summary...
    (DESCRIPTION=(ADDRESS=(PROTOCOL=ipc)(PIPENAME=\\.\pipe\EXTPROC1521ipc)))
    (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=127.0.0.1)(PORT=1521)))
    Services Summary...
    Service "CLRExtProc" has 1 instance(s).
    Instance "CLRExtProc", status UNKNOWN, has 1 handler(s) for this service...
    Service "MYSQL_LOCAL" has 1 instance(s).
    Instance "MYSQL_LOCAL", status UNKNOWN, has 1 handler(s) for this service...
    Service "QA_IMS_MYSQL" has 1 instance(s).
    Instance "QA_IMS_MYSQL", status UNKNOWN, has 1 handler(s) for this service...
    The command completed successfully
    C:\Windows\system32>tnsping mysql_local
    TNS Ping Utility for 64-bit Windows: Version 11.2.0.3.0 - Production on 08-MAY-2013 17:44:36
    Copyright (c) 1997, 2011, Oracle. All rights reserved.
    Used parameter files:
    C:\app\product\11.2.0\dbhome_1\network\admin\sqlnet.ora
    Used TNSNAMES adapter to resolve the alias
    Attempting to contact (DESCRIPTION = (ADDRESS = (PROTOCOL = TCP)(HOST = localhost)(PORT = 1521)) (CONNECT_DATA = (SID = MYSQL_LOCAL) (HS = OK)))
    OK (0 msec)
    SQL> conn / as sysdba
    Connected.
    SQL> select * from colour@mysql_local;
    select * from colour@mysql_local
    ERROR at line 1:
    ORA-28546: connection initialization failed, probable Net8 admin error
    ORA-02063: preceding line from MYSQL_LOCAL

    Hi,
    The gateway file initMYSQL_LOCAL.ora should be placed in the directory -
    $ORACLE_HOME\hs\admin
    which is the expected location. In your setup this should be -
    C:\app\product\11.2.0\dbhome_1\hs\admin
    If the file is already in that location then make sure that in the listener.ora and tnsnames.ora that in each section every line except the first line starts with at least one space -
    SID_LIST_LISTENER =
    <space>(SID_LIST =
    <space>(SID_DESC =
    LISTENER =
    <space>(DESCRIPTION_LIST =
    Tnsnames.ora
    MYSQL_LOCAL =
    <space>(DESCRIPTION =
    <space>(ADDRESS = (PROTOCOL = TCP)(HOST = localhost)(PORT = 1521))
    However, there is also a problem with the tnsnames.ora file. You have -
    Tnsnames.ora
    MYSQL_LOCAL =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = TCP)(HOST = localhost)(PORT = 1521))
    (CONNECT_DATA =
    (SID = MYSQL_LOCAL)
    (HS = OK)
    ) <=== move this bracket
    but it should be -
    Tnsnames.ora
    MYSQL_LOCAL =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = TCP)(HOST = localhost)(PORT = 1521))
    (CONNECT_DATA =
    (SID = MYSQL_LOCAL)
    ) <=== bracket moved here
    (HS = OK)
    Of course, with spaces as shown above. They are often lost in the forums.
    You may also need to change -
    (HOST = localhost)
    to -
    (HOST = <actual host name>)
    but it depends on your setup.
    Try these changes and let me know what happens.
    Regards,
    Mike

  • Generic Heterogeneous Services

    I&#8217;m trying to implement Heterogeneous Services using the generic
    ODBC driver supplied with Oracle 8.1.7. I am attempting to
    connect to a ForPro database running on a NT server from Solaris
    5.7 running Oracle 8.1.7. Up to this point I have not been able
    to properly configure the Listener so that it will run with the
    non-Oracle listener information in the Listener.ora file. I get
    an error (TNS-12545) &#8220;Connect failed because target host of
    object does not exist&#8221;
    Has anyone tried to connect to FoxPro on an NT server?
    Were you able to do this with the generic ODBC driver supplied
    by Oracle?
    Can you post a copy of the relevant sections of the Listener.ora
    and tnsnames.ora files?
    If using an after-market ODBC driver, which one did you use?
    Any help supplied will be greatly appreciated. I have very
    little time to determine if it is possible to make this
    connection and to get it working.

    I wouldn't think so these days ... however, you could try posting this in the heterogeneous services - which is somewhere on OTN.
    If it we me, I'd convert the DBF into something easier to use with Oracle : like XML or CSV

  • Heterogenous Services in 8.1.7?

    Does anyone know if the Heterogenous services (database links through ODBC) are available in the 8.1.7 release for Linux. The readme didn't say it wasn't like it did for 8.1.6. If it is there, has anyone gotten it to work?

    Have u got the replaction manager wizard on 8.1.7 - the same problem i am also facing i f u have any solution to find it out please send me.
    And one more thing have u ever configured replication successfully - If yes please send me steps in short. as I am unable to configure it.
    Regds,
    Amit.
    <BLOCKQUOTE><font size="1" face="Verdana, Arial, Helvetica">quote:</font><HR>Originally posted by Jeremy Perkins ([email protected]):
    What happened to Replication Manager in 8.1.7?
    Does it only exist as part of the DBA Studios package?
    I have tried using this but have found one major flaw. When using a replication administrator user for handing replication, I cannot specify the Tablespace to replicate objects to. All the other storage parameters are available except TABLESPACE.
    Has anyone else experienced this problem?<HR></BLOCKQUOTE>
    null

  • Oracle Heterogeneous Services to create link With Excel spreadsheet.

    Hi
    Please adivse how to use "Oracle Heterogeneous Services" to create a database link from Oracle to the Excel spreadsheet.
    Wishes
    Jawad

    Dear Anwar,
    I'm using XPSP2 10gR2Enterprise
    SID=ORCL
    host=andor (my PC's name)
    Pls help me. I'm struggling with HS also so I've followed your lines, meaning:
    I can create the database link, but cannot retrieve data from source. (see 7.)
    1a. I have created the Excel file c:\EXCL.xls
    NEV DATUM BOOL NUMBER
    Stefán Balázs 09.nov TRUE 0
    Sebestyén Dénes 10.nov TRUE -11
    Tóth Andor 11.nov FALSE 12.3
    c: is partition on the same server where 10g sits.
    1b. I've created an ODBC system DSN for this excel file, named EXCL.
    2. tnsnames.ora has bee nupdated by this:
    ORCL =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = TCP)(HOST = andor)(PORT = 1521))
    (CONNECT_DATA =
    (SERVER = DEDICATED)
    (SERVICE_NAME = orcl)
    EXTPROC_CONNECTION_DATA =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC1))
    (CONNECT_DATA =
    (SID = PLSExtProc)
    (PRESENTATION = RO)
    EXCL =
         (DESCRIPTION =
              (ADDRESS_LIST =
                   (ADDRESS = (PROTOCOL = TCP)(HOST = andor)(PORT = 1521))
              (CONNECT_DATA =
                   (SID = EXCL)
              (HS = OK)
    3. listener.ora
    SID_LIST_LISTENER =
    (SID_LIST =
    (SID_DESC =
    (SID_NAME = PLSExtProc)
    (ORACLE_HOME = D:\oracle\product\10.2.0\db_1)
    (PROGRAM = extproc)
    (SID_DESC =
    (SID_NAME = EXCL)
    (ORACLE_HOME = D:\oracle\product\10.2.0\db_1)
    (PROGRAM = EXCL)
    LISTENER =
    (DESCRIPTION_LIST =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC1))
    (ADDRESS = (PROTOCOL = TCP)(HOST = andor)(PORT = 1521))
    4. initexcl.ora in hs directory:
    HS_FDS_CONNECT_INFO = EXCL
    HS_FDS_TRACE_LEVEL = 0
    Listener restarted.
    5. in iSQLPlus:
    SQL> CREATE DATABASE LINK excl USING 'excl';
    Database link created.
    6. in Enterprise Manager there is a Database Link:
         database links: EXCL.REGRESS.RDBMS.DEV.US.ORACLE.COM
    service name: excl
    7. testing the database link says:
    The Database Link is not active.
    ORA-28545: .Unable to retrieve text of NETWORK/NCR message 65535... ORA-02063: previous 2 lines from EXCL
    Please help me to get over this.

  • Help with heterogeneous services

    Hello.
    I have been asked to try to create a dblink from an oracle 9.2 database on a solaris machine to a mysql 5.1 database on a windows xp machine.
    I need to know what software I need to get and install on both machines and what settings on the oracle server are needed.
    I just hope that someone who has done this before can help me.
    Thanks in advance.

    Hi,
    If you are looking for a tutorial sort of thing for Heterogenous Services than this thread over Asktom is a good resource. Look inside it an example given by Tak Tang for connecting Oracle Database with MS Excel. Take it as a reference to do your work.
    http://asktom.oracle.com/pls/asktom/f?p=100:11:0::::P11_QUESTION_ID:4406709207206
    And for the Heterogenous Services, look at the doc guide of it here,
    http://download.oracle.com/docs/cd/B19306_01/server.102/b14232/toc.htm
    HTH
    Aman....

  • Heterogeneous Services with JDBC

    Is is possible to create an heterogenous service using JDBC. If so, how can I do it?
    Thanks
    Francisco

    Francisco,
    We support on ODBC and OLE DB drivers with HS.

  • Heterogeneous services 10GR2 Questions

    Hi,
    we are planning to make a dblink connection between oracle and sybase, and we want to access the data which is resides in sybase
    so i have some questions about oracle heterogeneous services for oracle 10GR2:
    1. Is Oracle Transparent Gateways for free ??
    2. where can I download the Oracle Transparent Gateways ??
    3. where can I found the documentation ?
    thx

    Heterogeneous Connectivity

  • Heterogeneous Services & SQL Server

    I understand that connecting an Oracle database to a SQL Server database can be done using the Heterogeneous Services which will set up a Transparent Gateway to the SQL Server data. Where can I get the agent needed to connect the two though? Are there different agents for different Oracle/SQL Server version combinations?
    I have the paper 'Oracle8 Distributed Database Systems Release 8.0 A58247-01, Chapter 7: Administering Oracle Heterogeneous Services', and it is very helpful in getting the basics, but I need more info for my particular situation. Supposedly the agent has an Installationand User's Guide which would assist me also.

    Do you have any pending statements in dba 2pc pending?
    Your init parameters seems good. you need to check with the network guys for the packages sent from Oracle is received by sql server and vice versa. Hope there is no block on redirect ports.
    You can enable tracing and see if you get any valid points in this direction.
    As you said about trigger, look for the privileges in sql server does the user you are connecting has all the privilege on the associated tables. Also the conditions on the trigger has to be satisfied for the execution.
    Also you need to add some HS parameters for the recovery in case you may need.

  • Heterogeneous Services through ODBC

    There has been some different remarks about if Heterogeneous Services through ODBC will be available in XE. So now when we are getting close to the production release of XE I want to know what the final answer is on this feature

    For the sake of future readers: This works! I just paraphrased this approach to successfully create a dblink to my Sql Server 2000 EE running on MS W2K Svr. It took some time to sort out the details, and then to discover that the test in Tak Tang's excellent writeup did not work for me. I could not do: select table_name from all_tables@mydblink; without getting:
    ORA-00604: error occurred at recursive SQL level 1
    ORA-28500: connection from ORACLE to a non-Oracle system returned this message:
    [Generic Connectivity Using ODBC]
    ORA-02063: preceding 2 lines from DBLINK_IMS
    However, when I finally woke up and tried: SELECT * FROM <MySmallTable>; I realized that it was actually working.
    I hope this hint is helpful to future readers. Many thanks to TTang for his excellent writeup. Thanks also to Oracle for an excellent product.

  • Heterogeneous Services  with HTMLDB

    Hi All,
    I was wondering if HTMLDB exposes Heterogeneous Services connectivity to other datasources?
    For example...if I create a DB Link to DB2 via a gateway is this information exposed in HTMLDB?

    Howard,
    Nothing HTML DB-specific about your question. You might try this forum:Heterogeneous Connectivity
    Scott

  • Heterogeneous Services ODBC to MS SQLSvr - ORA-00904 error

    Hello, I have successfully setup a heterogeneous Services ODBC to MS SQLSvr using the steps outlined at http://www.orafusion.com/art_orahs.htm.
    My problem is, the only queries that run without errors are SELECT * FROM tablename@xxx. When I try SELECT colname FROM tablename@xxx I get an ORA-00904: "colname": invalid identifier. Any thoughts?
    Also, will I be able to update MS SQLSvr tables using this link?
    Thanks.

    Hello, Your suggestion worked. Even though all the column_names are lower case, if I surrounded the column names with double quotes the query would work.
    Another question. I'm wanting to update a SQLServer table with data from a Oracle table using a query like:
    INSERT INTO sql_table@xxx
    SELECT * FROM oracle_table ;
    Is this possible? I'm getting a "ORA-02025: all tables in the SQL statement must be at the remote database" error message which looks like I can't.
    Thanks.

  • Heterogeneous services with MS EXCEl

    Hi all!
    I have cofigure heterogeneous services for ORACLE and MS EXCEL.
    but the operation like UPDATE, INSERT , DELETE are not working.
    How can i get i right?
    rana adnan

    Hi
    yes error is here
    SQL> delete from student$@dlcompany;
    delete from student$@dlcompany
    ERROR at line 1:
    ORA-28500: connection from ORACLE to a non-Oracle system returned this message:
    [Generic Connectivity Using ODBC][Microsoft][ODBC Excel Driver] Could not
    delete from specified tables. (SQL State: S1000; SQL Code: -3049)
    ORA-02063: preceding 2 lines from DLCOMPANY
    rana adnan

  • Heterogeneous Services & Oracle Generic Connectivity For DBF file?

    Dear All,
    Can We Create dbf file directly means without using CSV file?
    Can we use Heterogeneous Services & Oracle Generic Connectivity for creating dbase DBF file or Writing in dbase DBF file?
    I have used it for Excel and Access for connectivity with Oracle 9i
    but I dont have any idea about dbase DBF file?
    Any help in this reagards will be highly appriciatalble.
    Thanks
    Rana

    HSODBC/DG4ODBC is generic connectivity and you find the generic setup in:
    Note.109730.1 How to setup generic connectivity (HSODBC) for 32 bit Windows (Windows NT, Windows 2000, Windows XP, Windows 2003)
    There is nothing sepcial for DBF's. Just define a system ODBC DSN using a DBASE ODBC driver pointing to the DBF file.
    The rest is absolute similar to the note.
    If you have already a running HSODBC/DG4ODBC the quickest test is to just define a new system dsn for the DBF file, then change in the init>hsodbc/dg4odbc>.ora file the HS_FDS_CONNECT_INFO parameter pointing to the newly created system DSN. Last step is within the Oracle db to define a database link.

  • Heterogeneous Services & Oracle Generic Connectivity for dbase DBF file

    Dear All,
    Can we use Heterogeneous Services & Oracle Generic Connectivity for creating dbase DBF file or Writing in dbase DBF file?
    I have used it for Excel and Access for connectivity with Oracle 9i
    but I dont have any idea about dbase DBF file?
    Any help in this reagards will be highly appriciatalble.
    Thanks
    Rana

    I wouldn't think so these days ... however, you could try posting this in the heterogeneous services - which is somewhere on OTN.
    If it we me, I'd convert the DBF into something easier to use with Oracle : like XML or CSV

  • Using Oracle Heterogenous services to access sql server database table

    I have created a dblink 'POC_HS' from oracle to sql (implemented heterogeneous services) and I am able to successfully pull out data from the default database that the DSN(for sql server) is connected to.
    So this 'select * from Test@POC_HS' is working perfectly fine on the Oracle database as 'Test' table resides in the default database (which the System DSN is connected to).
    But when I do 'select * Abc.Test@POC_HS' where Test table resides in 'ABC' database which is not the default database throws an error as follows:
    ORA-00942: table or view does not exist [Generic Connectivity Using ODBC][Microsoft][ODBC SQL Server Driver][SQL Server]Invalid object name 'Abc.Test'.[Microsoft][ODBC SQL Server Driver][SQL Server]Statement(s) could not be prepared. (SQL State: S0002; SQL Code: 208)
    I have also tried this 'select * from Abc.dbo.Test@POC_HS' but oracle throws this exception "ORA-00933: SQL command not properly ended".
    The dblink user and System DSN account has access to the 'Abc' database.
    Thoughts?

    Thanks for the info.
    But suppose if we have DB link 'POC_HS' where POC_HS is a DBlink between oracle servers, I can do the following -
    1. select * Abc.Test@POC_HS
    2. select * Def.Test@POC_HS
    where Abc,Def are the schemas which the Dblink user has access to. I can execute the above perfectly fine.
    I wanted the achieve the same functionality from Oracle to Sql where database keep on changing dynamically . So according to you that's not possible right?
    We will have to keep on changing the ODBC connection to a different database or create a new odbc/listener/tnsentry each time query uses a different database right?
    Edited by: 878753 on Aug 11, 2011 1:29 AM

Maybe you are looking for