Import an Access from Oracle database

Hello

I would like to know if there is a way to import an Access from Oracle database


Thanks forward

The easy and simple way to do this is using Sql Developer

Please see the link is a guide step by step to achieve what you want

http://www.Oracle.com/technology/tech/Migration/Workbench/Viewlets/accessconnlauncher.html

http://www.Oracle.com/technology/tech/Migration/Workbench/Viewlets/msaccesslauncher.html

Concerning

Tags: Database

Similar Questions

  • Error connecting to the Access from Oracle database

    Dear all,

    I am trying to connect to Oracle 9i in the Access database.

    but im getting error when running query below.
    ERROR at line 1:
    ORA-28545: error diagnosed by Net8 when connecting to an agent
    NCRO: Failed to make RSLV connection
    ORA-02063: preceding 2 lines from MYSQL
    I did the next thing through to connect to the database.

    (1) first of all I did called ODBC1 odbc driver
    (2) I create the following file on the oracle C:\oracle\ora9I\hs\admin\initodbc1.ora Server
    I have change the thing below in initodbc1.ora
    HS_FDS_CONNECT_INFO =ODBC1
    HS_FDS_TRACE_LEVEL = ON
    (3) I made a few changes in sqlnet.ora
    SQLNET.AUTHENTICATION_SERVICES= NONE
    before it was *NTS*
    (4) here's the entries in tnsnames.ora I changed the port of 1521 to 1522 cos 1521 already exists.
    ODBC1.TADAWI.LOC =
      (DESCRIPTION =
        (ADDRESS_LIST =
          (ADDRESS = (PROTOCOL = TCP)(HOST = admin-amc)(PORT = 1522))
        )
        (CONNECT_DATA =
          (SERVER = DEDICATED)
          (SERVICE_NAME = ODBC1)
        )
      )
    ODBC1.WORLD =
      (DESCRIPTION =
         (ADDRESS = (PROTOCOL = TCP)(HOST = 192.168.0.251) (PORT = 1522)
      )
      (CONNECT_DATA =
          (SID = ODBC1)
      )
      (HS=OK)
     )
    (5) the code in the file listener
    ODBC1 =
      (DESCRIPTION =
        (ADDRESS = (PROTOCOL = TCP)(HOST = admin-amc)(PORT = 1522))
      )
    
    LISTENER =
      (DESCRIPTION_LIST =
        (DESCRIPTION =
          (ADDRESS = (PROTOCOL = TCP)(HOST = admin-amc)(PORT = 1521))
        )
        (DESCRIPTION =
          (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC2))
        )
      )
    
    SID_LIST_LISTENER =
      (SID_LIST =
        (SID_DESC =
          (SID_NAME = PLSExtProc)
          (ORACLE_HOME = C:\oracle\ora9I)
          (PROGRAM = extproc)
        )
        (SID_DESC =
          (GLOBAL_DBNAME = orcl)
          (ORACLE_HOME = C:\oracle\ora9I)
          (SID_NAME = orcl)
         )
         (SID_DESC =
          (PROGRAM = hsodbc)
          (ORACLE_HOME = C:\oracle\ora9I)
          (SID_NAME = ODBC1)
        )
      )
    (6) after that I created
    SQL> CREATE DATABASE LINK MYSQL CONNECT TO XTRACK IDENTIFIED BY XTRACK USING 'ODBC1.WORLD'
    
    Database link created.
    (7) the listener status
    LSNRCTL for 32-bit Windows: Version 9.2.0.1.0 - Production on 04-MAR-2012 21:26:16
    
    Copyright (c) 1991, 2002, Oracle Corporation.  All rights reserved.
    
    Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=admin-amc)(PORT=1521)))
    STATUS of the LISTENER
    ------------------------
    Alias                     LISTENER
    Version                   TNSLSNR for 32-bit Windows: Version 9.2.0.1.0 - Production
    Start Date                04-MAR-2012 20:52:33
    Uptime                    0 days 0 hr. 33 min. 44 sec
    Trace Level               off
    Security                  OFF
    SNMP                      OFF
    Listener Parameter File   C:\oracle\ora9I\network\admin\listener.ora
    Listener Log File         C:\oracle\ora9I\network\log\listener.log
    Listening Endpoints Summary...
      (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=admin-amc.tadawi.loc)(PORT=1521)))
      (DESCRIPTION=(ADDRESS=(PROTOCOL=ipc)(PIPENAME=\\.\pipe\EXTPROC2ipc)))
      (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=admin-amc.tadawi.loc)(PORT=8080))(Presentation=HTTP)(Session=RAW))
      (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=admin-amc.tadawi.loc)(PORT=2100))(Presentation=FTP)(Session=RAW))
    Services Summary...
    Service "ODBC1" has 1 instance(s).
      Instance "ODBC1", status UNKNOWN, has 1 handler(s) for this service...
    Service "PLSExtProc" has 1 instance(s).
      Instance "PLSExtProc", status UNKNOWN, has 1 handler(s) for this service...
    Service "orcl" has 2 instance(s).
      Instance "orcl", status UNKNOWN, has 1 handler(s) for this service...
      Instance "orcl", status READY, has 1 handler(s) for this service...
    Service "orclXDB" has 1 instance(s).
      Instance "orcl", status READY, has 1 handler(s) for this service...
    The command completed successfully
    I did exactly what documents said, and it will not be through any error but atlast when I try to access access database tables it gives me the error below
    SELECT * FROM DBO_COMPANY@MYSQL
                              *
    ERROR at line 1:
    ORA-28545: error diagnosed by Net8 when connecting to an agent
    NCRO: Failed to make RSLV connection
    ORA-02063: preceding 2 lines from MYSQL
    I use Oracle9i Enterprise Edition Release 9.2.0.1.0 any help will be appreciate.

    Concerning

    Houda

    Published by: houda Shareef on 4 March 2012 10:25

    I guess that your listener.ora always has a section of SID and you did not copy paste... Then please post the entire file

    Please open a command line window and do:
    C:\oracle\ora9I\bin\hsodbc
    After all output including the call.

    Published by: kgronau on March 6, 2012 18:31
    When the listener above is still correct, the cause would be that you have 2 SID with the same name in your listener.ora:
    SID_LIST_ODBC1 =
    (SID_LIST =
    (SID_DESC =
    (SID_NAME = ODBC1)
    (ORACLE_HOME = C:\oracle\ora9I)
    (PROGRAM = hsodbc)
    )
    (SID_DESC =
    (GLOBAL_DBNAME = ODBC1)
    (ORACLE_HOME = C:\oracle\ora9I)
    (SID_NAME = ODBC1)
    )
    )

    Please change to:
    SID_LIST_ODBC1 =
    (SID_LIST =
    (SID_DESC =
    (SID_NAME = ODBC1)
    (ORACLE_HOME = C:\oracle\ora9I)
    (PROGRAM = hsodbc)
    )
    )

    Published by: kgronau on March 6, 2012 18:34
    Once you change the listener, please stop and start the listener called odbc1: odbc1 stop lsnrctl and lsnrctl start odbc1

  • Installation of the UCR switches from Oracle database 11g

    UCR-6083: impossible - check requirement prerequisites for the selected item: SOAINFRA
    Refer to the journal of the RCUS to D:\SOA1114\rcuHome\rcu\log\logdir.2011-04-05_12-12\rcu.log for more details.
    RCU - 6107:DB prerequisites for Init Param failed: process
    Current value is 40. It must be greater than or equal to 200.

    RCU - 6092:Component validation selection failed. Please refer to connect to D:\SOA1114\rcuHome\rcu\log\logdir.2011-04-05_12-12\rcu.log for more details.

    during the selection of the components, I selected soa infrastructure and I continued. but she stopped when checking for prerequisites.
    pls find my file rcu.log as below.

    --------------------------------------------------------------------------------------------------------------------
    2011-04-05 12:12:11.694 NOTIFICATION rcu: oracle.sysman.assistants.common.util.LoggingManager::initialize: dir Log is not exist. Creation logdir:D:\SOA1114\rcuHome\/rcu/log\logdir.2011-04-05_12-12
    2011-04-05 12:12:11.704 NOTIFICATION rcu: oracle.sysman.assistants.common.util.LoggingManager::initialize: Log file does not exist. Creation of journal file:D:\SOA1114\rcuHome\/rcu/log\logdir.2011-04-05_12-12\rcu.log
    2011-04-05 12:12:11.704 NOTIFICATION rcu: oracle.sysman.assistants.common.util.LoggingManager::initialize: LOG_LEVEL_IS - NOTIFICATION: 1
    2011-04-05 12:12:11.704 NOTIFICATION rcu: oracle.sysman.assistants.common.util.LoggingManager::initialize: hostname: PC161826
    2011-04-05 12:12:11.704 NOTIFICATION rcu: oracle.sysman.assistants.common.util.LoggingManager::initialize: OSINFO: x 86 Windows 7 6.1
    2011-04-05 12:12:11.714 NOTIFICATION rcu: oracle.sysman.assistants.common.util.LoggingManager::initialize: JREINFO: 1.6.0_21 D:\SOA1114\rcuHome\jdk\jre
    2011-04-05 12:12:11.714 NOTIFICATION rcu: oracle.sysman.assistants.common.util.LoggingManager::initialize: username: 249141
    2011-04-05 12:12:11.714 NOTIFICATION rcu: oracle.sysman.assistants.common.util.LoggingManager::initialize: USERDIR: D:\SOA1114\rcuHome\BIN
    2011-04-05 12:12:11.714 NOTIFICATION rcu: oracle.sysman.assistants.common.util.LoggingManager::initialize: user country: U.S.
    2011-04-05 12:12:11.714 NOTIFICATION rcu: oracle.sysman.assistants.common.util.LoggingManager::initialize: the user's language: en
    2011-04-05 12:12:11.714 NOTIFICATION rcu: oracle.sysman.assistants.common.util.LoggingManager::initialize: Java class path: D:\SOA1114\rcuHome\\jlib\rcu.jar;D:\SOA1114\rcuHome\\jlib\share.jar;D:\SOA1114\rcuHome\\jlib\help-share.jar;D:\SOA1114\rcuHome\\jlib\ohj.jar;D:\SOA1114\rcuHome\\jlib\orai18n-mapping.jar;D:\SOA1114\rcuHome\\lib\xmlparserv2.jar;D:\SOA1114\rcuHome\\jdbc\lib\ojdbc5.jar;D:\SOA1114\rcuHome\\jdbc\lib\ojdbc14.jar;D:\SOA1114\rcuHome\\jlib\jewt4.jar;D:\SOA1114\rcuHome\\jlib\ojdl.jar;D:\SOA1114\rcuHome\\modules\oracle.odl_11.1.1\ojdl.jar;D:\SOA1114\rcuHome\\jlib\SchemaVersion.jar;D:\SOA1114\rcuHome\\jlib\wldb2.jar;D:\SOA1114\rcuHome\\jlib\wlsqlserver.jar;D:\SOA1114\rcuHome\\jlib\wlbase.jar;D:\SOA1114\rcuHome\\jlib\wlutil.jar;D:\SOA1114\rcuHome\\ jlib\fmwgenerictoken.jar;D:\SOA1114\rcuHome\\jlib\com.bea.core.weblogic.workmanager_1.9.0.0.jar;D:\SOA1114\rcuHome\\jlib\oracle_ice.jar;D:\SOA1114\rcuHome\\jlib\rcuhelppages.jar;D:\SOA1114\rcuHome\\assistants\opca\jlib\opca.jar;D:\SOA1114\rcuHome\\portal\jlib\ptlshare.jar;D:\SOA1114\rcuHome\\jlib\ldapjclnt11.jar;D:\SOA1114\rcuHome\\jlib\commons-collections-3.1.jar;D:\SOA1114\rcuHome\\jlib\commons-dbcp-1.2.1.jar;D:\SOA1114\rcuHome\\jlib\commons-logging.jar;D:\SOA1114\rcuHome\\jlib\commons-pool-1.2.jar;D:\SOA1114\rcuHome\\jlib\quartz-1.6.0.jar;D:\SOA1114\rcuHome\\jlib\xml.jar;D:\SOA1114\rcuHome\\jlib\jta.jar;D:\SOA1114\rcuHome\\jlib\iam-platform-utils.jar;D:\SOA1114\rcuHome\\jlib\iam-platform-authz-service.jar;D:\SOA1114\rcuHome\\jlib\iam-features-identity.zip;D:\SOA1114\rcuHome\\jlib\ iam-features-configservice.zip;D:\SOA1114\rcuHome\\jlib\jps-api.jar;D:\SOA1114\rcuHome\\jlib\jps-common.jar;D:\SOA1114\rcuHome\\jlib\jps-ee.jar;D:\SOA1114\rcuHome\\jlib\jps-internal.jar;D:\SOA1114\rcuHome\\jlib\jps-manifest.jar;D:\SOA1114\rcuHome\\jlib\MicroSM.jar;D:\SOA1114\rcuHome\\jlib\javax.persistence_1.0.0.0_1-0-2.jar;D:\SOA1114\rcuHome\\jlib\org.eclipse.persistence_1.0.0.0_1-1-0.jar;D:\SOA1114\rcuHome\\jlib\identitystore.jar;D:\SOA1114\rcuHome\\jlib\jps-unsupported-api.jar;D:\SOA1114\rcuHome\\jlib\pd-internal.jar
    2011-04-05 12:12:11.714 NOTIFICATION rcu: oracle.sysman.assistants.common.util.LoggingManager::initialize: Java library path: D:\SOA1114\rcuHome\jdk\jre\bin; ; C:\Windows\Sun\Java\bin; C:\Windows\System32; C:\Windows;D:\SOA1114\rcuHome\\bin; C:\oraclexe\app\oracle\product\10.2.0\server\bin; C:\Windows\System32; C:\Windows; C:\Windows\System32\Wbem; C:\Windows\system32\WindowsPowerShell\v1.0\
    2011-04-05 12:12:11.714 NOTIFICATION rcu: oracle.sysman.assistants.rcu.Rcu::execute: launch RCU.
    2011-04-05 12:12:11.714 NOTIFICATION rcu: oracle.sysman.assistants.rcu.Rcu::execute: InteractiveRCUModel of creation
    2011-04-05 12:12:12.224 NOTIFICATION rcu: oracle.sysman.assistants.rcu.backend.xmldata.RepositoryConfigManager: < init >: rather than DTD: D:\SOA1114\rcuHome\/rcu/config/
    2011-04-05 12:12:12.224 NOTIFICATION rcu: oracle.sysman.assistants.rcu.backend.xmldata.RepositoryConfigManager: < init >: ComponentInfo xml location: D:\SOA1114\rcuHome\/rcu/config/ComponentInfo.xml
    2011-04-05 12:12:12.224 NOTIFICATION rcu: oracle.sysman.assistants.rcu.backend.xmldata.RepositoryConfigManager: < init >: xml storage location: D:\SOA1114\rcuHome\/rcu/config/Storage.xml
    2011-04-05 12:12:12.224 NOTIFICATION rcu: oracle.sysman.assistants.rcu.backend.xmldata.RepositoryConfigManager: < init >: DTD Validation: true
    2011-04-05 12:12:12.234 NOTIFICATION rcu: oracle.sysman.assistants.rcu.backend.RCUCommandLineParser::process: processing command line...
    2011-04-05 12:12:57.107 NOTIFICATION rcu: oracle.sysman.assistants.common.dbutil.jdbc.JDBCEngine::connect: the connection to the database: user: sys, role: SYSDBA, connectString: (description = (address = (host = localhost)(protocol=tcp) (port = 1521)) (connect_data = (service_name = XE) (server = dedicated)))
    \rcuHome\/RCU/integration//EPM/registry/RepositoryConfig.XML is valid

    2011-04-05 12:12:58.267 NOTIFICATION rcu: oracle.sysman.assistants.rcu.backend.xmldata.RepositoryConfigManager::parseStorageData: XML Document: D:\SOA1114\rcuHome\/rcu/config/Storage.xml is valid
    2011-04-05 12:12:58.467 NOTIFICATION rcu: oracle.sysman.assistants.rcu.backend.task.ActualTask::run: turnaround time for initialization of configuration metadata repository: 640 milliseconds
    2011-04-05 12:12:58.467 NOTIFICATION rcu: oracle.sysman.assistants.rcu.backend.task.ActualTask::run: execution of task: get the properties of the specified database
    2011-04-05 12:12:58.467 NOTIFICATION rcu: oracle.sysman.assistants.rcu.backend.validation.PrereqEvaluator::executePrereqTask: Prereq taskId = PREREQ_QUERY_DATABASE
    2011-04-05 12:12:58.517 NOTIFICATION rcu: oracle.sysman.assistants.rcu.backend.task.ActualTask::run: lead time to get the properties of the specified database: 50 milliseconds
    2011-04-05 12:12:58.517 NOTIFICATION rcu: oracle.sysman.assistants.rcu.backend.task.ActualTask::run: execution of task: obligation of verification for the specified database
    2011-04-05 12:12:58.517 NOTIFICATION rcu: oracle.sysman.assistants.rcu.backend.validation.PrereqEvaluator::executePrereqTask: Prereq taskId = PREREQ_GLOBAL_CHECK
    2011-04-05 12:12:59.967 NOTIFICATION rcu: oracle.sysman.assistants.rcu.backend.task.ActualTask::run: lead time for the requirement of verification for the specified database: 1450 milliseconds
    2011-04-05 12:12:59.967 NOTIFICATION rcu: oracle.sysman.assistants.rcu.backend.task.ActualTask::run: task execution: run before create operations
    2011-04-05 12:12:59.967 NOTIFICATION rcu: oracle.sysman.assistants.rcu.backend.task.CustomCompManager::getActionList: CustomCompManager.getActionList: CUSTOM_COMP_PRELOAD_SETUP
    2011-04-05 12:12:59.977 NOTIFICATION rcu: oracle.sysman.assistants.rcu.backend.task.AbstractCompTask::execute: ValidationRule result was false. Jump action: oracle.ias.version.SchemaVersionUtil:utilCreateRegistryAndCopyData
    2011-04-05 12:12:59.977 NOTIFICATION rcu: oracle.sysman.assistants.rcu.backend.task.AbstractCompTask::execute: ValidationRule result was false. Jump action: oracle.ias.version.SchemaVersionUtil:utilCreateRegistryTable
    2011-04-05 12:12:59.977 NOTIFICATION rcu: oracle.sysman.assistants.rcu.backend.task.ActualTask::run: lead time to run before the operations of creation: 10 milliseconds
    2011-04-05 12:14:15.656 NOTIFICATION rcu: oracle.sysman.assistants.common.task.ProgressPanel::progressToNextTask: waiting for delegate be visible
    2011-04-05 12:14:15.666 NOTIFICATION rcu: oracle.sysman.assistants.common.task.ProgressPanel::progressToNextTask: waiting for delegate be visible
    2011-04-05 12:14:15.676 NOTIFICATION rcu: oracle.sysman.assistants.rcu.backend.task.ActualTask::run: execution of task: Metadata Services
    2011-04-05 12:14:15.676 NOTIFICATION rcu: oracle.sysman.assistants.rcu.backend.validation.PrereqEvaluator::executePrereqTask: Prereq taskId = MDS
    2011-04-05 12:14:15.676 NOTIFICATION rcu: oracle.sysman.assistants.rcu.backend.validation.PrereqEvaluator::executePrereqTask: from prereq check component
    2011-04-05 12:14:15.706 NOTIFICATION rcu: oracle.sysman.assistants.rcu.backend.task.ActualTask::run: turnaround time for metadata Services: 30 milliseconds
    2011-04-05 12:14:15.706 NOTIFICATION rcu: oracle.sysman.assistants.rcu.backend.task.ActualTask::run: execution of task: SOA Infrastructure
    2011-04-05 12:14:15.706 NOTIFICATION rcu: oracle.sysman.assistants.rcu.backend.validation.PrereqEvaluator::executePrereqTask: Prereq taskId = SOAINFRA
    2011-04-05 12:14:15.706 NOTIFICATION rcu: oracle.sysman.assistants.rcu.backend.validation.PrereqEvaluator::executePrereqTask: from prereq check component
    2011-04-05 12:14:15.706 rcu ERROR: oracle.sysman.assistants.rcu.backend.task.PrereqTask::execute: Prereq evaluation failed
    Refer to the journal of the RCUS to D:\SOA1114\rcuHome\rcu\log\logdir.2011-04-05_12-12\rcu.log for more details.
    at oracle.sysman.assistants.rcu.backend.validation.PrereqEvaluator.executePrereqTask(PrereqEvaluator.java:642)
    at oracle.sysman.assistants.rcu.backend.task.PrereqTask.execute(PrereqTask.java:68)
    at oracle.sysman.assistants.rcu.backend.task.ActualTask.run(TaskRunner.java:306)
    at java.lang.Thread.run(Thread.java:619)

    2011-04-05 12:14:31.806 rcu ERROR: oracle.sysman.assistants.rcu.backend.task.ActualTask::run: UCR failed
    oracle.sysman.assistants.common.task.TaskExecutionException: UCR-6083: impossible - check requirement prerequisites for the selected item: SOAINFRA
    Refer to the journal of the RCUS to D:\SOA1114\rcuHome\rcu\log\logdir.2011-04-05_12-12\rcu.log for more details.
    RCU - 6107:DB prerequisites for Init Param failed: process
    Current value is 40. It must be greater than or equal to 200.

    at oracle.sysman.assistants.rcu.backend.task.PrereqTask.execute(PrereqTask.java:76)
    at oracle.sysman.assistants.rcu.backend.task.ActualTask.run(TaskRunner.java:306)
    at java.lang.Thread.run(Thread.java:619)

    RCU - 6107:DB prerequisites for Init Param failed: process
    Current value is 40. It must be greater than or equal to 200.

    Please increase the DB process parameter properly. Please see-

    http://www.Oracle.com/technetwork/middleware/soasuite/overview/quickstartguidesoasuite11gr1ps3-313245.PDF

    Run under SQL before starting the RCU-

    SQL > alter system reset sessions scope = spfile sid ='* ';
    SQL > change processes control system = 300 scope = spfile;
    SQL > shutdown immediate
    SQL > startup

    Kind regards
    Anuj

    Published by: Anuj Dwivedi on April 5, 2011 13:24

  • Process xml from oracle database

    Hello

    I have an XML file that:

    <? XML version = "1.0" encoding = "UTF-8" standalone = "yes"? >
    < table xmlns: xsi = "http://www.w3.org/2001/XMLSchema-instance" >
    < Budgets30 >
    < id > < /ID > 83201
    < gm1 > 20575.2 < / gm1 >
    < gm2 > 20761.2 < / gm2 >
    < gm3 > 41583.6 < / gm3 >
    < > 46896 gm4 < / gm4 >
    < gs1 > 51438 < / gs1 >
    < > 51903 gs2 < / gs2 >
    < > 103959 gs3 < / gs3 >
    < gs4 > 117240 < / gs4 >
    < / Budgets30 >
    < Budgets30 >
    < id > < /ID > 83202
    < > 81000 gm1 < / gm1 >
    < gm2 > 0 < / gm2 >
    < > 16200 gm3 < / gm3 >
    < gm4 > 0 < / gm4 >
    < gs1 > 202500 < / gs1 >
    < gs2 > 0 < / gs2 >
    < > 40500 gs3 < / gs3 >
    < gs4 > 0 < / gs4 >
    < / Budgets30 >

    There are approximately 4000 lines. Following code does not work because of ' ORA-19011: character string buffer too small "."

    Insert into xxpm_sr_cost_prices_xml values (xmltype (dbms_xslprocessor.read2clob (lv_file_dir, lv_file_name)));
    --
    l_location: = ' select / Extract to inhabitants. "
    SELECT scp.content.extract('//Id').getStringVal () got Id
    scp.content.extract('//gm1').getStringVal () as gm1
    scp.content.extract('//gm2').getStringVal () as gm2
    scp.content.extract('//gm3').getStringVal () as gm3
    scp.content.extract('//gm4').getStringVal () as gm4
    scp.content.extract('//gs1').getStringVal () as gs1
    scp.content.extract('//gs2').getStringVal () like the gs2
    scp.content.extract('//gs3').getStringVal () as gs3
    scp.content.extract('//gs4').getStringVal () as gs4
    IN l_id, l_gm1, l_gm2, l_gm3, l_gm4, l_gs1, l_gs2, l_gs3, l_gs4
    OF xxpm_sr_cost_prices_xml scp

    What does not work?

    Robbert cordially

    And I guess that the default namespace that you use in the XMLTABLE is also in the XML file?

    So, if I change the example to work with your query data...

    SQL> ed
    Wrote file afiedt.buf
    
      1  with t as (select xmltype('
      2  
      3    
      4      
      5        83201
      6        20575.2
      7        20761.2
      8        41583.6
      9        46896
     10        51438
     11        51903
     12        103959
     13        117240
     14      
     15      
     16        83202
     17        81000
     18        0
     19        16200
     20        0
     21        202500
     22        0
     23        40500
     24        0
     25      
     26    
     27  ') as xml from dual)
     28  --
     29  -- END OF TEST DATA
     30  --
     31  SELECT x.*
     32  FROM t, XMLTable(
     33  XMLNamespaces(default 'http://developer.cognos.com/schemas/xmldata/1/'),
     34  '/dataset/data/row'
     35  passing t.xml
     36  columns Id number path '//Id'
     37  ,gm1 number path '//gm1'
     38  ,gm2 number path '//gm2'
     39  ,gm3 number path '//gm3'
     40  ,gm4 number path '//gm4'
     41  ,gs1 number path '//gs1'
     42  ,gs2 number path '//gs2'
     43  ,gs3 number path '//gs3'
     44* ,gs4 number path '//gs4') x
    SQL> /
    
            ID        GM1        GM2        GM3        GM4        GS1        GS2        GS3        GS4
    ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ----------
         83201    20575.2    20761.2    41583.6      46896      51438      51903     103959     117240
         83202      81000          0      16200          0     202500          0      40500          0
    
    SQL>
    
  • To connect to an Oracle database using oracle.jdbc.OracleDriver: error

    Hello

    I am trying to connect to an Oracle database so that we can extract information on tables, views, and packages.

    Using the Data Modeler (transformation script) API, we will add these notes to the corresponding objects in the Data Modeler.

    I'll start with this:

    importPackage (java.lang);

    importPackage (java.awt);

    importPackage (java.sql);

    java.lang.Class.forName ("oracle.jdbc.OracleDriver");

    An error occurs when I run this code:

    test.png

    It must be something of Java...

    Someone at - it a suggestion?

    Problem solved! A colleague of mine referred to in this post: import def properties from Oracle Designer

    More in detail: it's this couple of lines:

    Copy the file ojdbc6.jar for... Directory of \datamodeler-home\jlib

    Add this line to datamodeler.conf

    AddJavaLibFile... /... /jlib/ojdbc6.jar

    I changed my file datamodeler.conf, DM rebooted and now is no longer an error when I try to use the Oracle JDBC drive.

  • With regard to the migration of the Oracle database to MS SQL

    Hi all

    In my application, oracle is the existing database. We need to migrate from Oracle database to MS SQL.
    We need procedure is as below
    1 export data from Oracle and keep it in a file. (.dmp)
    2 import data from MS SQL in the oracle export file.

    and vice versa from MS SQL to Oracle.

    My question is - it is possible to import the .bmp (oracle export data) in MS SQL.

    Please clarify for me.

    There are two options to get the data from Oracle to MS SQL.
    The simplest is to create a linked in MS SQL to Oracle server and copy the data with a query like select * in oracle.schema.table my_mssqlTable; via the linked server.
    Some data types will not be supported.
    That's an instant copy.

    If you need a fence at real-time replication, you can use replication MS (I would not recommend because it creates triggers on the Oracle tables), or you can use GoldenGate or DataCurrents or other replication products.

  • Access to the database/schema to another server...

    Hello - I have a need that will require me to access additional information about a schema on a server that is different from what my APEX installation runs on (IE 3rd part of the data that is not part of the inherent schema that accesses the APEX)...

    My APEX server running version 3.2.1.00.11 on top of oracle 11 g Enterprise Edition Release 11.1.0.7.0 - 64 bit Production. We will call this server "A".

    The target server is currently an Oracle server, but will eventually migrate to a Teradata installation (no - I have no word to say in the matter!). We will call this server 'B '. No idea what versions in both cases.

    I understand that if I needed to access different patterns on the same server (IE Server A) it would be easy enough to do using grant statements.

    Also, I understand that to access a schema on server B, I could use a DBLink to do.

    My questions are:

    (1) oracle allow a DBLink to teradata? I found the following thread that seems to indicate that it is possible (or at least used to be - don't know if it's still a valid configuration) Re: Teradata to Oracle connection

    (2) is there another way to make this available external data source? A tech in our team 'Architecture COMPUTING"said DBLinks are not recommended or a best practice. He proposed adding the data source 'directly '?

    This thread (add multiple schemas in a workspace seems to speak of adding multiple schemas to a workspace, but I do not have access to this part of our oracle server (I'm only a workspace administration).)

    (3) if I create a view that accesses the tables through the DBLink to Server B when it comes to Oracle, and then update the DBLink to point to the new teradata server during the migration happens - it will break anything within the APEX?

    My hypothesis is that the table names are the same concerns only APEX that the view is valid and not what fuels the view.


    The rationale against using DBLinks gave me was that "it is not sensible for APEX down to the oracle database (its native underlying server/schema) to cross to another server and return to the oracle database that then went up to the APEX." It makes more sense for APEX to go straight to the other source of data. Normally, I would say that they (Apex/infrastructure) are the same server so it does not really matter that he might have to go through additional 1 'service' or 'interface', but this area is not my specialty.

    Also - I think that technically speaking our APEX service is already separated from its native schema/data on different servers (for load balancing), so in this case really maybe a middle Server Getting (IE Server APEX A-> native schema/data of the server where the DBLink might be-> server B) do an unnecessary extra jump (APEX Server A)-> server B. Note : I am sure that our architect does not know that this is the case, then it is not part of its raison d'etre.

    Thoughts?

    Thank you!
    Jim

    (1) there is a wide variety of databases that you can access from Oracle using the links to the db. The main purpose of a db link must provide connectivity between databases that are not consistent with the use of a certain type of driver or translator. Some databases provide native connectivity with other thing than their own products.

    (2) I would ask another dba from this source that he or she recommends, and if he or she has all the documentation. The long and short of it is (as I explained above) few providers of database provides native support for other database engines, which is needed for the kind of "direct connection" implies that person. My suspicion is that this person is an ODBC user and is equivalent to the use of ODBC drivers with "direct connection", which is far from accurate. ODBC only provides a generic interface to a database, at the expense of speed, functionality and efficiency thanks to the translation of the command and overhead.

    (3) oracle generally doesn't care about the back end of a connection to a different database and neither does APEX. As long as you can build a database to the database in question, shouldn't you have any problems ask these data, although only in a reduced performance due to air travel, networking, drivers, etc.

    Really, APEX is intended to be run against and integrates better with Oracle databases. If your main data is on another platform, APEX may not be the best solution for your needs.

  • How to start an Oracle database

    Hello everyone,

    I'm running windows server 2003 standard edition OS on my computer in the C drive in the c:\Windows folder.

    I installed Oracle 10g 10.1.0 product on my computer in the E:\Oracle10g drive.
    My Oracle database was stored in E:\ORADATA. His name is orcl database by default. My OS was accident due to a virus attack.

    I installed Windows Server 2003 Standard Edition on the C drive in the c:\WIN2K3 folder. I have not format drive C at all.

    I installed Oracle 10 g Release 10.1.0 in drive C C:\ORACLE folder. New name of the database is SMS which is stored in C:\oracle\product\10.1.0\oradata.

    How can I import my data from ORCL database that is stored in E:\ORADATA\ORCL DRIVE? Is it possible? Please help me.


    with respect,
    RLS ROULIN
    [email protected]

    [email protected] wrote:
    Hello everyone,
    How can I import my data from ORCL database that is stored in E:\ORADATA\ORCL DRIVE? Is it possible? Please help me.

    Export of database ORCL with the [export datapump | http://download.oracle.com/docs/cd/B14117_01/server.101/b10825/dp_export.htm#g1022624], then import the export dump file in the database on drive C with the [import datapump | http://download.oracle.com/docs/cd/B14117_01/server.101/b10825/dp_import.htm#g1025464]

  • DB link from oracle to sql server

    Hi all

    Which is the easiest way to connect to sql server from oracle database? Require a separate permit? It's 11.1.0.7 on RHEL 5.7, 64 bit.

    Kind regards

    Vinod

    Hello

    There is a simple example using the 'free' method described here Ed

    http://dbaharrison.blogspot.co.UK/2014/12/Oracle-talking-to-SQL-Server-over.html

    See you soon,.

    Rich

  • NoSuchMethodError setStringAtName in Oracle Database 11g Release 2

    Hi, I'm using Oracle Database 11 g Release 2 on Windows 7 Ultimate 32 bit.

    I use Oracle SQL Developer 4.1.0.

    In SQL Developer, the connection is established and is successfully tested, but when I click on connect, I get the error:

    java.lang.NoSuchMethodError: oracle.jdbc.OracleCallableStatement.setStringAtName (Ljava/lang/String; Ljava/lang/String ;) V


    The complete exception message:


    java.lang.NoSuchMethodError: oracle.jdbc.OracleCallableStatement.setStringAtName (Ljava/lang/String; Ljava/lang/String ;) V to oracle.dbtools.db.OracleUtil.checkAccess(OracleUtil.java:400) to oracle.dbtools.db.DBUtil.hasAccess(DBUtil.java:1887) to oracle.dbtools.raptor.query.QueryUtils.checkNonOracleAccess(QueryUtils.java:589) to oracle.dbtools.raptor.query.QueryUtils.getQuery(QueryUtils.java:399) to oracle.dbtools.raptor.query.QueryUtils.getQuery(QueryUtils.java:250) to oracle.dbtools.raptor.query.ObjectQueries.getQuery(ObjectQueries.java:43) to oracle.dbtools.raptor.navigator.db.xml.XmlObjectFactory.createFolderInstance(XmlObjectFactory.java:60) to oracle.dbtools.raptor.navigator.db.xml.XmlTypeOwnerInstance.listTypeFolders(XmlTypeOwnerInstance.java:93) to oracle.dbtools.raptor.navigator.db.impl.TypeContainerTreeNode.loadTypeFolders(TypeContainerTreeNode.java:111) to oracle.dbtools.raptor.navigator.db.impl.DatabaseTreeNode$ LoadTask.doWork (DatabaseTreeNode.java:183) to oracle.dbtools.raptor.navigator.db.impl.DatabaseTreeNode$ (DatabaseTreeNode.java:112) LoadTask.doWork to oracle.dbtools.raptor.backgroundTask.RaptorTask.call(RaptorTask.java:193) to java.util.concurrent.FutureTask.run(FutureTask.java:266) to oracle.dbtools.raptor.backgroundTask.RaptorTaskManager$ (RaptorTaskManager.java:621) RaptorFutureTask.run to java.util.concurrent.Executors$ (Executors.java:511) RunnableAdapter.call to java.util.concurrent.FutureTask.run(FutureTask.java:266) to java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142) to java.util.concurrent.ThreadPoolExecutor$ Worker.run (ThreadPoolExecutor.java:617) at java.lang.Thread.run(Thread.java:745)


    Yesterday I could connect fine, but today I got this error.

    How can I solve this? Thank you...

    Developer SQL resides on the same system as Oracle DB.

    What has changed is that I placed the files ojdbc6.jar and ojdbc14.jar is in F:\Program Files\Java\jdk1.8.0_45\jre\lib\ext and F:\Program Files\Java\jre1.8.0_45\lib\ext because I work with a Web site of jsp that access the oracle database.

    The problem is that ojdbc14.jar is is for Oracle Database 10g Release 2 and I work with is 11g, so I left the ojdbc6.jar in both paths and now Developer SQL works, thank you very much!

  • Difference between Oracle database and SQL or SQL Developer +?

    Hello
    I am very very new to Oracle... Only yesterday I installed Oracle 11 G for learing... I found to create an Oracle database

    Oracle Db11gHome1 = > Configuration and Migration Tools = > Database Configuration Wizard
    ... blah... blah... blah... Success... I created...

    But I found the menus

    Oracle Db11gHome1 = > application development = > SQL Developer
    Oracle Db11gHome1 = > = application development > SQL Plus

    And so I get confused... I know SQLSERVER 2008... etc... to create databases... So the above said two is for what purpose?
    Anyone can show me a route for this spirit of quarrels?

    Thank you

    Hello

    Welcome to the world of Oracle.

    SQL Developer: http://www.oracle.com/technetwork/developer-tools/sql-developer/what-is-sqldev-093866.html

    SQl more: http://docs.oracle.com/cd/B13789_01/server.101/b12170/qstart.htm

    These docs will give an initial advance for these tools.

    Something in common between these two tools is: both are used to access the Oracle database.

    Thank you
    Navneet

  • How to connect Microsoft excel to oracle database?

    version Oracle 11.2.0.3
    version of solaris 10 operating system
    Microsoft excel 2007

    any body can help me how to connect excel, oracle database, I can write my query in excel, and retrieve data from oracle database and show in excel sheet or I can write a query to insert data to the oracle database.

    Hello

    I never tried, but why not try so if you succeeded you will come to know otherwise you would need still oracle client to connect to the oracle database that is located on the other server or if you do not have to install on your local machine that you cannot connect to the oracle database oracle client.

  • Oracle Database 11 g: Introduction to SQL - what his Code review?

    I have read from Oracle Database 11 g: SQL Fundamentals I and book II. Should what test I take?

    user11164565 wrote:
    I have read from Oracle Database 11 g: SQL Fundamentals I and book II. Should what test I take?

    Hmmm, I know, that there is no such book text... which is its ISBN number?

    Also reading is not enough, you must be practiced.

    Please read confirm you have read the announcements forum especially the road you choose [http://forums.oracle.com/forums/ann.jspa?annID=1122]

    Are also studying the certification website, [www.oracle.com/education/certification]... reviews-list all reviews... and drill on those which appear to be relevant.

  • SOS! -Error to load data from Oracle 11 g to Essbase using ODI

    Hi all.

    I want to load data from oracle database to essbase using ODI.
    I have set up correctly the Hyperion essbase physical and logical topology manager and got the structure ESSBASE BASIC app DEMO.
    The problem is.
    1. when I try see data right click on the table of essbase.
    va.sql.SQLException: driver must be specified
    at com.sunopsis.sql.SnpsConnection.a (SnpsConnection.java)
    at com.sunopsis.sql.SnpsConnection.testConnection (SnpsConnection.java)
    at com.sunopsis.sql.SnpsConnection.testConnection (SnpsConnection.java)
    at com.sunopsis.graphical.frame.b.jc.bE (jc.java)
    at com.sunopsis.graphical.frame.bo.bA (bo.java)
    at com.sunopsis.graphical.frame.b.ja.dl (ja.java)
    to com.sunopsis.graphical.frame.b.ja. < init > (ja.java)
    to com.sunopsis.graphical.frame.b.jc. < init > (jc.java)
    I got the answer of partisan Oracle it's ok, just omit it. The second problem will appear.
    2 create an interface between the oracle and essbase database, click on the option ' staging of deffirent from the area of the "(ce qui signifie que la mise en scène est créé à la base de données oracle) target, and using IKM SQL for Hyperion Essbase (metadata), run this interface".

    org.apache.bsf.BSFException: exception of Jython:
    Traceback (innermost last):
    "< String >" file, line 61, in there?
    com.hyperion.odi.essbase.ODIEssbaseException: invalid value specified [RULES_FILE] for the load option [null]

    at com.hyperion.odi.essbase.ODIEssbaseMetaWriter.validateLoadOptions (unknown Source)

    at com.hyperion.odi.essbase.AbstractEssbaseWriter.beginLoad (unknown Source)

    at sun.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)

    at sun.reflect.NativeMethodAccessorImpl.invoke (unknown Source)

    at sun.reflect.DelegatingMethodAccessorImpl.invoke (unknown Source)

    at java.lang.reflect.Method.invoke (unknown Source)

    at org.python.core.PyReflectedFunction.__call__ (PyReflectedFunction.java)

    at org.python.core.PyMethod.__call__ (PyMethod.java)

    at org.python.core.PyObject.__call__ (PyObject.java)

    at org.python.core.PyInstance.invoke (PyInstance.java)

    to org.python.pycode._pyx1.f$ 0 (< string >: 61)

    to org.python.pycode._pyx1.call_function (< string >)

    at org.python.core.PyTableCode.call (PyTableCode.java)

    at org.python.core.PyCode.call (PyCode.java)

    at org.python.core.Py.runCode (Py.java)

    at org.python.core.Py.exec (Py.java)



    I am very confused by it. Someone give me a solution or other docs.

    Ethan.

    Hello

    You say that you are loading, but you chose the KM for the loading of metadata?
    If you load metadata then you must provide a rules file, if you are loading and then choose the KM - IKM SQL for Hyperion Essbase (DATA)

    Ok?

    See you soon

    John
    http://John-Goodwin.blogspot.com/

  • Importing data from access in Oracle Forms by form 10g

    Gentlemen.
    How can I import the Access file data into Oracle tables.
    I have tables in access about 10 how it can be imported into oracle with the same data structure.
    Thanks in advance

    If you use a form 4.5 so you can use ODBC to create a data source name
    and use the connection with odbc as
    Logon('username@ODBC:dsnName','password');
    then
    execute_query; to get the access data;
    then disconnection;
    and logon ('oracleuser @ConnectinogString ',' password');
    then use
    commit;
    your entire data will be copied to your oracle database.

Maybe you are looking for