Use the java connector for the connector database?

Hello

I'm running on IOM 11gr2ps2 and need to use the database connector.  We installed the .net connector server to operate with the connector AD.

The Oracle of https://docs.oracle.com/cd/E22999_01/doc.111/e20277.pdf documentation gives us an option to either install a java connector server to work with the database connector or install the IOM database connector without using a java connector server.

The documentation says "execution of a connector on the connector server.

allows to transmit queries put in service and reconciliation through the firewall in a

as defined by the connector server.

As I already have a connector server .net for AD, I would lean towards the installation of the java connector server.  In this way architecture remains consistent.

Please, share your ideas.

Thank you

Khanh

Table of database connector uses the Java Connector server, or it can be deployed directly in the container of the IOM.  If you have problems jar or different library due to database formats, you can use the connector server to isolate libraries and do not have to figure out how to make IOM in collaboration with several libraries.  It can also take some of the load on your server to IOM for the transformation.  I suggest to use the server connector for the isolation of the newspaper as well.

-Kevin

Tags: Fusion Middleware

Similar Questions

  • 12 c upgrade using the same database

    What is the process for the improvement of the 11.1.1.7 to the current version of 12 c? We will not do a full inplace upgrade. We have new hardware for the 12 c application layer, but will use the same database. Our database is multiple to and do not miss having to deal with all the data duplication and dealing with the deltas.


    Is it possible to install 12 c on the new hardware, and then point the current patterns of these two instances? The upgrade of the patterns would be the only thing that needs to be done to allow the new instance to work with the new application?

    This is described in detail in Note 2058358.1 support

  • Send an e-mail using the Oracle database

    Hello!
    I installed Oracle 10 g (10.2.0.4) and I need to send an email using this database. In some notes said to run the following script, but in my case Oracle I don't have the owner "MailSender" or the AptMail function.

    Start
    dbms_output.put_line (mailsender. AptMail ('p_from', 'p_to', null, null, 'p_subject', null, 'p_smtp_host', null, null, null));
    END;

    Can someone explain if it is the right method to send an email using the Oracle database? If so how can I install it?

    Thank you
    Augusto

    Oracle 10.2 comes with UTL_MAIL package.

    Give it a read through the documentation. It's pretty simple to use.

  • the variable name of database query to SQL Server using the Oracle database link

    Hi all

    I have an ApEx 4.1 application running on x 64 (11.2.0.1) 11g on Windows Server 2008 x 64, and I have a few points of data integration with SQL (2005 and 2008) server that I need to create. I have configured the database with dg4odbc link and it works perfectly... I can run queries on the SQL Server database without any problem using the database link.

    However, there is a scenario where the SQL Server database name is dynamic, and I need to generate on the fly in a PL/SQL block and then use it in a query dynamic SQL (all this in the ApEx). It of wherever I meet problems... when I asked the default database that is based on the ODBC connection and I don't have to specify the name of the database, no problem. But when I need access to one of the several other databases by default, I received the error "invalid table.

    It works well:* (note that 'fv' is the name of my database link)

    v_query1: = "select 'Release Date' from dbo." Schedules@FV where dbo. Annexes. "" SchedID "=: calendar";
    EXECUTE IMMEDIATE v_query1 in rel_date using the grid.




    I then take this rel_date variable, convert a varchar2 (rel_date_char), then use it as the name of the database in the following query...


    _ It returns an error(error ORA-00903: invalid table name)

    v_query2: = "select"PARTNO": rel_date_char.dbo.ProdDetails@fv where 'SchedID' =: calendar and"UnitID"=: unit"
    and 'MasterKey' =: master and "ParentKey" =: parent';

    EXECUTE IMMEDIATE v_query2 in part_number using planning, master, parent unit;



    I also tried using all of the following conditions without result:

    "select"PARTNO"of" | : rel_date_char | '.dbo. ProdDetails@fv where 'SchedID '...
    "select"PARTNO"of" | rel_date_char | '.dbo. ProdDetails@fv where 'SchedID '...
    "select"PARTNO"of" | @rel_date_char | '.dbo. ProdDetails@fv where 'SchedID '...
    "select"PARTNO"in @rel_date_char.dbo.ProdDetails @fv where 'SchedID'..."


    Is it possible to do it in PL/SQL?

    Thanks for any help!
    -Ian C.

    Published by: 946532 on July 15, 2012 19:45

    Just did a test using passthrough:

    SQL > set serveroutput on
    SQL > declare
    2 val varchar2 (100);
    3 c whole;
    4 whole nr;
    5. start
    c: 6 = dbms_hs_passthrough.open_cursor@FREETDS_DG4ODBC_EMGTW_11_2_0_3;
    7 dbms_hs_passthrough.parse@FREETDS_DG4ODBC_EMGTW_11_2_0_3 (c, "select count (*) from EMP");
    8 LOOP
    9 nr: = DBMS_Hs_Passthrough.fetch_row@FREETDS_DG4ODBC_EMGTW_11_2_0_3 (c);
    10 output when nr = 0;
    11 dbms_hs_passthrough.get_value@FREETDS_DG4ODBC_EMGTW_11_2_0_3 (c, 1, val);
    12 dbms_output.put_line (val);
    13 end of loop;
    14 dbms_hs_passthrough.close_cursor@FREETDS_DG4ODBC_EMGTW_11_2_0_3 (c);
    15 end;
    16.
    24576

    PL/SQL procedure successfully completed.

    SQL > declare
    2 val varchar2 (100);
    3 c whole;
    4 whole nr;
    5. start
    c: 6 = dbms_hs_passthrough.open_cursor@FREETDS_DG4ODBC_EMGTW_11_2_0_3;
    7 dbms_hs_passthrough.parse@FREETDS_DG4ODBC_EMGTW_11_2_0_3 (c, ' select count (*) from dbo.) EMP');
    8 LOOP
    9 nr: = DBMS_Hs_Passthrough.fetch_row@FREETDS_DG4ODBC_EMGTW_11_2_0_3 (c);
    10 output when nr = 0;
    11 dbms_hs_passthrough.get_value@FREETDS_DG4ODBC_EMGTW_11_2_0_3 (c, 1, val);
    12 dbms_output.put_line (val);
    13 end of loop;
    14 dbms_hs_passthrough.close_cursor@FREETDS_DG4ODBC_EMGTW_11_2_0_3 (c);
    15 end;
    16.
    24576

    PL/SQL procedure successfully completed.

    So all 3 ways work for me.

    Published by: kgronau on July 23, 2012 10:08

    Now, using the variables to make the selection:

    SQL > declare
    2 val varchar2 (100);
    3 c whole;
    4 whole nr;
    5 tabname varchar2 (20): = 'EMP ';
    6 ownr varchar2 (20): = "dbo."
    7 dbname varchar2 (20): = "door";
    Start 8
    c: 9 = dbms_hs_passthrough.open_cursor@FREETDS_DG4ODBC_EMGTW_11_2_0_3;
    10 dbms_hs_passthrough.parse@FREETDS_DG4ODBC_EMGTW_11_2_0_3 (c, ' SELECT count (*) FROM ': dbname: '.) ' || ownr | '.'|| tabname | ") ;
    11 LOOP
    12 nr: = DBMS_Hs_Passthrough.fetch_row@FREETDS_DG4ODBC_EMGTW_11_2_0_3 (c);
    13 when the exit nr = 0;
    14 dbms_hs_passthrough.get_value@FREETDS_DG4ODBC_EMGTW_11_2_0_3 (c, 1, val);
    15 dbms_output.put_line (val);
    16 end loop;
    17 dbms_hs_passthrough.close_cursor@FREETDS_DG4ODBC_EMGTW_11_2_0_3 (c);
    18 end;
    19.
    24576

    PL/SQL procedure successfully completed.

    => instead of executing the statement using the "execute Immediate" we use the PASTHROUGH package to pass the statement to SQL Server.

    Published by: kgronau on July 23, 2012 10:10

  • Extended Analytics - reason not to use the HFM database as the destination

    Why can't use us the HFM database as the destination database to create patterns in Star using extended Analytics? How can we get data with metadata in tables exported using EA?

    As far as I know, export EA is a star that includes metadata and data schema format?
    You don't would not export it to your database of the HFM application as you would ideally keep it separate for analsys by services such as Essbase OLAP?
    Alternatively, you can also use Oracle Hyperion Essbase Analytics Link, which creates a permanent bridge in real-time between your HFM and Essbase applications.

  • Duplicate RMAN cloning using the database using the current database

    Hi all

    I am new bie, I want to clone my target database using the rman command 'DUPLICATE database OF ACTIVE DATABASE"new host.

    steps on google, I searched, but I got confused, I doubt if you need to install oracle rdbms softare on new host or not? and also should I copy all files (redo, control, datafiles) to the new host? kind LY help and tell me the steps to clone the database using rman.your help will be appreciated.

    Thank you.

    Kind regards.

    OS: RHEL 5.4

    DB: 11.2.0.3

    Hello

    Have you not through document link to Gavin at least. It's very simple steps. If you wait until other measures, then won't them.

    He had provided the demonstration, at least get in 'google' (you'll have so many links)

    The Oracle Dba Italian Blogger: how to clone an Oracle 11 g 2 home

    http://balaoracledba.com/2013/12/16/cloning-an-existing-Oracle11g-release-2-RDBMS-installation/

    Note: If you feel always complex, better skip the task itself.

    -Thank you

    Pavan Kumar N

  • Using the Access database in CS5?

    I'm incredibly frustrated. I have a simple database in Access, consisting of SSN, phone number, address, name, ID (primary key). I have a simple form with a select / / value of the option initially filled with the 'name' field, return the ID as value when picked up. I have a function in the header, called Onchange.

    In the Onchange function I can generate a successful

    "Select * where ID = '123'.

    now how can I apply to the Access database, a given record of return in a recordset that can now be dissected in the various fields which is then displayed on the screen?

    An example would be wonderful...

    Thank you!

    Ross

    I didn't watch the first example, but certainly the second example shows how to use Access in Dreamweaver, full screen. Just click on YouTube.

    Which brings me to ask why you use Access when MySQL is a much better option.

  • Oracle Instance crashes during the allocation of channels using the Oracle database backup Service

    I am running Oracle Version 11.2.0.3 on a 64 bit Windows Server 2008 SP 2 OS.  Today when I tried to allocate a channel for 'SBT_TAPE' my instance has crashed.  Everyone knows this?

    Set ORACLE_HOME=D:\app\oracle\product\11.2.0\dbhome_1\

    Set ORACLE_SID = CNFCRAC1

    Set SBT_LIBRARY=D:\app\oracle\product\11.2.0\dbhome_1\BIN\oraopc.dll

    Set OPC_PFILE=D:\app\oracle\product\11.2.0\dbhome_1\database\opccnfcrac1.ora

    RMAN > Connect target

    RMAN > run {}

    allocate channel t1 'SBT_TAPE' device type

    PARMS ' SBT_LIBRARY=D:\app\oracle\product\11.2.0\dbhome_1\BIN\oraopc.dll, ENV=OPC_PFILE=D:\app\oracle\product\11.2.0\dbhome_1\database\opccnfcrac1.ora)';

    }

    Windows Event Viewer:

    The failing application name: ORACLE. EXE, version 11.2.0.3

    Module failed name: oraopc.dll, version 12.1.0.0

    Exception code: 0xc0000005

    Offset: 0x00000000000249af

    ID of the process failed: 0 x 1510

    Failed application start tiem: 0x01d0eb098ecd2d2f

    The failing application path: d:\app\oracle\product\11.2.0\dbhome_1\bin\ORACLE. EXE

    Flaws Path E-mail: D:\app\oracle\product\11.2.0\dbhome_1\BIN\oraopc.dll

    I made sure that the PATH environment variable has the following entry.  D:\app\oracle\product\11.2.0\dbhome_1\BIN

    RAC1 Table of contents alerts journal:

    Fri Sep 11 09:04:23 2015

    Thread 1 Advanced to record the sequence 11277 (switch LGWR)

    Currently Journal # 3 seq # 11277 mem # 0: +REDO/cnfcrac/onlinelog/group_3.258.824214591

    Fri Sep 11 09:04:31 2015

    Archived journal 23067 extra for each sequence 1 11276 0x82a6e611 dest ID thread entry 1:

    Fri Sep 11 09:06:20 2015

    Reconfiguration began (old Inc. 16, new Inc. 18)

    List of instances:

    1 (myinst: 1)

    Fri Sep 11 09:06:44 2015

    Global Resource Directory frozen

    * death detected instance - invalid domain 0 = TRUE

    Restored communication channels

    Diffuse master hash resource bitmaps

    Blocks of non-local process cleaned

    Fri Sep 11 09:06:44 2015

    LMS 0: GCS shadows cancelled 0 1 closed, 0 Xw survived

    Fri Sep 11 09:06:44 2015

    Shadows GCS LMS 1: 1 cancelled, 1 closed, 0 Xw survived

    Set of master node info

    Subject to all requests for remote enqueue

    DWN-cvts replayed, questionable VALBLKs

    All enqueues grant awarded

    Post SMON start 1 IR pass

    Fri Sep 11 09:06:46 2015

    Instance recovery: looking for dead threads

    Beginning of thread 1 instance recovery

    Subject to all requests for remote-cache GCS

    Post SMON start 1 IR pass

    Fix write in SCM resources

    Contents of the journal of alerts 2 RAC

    Fri Sep 11 08:57:47 2015

    Archived journal 23064 extra for each sequence 2 11793 0x82a6e611 dest ID thread entry 1:

    Fri Sep 11 09:06:42 2015

    Starting ORACLE instance (normal)

    LICENSE_MAX_SESSION = 0

    LICENSE_SESSIONS_WARNING = 0

    Monitoring of normal startup parameters... I looked in the CRS, ORAAGENT, OCTSSD, and CRSD marbles, but I can't find anything that stands out as to what caused the end of abnomal, another of the communication between the two bodies has not responded within the specified time.

    -Jen

    Hi Jen,

    There is a known issue with Windows module. We are working on fixing it and the new module should be available soon. I'll update as soon as we release the fixed module.

    Sridhar

  • Captivate use a Java plugin for browsers and what happens when Java is progressively to our on our LMS SCORM course?

    Hi, I work with an LMS (called clarity) and our supplier has indicated that when the Java Web browsers plugins are disabled or are more supported come September 2015 (I think they are referring to Chrome for September 2015) that the any of our courses created with Adobe Captivate does more work because they rely on Java to transfer information from the courses in the LMS. Is that correct, and how can this be addressed? We have hundreds of courses created with Adobe Captivate® 5 and up to 8 Captivate, accessible via Internet Explorer, most of the time. All courses are SCORM compatible (1.2 and 2004). Thank you!

    Captivate uses JavaScript, not Java. All of the tutorials use JavaScript to interface with the LMS because it is not dependent on server and maintains the shareable part of SCORM intact.

    No worries.

  • Reading large data using the database connectivity

    Hello

    I use the Labview database connectivity toolkit to connect to my database sqlitev3 (I'm using ODBC). I just have to connect to the database (using the block of open_connection) and read all the values inside (using the select_data block). The problem is that my database is huge (about 2 GB), and I get this error:

    . VI NI_Database_API.lvlib:Rec FETCH Recordset Data (R)-> NI_Database_API.lvlibB Tools Select Data.vi-> real_web.vi-> real_web.vi.ProxyCallerADO error: 0x8007000E Exception occurred in provider: not enough memory is available to complete this operation. in .vi NI_Database_API.lvlib:Rec Fetch Recordset Data (R)-> NI_Database_API.lvlibB Tools Select Data.vi-> real_web.vi-> real_web.vi.ProxyCaller

    What should I do? It seems that he reads the data in the memory and it doesn't have enough space for it. When I read the data I want to write to a file.

    Read it in pieces. Write each piece to the file, and then repeat with the next segment. Try to read and process all data in one shot is not very practical and you found out will not work.

  • Can us refresh database using the recovery catalog?

    Hi all, I need update the dev of database using the prod database backup, we have TSM server and database of separate catalog for storing backups. No, my doubt is, we can update database dev using catalog, which has the backup of all info the prod

    In my previous organization, we used to copy the backup of the prod dev we restore and recover it in dev db. But in this organization, we have a TSM server that stores all backups of prod and dev.

    Please tell me we can update dev db using info catalogue simply and without copying backups of prod? If possible how?

    Thank you

    Harish

    user8596912 wrote:

    Yes I know that the content of the rman script.

    But we have not, so how can we be expected to comment on?

    My question is that the connection to the rman is good or bad?

    It would depend on the content of the script you do not think that we need to see.

    In the end, you can determine whether this is good or bad by testing.

    Because the rman is not connected directly to the target db prod.

    Have you read the link I gave you?

    I would limit for you: a database mirroring

    The docs in detail how to duplicate a database

    1 - active database

    2 - from a backup WITH a connection target (the database prod)

    3. from a backup WITHOUT a connection target (the database prod) but WITH a recovery catalog connection

    4 - from a backup WITHOUT connection AND connection catalog recovery target (the database prod)

    BTW, why you score your own messages as 'useful' to your own problem?

  • Business using the NoSQL in Oracle database application development

    Hello

    I followed the link given by Lai Re, to develop the application of Kvitter using the NoSQL database below. But there is no link to the code example in the blog below.

    Developing applications using the NoSQL of Oracle database

    Please help me with the link for the Code of the Kvitter Application.

    Thank you.

    Concerning

    Jean-Luc Reynaud

    Hi, Aymeric

    Here is the direct link to the source code for the sample program above. The link is also displayed under the programs section of demo/sample.

    HTH
    Anuj

  • Good way to use the concurrent data store

    Hello

    I'm developing a multithreaded C++ application that uses the C++ of Berkeley DB Library.

    In my case, I have several databases that I composed in a wooded area. It is important for me to use an environment because I need control over the cachesize parameter.

    I don't need no guarantee of transaction and have for most of the readings, so I decided to use the "simultaneous database.

    I first pre-fill all databases with a number of entries (configuration single-threaded phase) and then work on it at the same time (for most readings, but also insertions and deletions).

    I tried all kinds of different configurations, but I can't work without specifying DB_THREAD as a flag of the environment.

    I don't want to because then access all handles is synchronized sequentially according to the documentation:

    "... Note that the activation of this indicator will serialize calls to DB using the handle between the threads. If

    simultaneous scaling is important for your application, we recommend handles separate for each thread opening

    (and do not specify this indicator), rather than share handles between threads. "

    (Berkeley DB QAnywhere C++)

    So I tried to open the environment with the following indicators:

    DB_CREATE | DB_PRIVATE | DB_INIT_MPOOL | DB_INIT_CDB

    All data in this environment handles are open only with the DB_CREATE flag.

    So, since my understanding this same basic access handles need to be synchronized, I opened separate handles foreach database for each thread (opening the handles is still single-threaded).

    In my first approach, I have only made use of the object of global environment. Which does not work and gives the following during operations error message:

    DB_LOCK-> lock_put: Lock is no longer valid

    So I thought, since the same handle global env is passed to all handles separate DB, it is perhaps a race condition critical on the handful of approx.

    So in my next test, I opened also handles separate EPS in each thread (and db handles owned each).

    That does not produce an error in db, but now it seems that each thread sees its own version of the databases (I call it stat early in the life of each thread and he sees all of the empty dbs).

    What is the right way to use the concurrent data store? Each thread should really open his own set of db handles? What about the number of open handles env?

    PS: Without specifying that the DB_PRIVATE flag seems to do the job, but for performance reasons, I want all operations to perform in the cache and do not specify product DB_PRIVATE average of several writes to the disk for my scenario.

    Thanks a lot for your help.

    CD (simultaneous database) allows a single editor with multiple drives, access to the db at a given point in time.    The handle for the writer doesn't have to be shared with readers.   If you share the DB handle then calls are synchronized, but if each thread has its own handle DB then this is not the case.     Since you have an environment, DB_THREAD must be at the level of the environment.   This will allow the sharing of the environment handle.     This type of error "DB_LOCK-> lock_put: Lock is no longer valid" you can provide us your code so we can take a look.   Also what BDB version are you using?

  • How to use Flash recovery only for flashback database feature box

    I would use the area of flash recovery only for flashback database feature, which means, the flash recovery area will store only the flashback logs.

    I don't want to use this file system for all other files, such as files of archive log, backups, copies of control files, multiplex redo log, etc.

    is this possible? I want to use this function only for the flashback database option and therefore, I don't want to disturb any existing configuration in my database

    including backup jobs. It will also store the Archives of redo log files in the flash recovery area to use the flashback database feature?

    I can't certainly allow me to have a copy of the entire file system database as my DB size is more than the system recovery flash I have zone files.

    Thank you

    Delphine

    user13312943 wrote:

    Aman,

    I think I was not clear in my question. I'll try again

    My only requirement is to use the flashback database feature (or be prepared to use if necessary). I don't want to create a large file system to use the CRF to store all those files. Out of all the files are stored here a copy of the data files seems to consume more space. I see that these files are classified as transitional and permanent files. I agree with permanent files. I'm afraid that this file system can use more space if I store files of backup to disk. I want backups of databases to go to bands, not on the drive of FRA. Is this possible?

    Thanks for your response

    Okay, well in that case you can use RMAN and push the backups to tape drives. FLB newspapers would be stored on the FRA.

    Aman...

  • Installation of OBIEE without using the remote control.

    Hello


    I installs le OBIEE et will use the Oracle database, but will not use the RCU. I wonder if I need of some pre -requisite to create the schema?


    Is there any documentation with installation create RCU schemas without?


    Thank you.

    Hello

    Without the remote control will not work OBIEE 11g because the remote control allows you to install certain patterns in a database that are required by median Fusion as Oracle BI EE ware products. These schemas can be installed on any certified version of database such as Oracle, Microsoft SQL Server, or IBM DB2 database. There are patterns that are required by the main components of Oracle Fusion Middleware, although there are Oracle BI EE patterns requires, as the Planner, BI Publisher, for the new product of the scorecard.

    Note: You can install it without the remote, but we must approach below.

    SATYA RANKI OBIEE REDDY SOLUTIONS: How to install OBIEE 11 g without the remote

    Thank you

    Satya Reddy Ranki

Maybe you are looking for