Publish with Oracle distributed Document Capture in table update

Hi all
I installed ODDC and configured with Oracle 11 g 2 for the validation of the document.
I have table with 4 fields IE id, the c_number, the content, the mime_type. I save the image on content than the blob data type.
When I import and send the document to WebCapture screen I get document send successfully. But the data are not engaging in the database table.

The pak file are genereated in "Document / Capture/pages/ClientAcces.

How I do commit these database files?

I'm missing something in the configuration? Please suggest.

Thank you
Nr

Edited by: DP on July 30, 2012 05:50

Edited by: DP on July 30, 2012 07:54

It is unlikely that distributed Document Capture Oracle (ecNetService) Service did not start because it is responsible for the treatment of pak file and it does not start automatically after installation.

Kind regards
Boris

Published by: tombo on 2012.08.01 04:49

Tags: Fusion Middleware

Similar Questions

  • Oracle distributed Document Capture to install - schema of database initialization

    Hello

    I have a question about the installation and configuration of distributed Capture of Document Oracle. In the installation guide http://docs.oracle.com/cd/E10316_01/capture/oddc_install.pdf, I get confused at the point 3.2.1.10. This is the point where we need to initialize the capture of Oracle database. The document says that this operation will erase all data in the database. They mean the schema/user or set the base which contains the schema captures?

    My logic tells me it was impossible to the entire base, but I need to be sure. We have a database of other patterns as well as I don't want to lose. Looking at the "capture_ORACLE.sql" file that is used to create the capture schema objects, it doesn't delete the tables used as the basis of capture data and recreates both indices and some DML, but nothing more.

    I need be sure, there is nothing else that would be likely to modify the database in which case other patterns on the database.

    Could someone please shed some light on this subject?

    Concerning
    Armand

    He sure initialize the Capture database because it affects only the own schema. I did this several times on the database containing the other schema (WebCenter) and he has never touched anything else.

    Kind regards
    Boris

  • Integrate Oracle BI Publisher with Oracle Form [authentication]

    Report & Oracle FMW 11g R2 (11.1.2) form

    Oracle BI Publisher 11.1.1.6

    Oracle Database 11 g Release 11.2.0.4.0 - 64 bit Production


    With the help of the link below, I want to integrate Oracle BI Publisher with Oracle form

    http://www.Pitss.EU/fileadmin/Pitss/images/de/White_Papers/White_paper_BIPublisher_WebServices.PDF

    But I need to know one thing, as mention in link, weblogic user/pwd in the java code for authentication with BI Publisher, above

    My Question here, what is the best way to manage authentication with BI Publisher while integrating with Oracle Form?

    I think, in a document, just to mention for example,

    It will not be advisable if keeping the user weblogic/pwd in Java code, at the end of this java code becomes a jar file and deployed to the server and then downloaded to the client computer. ensure that completely and the values are hardcoded, if the password change question once again, this means having user/pwd in jar will never be a good solution.

    For a quick overview, I'd do it keep advice the user/pwd in db in encrypted form and access to oracle form with decrypted and pass the value in the api ReportServiceClient.CallRunReport)

    If you feel, every time you need to access user/pwd of db and decypte it, that I advise you here, get user/pwd when set in the context of db and out of context with decrypted.

    Another may be the best idea.

  • Is it possible: use BI Publisher with Oracle Express?

    I'm a new user, trying to learn BI Publisher (standalone).

    I installed Pulisher BI OK. I installed Oracle database Express
    (for Windows) on the same PC with no problem.

    Where/how do I connect / relate the two?
    I would use BEEP with the HR schema.

    Thank you!

    Tried the same thing and Yes operate. Used

    Database driver class: oracle.jdbc.OracleDriver
    Connection string: jdbc:oracle:thin:@localhost:1521:XE

    Hope that helps.

  • BI Publisher with Oracle Forms & license report

    Dear friends,

    Can I use Oracle BI Publisher, I own the license for Oracle and reports 11g release 1 license. If Yes, then
    which version can I use?

    Thanks and greetings
    Amrani

    BI Publisher is a different product and requires a separate license.

  • Update a table with a query that uses the table updated

    Hi This is my request. It's a mistake, but I hope that the basic idea may carry out. Cost_before_Decision is a column by using an alter table statement, I added:
    UPDATE fraud_nov_14_final
    SET Cost_before_Decision = (select Cost_Prior 
                                from    fraud_nov_14_final ff
                                      ,(select cla_case_no, sum(case when decline = 1 or decline = 2  
                                                                  THEN (nvl(total_cost_adj_old,0) + nvl(decline_estimate,0)) 
                                                                  ELSE Total_Cost 
                                                                  END) Cost_Prior
                                        from reporting.ci_final@test
                                            group by cla_case_no) z
                                                    where ff.cla_case_no = z.cla_case_no)
    Error I get is:
    Error report:
    SQL error: ORA-01427: einreihig subquery returns multiple rows
    01427 00000 - "einreihig subquery returns several lines.

    Thanks in advance for your help:

    Banner:
    Oracle Database 11 g Release 11.2.0.2.0 - 64 bit Production
    PL/SQL Release 11.2.0.2.0 - Production
    "CORE 11.2.0.2.0 Production."
    AMT for Linux: Version 11.2.0.2.0 - Production
    NLSRTL Version 11.2.0.2.0 - Production

    Try this

    update fraud_nov_14_final a
       set cost_before_decision = (
                        select cost_prior
                          from (
                             select cla_case_no, sum(case when decline = 1 or decline = 2  then (nvl(total_cost_adj_old,0) + nvl(decline_estimate,0)) else total_cost end) cost_prior
                               from reporting.ci_final@test
                             group by cla_case_no
                               ) b
                                   where a.cls_case_no = b.cls_case_no
                         )
    
  • is that we can transform a GML table with oracle 11g?

    I have a project with GML and this is the first time that I work with.
    I just need to know if I can transform a normal table with oracle of GML.

    I found that we can do this with xml using the simple features sql example:

    SQL:
    SELECT XMLElement (name 'Department',
    XMLAttributes (deptno),
    XMLAgg (XMLElement (name"employee", ename))) .getStringVal () as a RESULT
    FROM scott.emp
    GROUP BY deptno;

    result:
    < Department deptno '34' = >
    ename < employee > < / employee >
    < / Department >

    < Department deptno = "35" >
    ename1 < employee > < / employee >
    < / Department >...

    We can do something like this with oracle11g for GML instead of XML (when we have spatial data).

    I hope that you have the answer or a reference that can help.
    Thank you
    Best regards

    Hi, -.

    We have the following conversion functions of GML and KML to/from SDO_GEOMETRY.
    We both support GML2 and GML 3.1.1:

    In 11.1.0.7, you will find the following functions:

    SDO_UTIL. FROM_GML311GEOMETRY: Converts a fragment of geography markup language (GML 3.1.1) a spatial geometry.
    SDO_UTIL. FROM_GMLGEOMETRY: Converts a fragment of geography markup language (GML 2.0) a spatial geometry.
    SDO_UTIL. FROM_KMLGEOMETRY: Converts a KML (Keyhole Markup Language) of a Spatial geometry object document.

    SDO_UTIL. TO_GML311GEOMETRY: Converts an object of spatial geometry to a fragment of language (GML version 3.1.1) geography markup based on the geometry types defined in the schema geometry.xsd Open GIS Consortium document.
    SDO_UTIL. TO_GMLGEOMETRY: Converts an object of spatial geometry a geography markup language (GML 2.0) fragment based on the geometry types defined in the schema geometry.xsd Open GIS Consortium document.
    SDO_UTIL. TO_KMLGEOMETRY: Converts a Spatial geometry object to a KML (Keyhole Markup Language) document.

    See also User Guide Pro Oracle Spatial and Oracle Spatial for book of 11g Oracle database for more details and examples.

    Please let us know if you have any other questions. We will be happy to help you.

    I hope this helps.
    Best regards
    Baris

  • After replacement of the VO, "any document" does not begin with "/ oracle.

    Hi all

    I recently tried a substitution of VO and executing the command import into command prompt, see it the following:

    C:\ > C:\p9879989_R12_GENERIC\jdevbin\oaext\bin\JPXIMPORT C:\p9879989_R12_GENERIC\jdevhome\jdev\myclasses\psu.jpx - apps-password appsdev2 username - dbconnection ' (DESCRIPTION = (ADDRESS = (PROTOCOL = TCP)(HOST=oradbdevsna01f.mascorp.com) (PORT = 1521)) (CONNECT_DATA = (SID = DEV2))) ".

    Any document: / icx/por/wf/server/customizations/site/0/ReqLinesNotificationsVO
    Import completed successfully

    In Jdeveloper, I did ensure that the substitution I do is oracle/apps/icx/por/wf/Server/ReqLinesNotificationsVO with the new VO scope: xxmas/oracle/apps/icx/por/wf/Server/XXMASReqLinesNotificationsVO

    If correct any Document as mentioned above, he should always start with "/ oracle/apps/icx/por/wf/Server/customizations/site/0/ReqLinesNotificationsVO. Can anyone explain it please my why it happens? Your response is greatly appreciated

    Thank you
    Anand

    Some general troubleshooting tips:

    1. open the jpx under my projects with Notepad and check if the paths are generated correctly.
    2. check your project settings and substituions once more.
    3. restart jdeveloper and then double-checking the substitutions.
    4 make sure to save all the files once you create replace and before importing.

    Thank you
    Srini

  • export table from oracle 10g with oracle 8i exp utlity

    Hello

    I export table from oracle 10g with oracle 8i exp the binaries:
    bash-2.05$ exp pin/pin file=prakash.dmp tables=prakash@APPSDB
    
    Export: Release 8.1.7.0.0 - Production on Tue Aug 4 09:58:18 2009
    
    (c) Copyright 2000 Oracle Corporation.  All rights reserved.
    
    
    Connected to: Oracle8i Enterprise Edition Release 8.1.7.0.0 - 64bit Production
    With the Partitioning option
    JServer Release 8.1.7.0.0 - 64bit Production
    Export done in UTF8 character set and UTF8 NCHAR character set
    
    About to export specified tables via Conventional Path ...
    EXP-00011: PIN.PRAKASH@APPSDB does not exist
    Export terminated successfully with warnings.
    I can't please inputs appreciated.

    axis/axis here is the user and pwd to oracle 8i
    Prakash is the name of a table in oracle 10g

    appsdb is the link of database

    Thank you

    Prakash GR

    axis/axis here is the user and pwd to oracle 8i

    Prakash is the name of a table in oracle 10g >

    To export the database 10g PRAKASH table, use the 8i export utility.

    log tables = prakash.log file = prakash.dmp exp = feedback = 100000 PRAKASH

    Who is the owner of the table? You have the TNS entry for the 10g database in your NET80 folder. If this isn't the case, then put an entry in there. Then, when you are prompted for the user name

    username:newcolsys@tns_alias/password

    HTH
    Anand

  • Publish with the help of modernization 11.1 DB Oracle dbua

    My machine is Solaris system, and it has Oracle10.1, Oracle10.2 and Oracle11.1

    This is a test box, so I have no problem down and re-create databases.

    My Oracle111 installation has ORACLE_HOME as/oracle/oracle111

    When I load DBUA, I see the 101, 102 dB, and there are 2 x 111 DBs. These have the bad Oracle home. It is listed as /oracle111/product/11.1.0/db_1

    I deleted the DB, fired up dbua, but that there is always an available database. I've recreated my 111 DB and it reappeared, always with the wrong HOUSE.

    IM quite a novice with Oracle DB, so im wondering how to solve this problem of HOSPITALITY, or drop the two entries and recreate one with the right home. FYI when I deleted the 111 DB, it there was only a single DB available to remove.

    bash-3. $00 env | grep-i oracle
    ORACLE_SID = DB111
    TNS_ADMIN = / oracle/oracle111/network/admin
    PATH = / oracle/oracle111/bin: / usr/bin:
    MAIL = / var/mail/oracle
    PWD = / opt/home/oracle
    HOME = / home/oracle
    LOGNAME = oracle
    ORACLE_HOME = / oracle/oracle111

    Hello

    All oracle entries will be exist in the oratab file, you need to update. Just the entries comment that does not exist.

    Oratab location:

    /var/opt/oracle
    

    Thank you
    A H E E R X

  • BI Publisher with Active Directory - slow connection

    Hello, I was wondering if anyone had to set up BI Publisher with Active directory. We are on 11.1.1.1.7 OBIEE - integrated with Active Directory. It takes about 40-50 seconds to connect on:

    http://bnrbidevapp1.es.gwu.edu:9704 / xmlpserver


    We have a different BEEP workigng insanance, they are also connected to the same ad and the connection is instant. What I can adjust? Checked memory and RAM on the system, doubled the RAM, so its double the system that has instant access. What else can I check? Thank you!

    This followed and it is resolved:

    http://www.peakindicators.com/files/document/33/Oracle%20bi%2011g%20-%20active%20directory%20authentication.PDF

  • apex 4.0 with oracle 11g ee mail

    Hello

    I spent when you work with apex 3 I could work with apex mailsend very nice.
    Apex 4.0 with oracle 11g ee, I'm not able to send emails any more.

    Last error message in the queue is:

    ORA-29279: permanent SMTP error: 550 via this server without authentication.
    the smtp server has not been changed, the code is very well

    How can I go further?

    Thank you very much
    Florin

    Florin,

    Make sure that you use the relevent to instructions for your version.
    If you use 4.0 - you probably want the same script - with use of APEX_040000 appropriate.

    See the steps of INSTALLATION of document ITEM.

    http://docs.Oracle.com/CD/E17556_01/doc/install.40/e15513/otn_install.htm#CBHBABCC

    -Make sure that you don't drop the former users of apex framework before update or remove them from the ACL. It can cause you problems.

    -Tim St.

    P.S. Take a minute to update your profile so that your name is clear.

    Published by: Tim St. H., December 11, 2012 16:54

  • Interview with numerous Subselects on the same table

    Hello

    Please consider the example below (Oracle 11 g):
    create TABLE test1 (order_id number, CODE VARCHAR2(10), VALUE NUMBER);
    
    insert into test1 VALUES (1, 'A', 100);
    insert into test1 VALUES (1, 'B', 200);
    insert into test1 VALUES (1, 'C', 300);
    insert into test1 VALUES (1, 'D', 400);
    insert into test1 VALUES (2, 'A', 10);
    insert into test1 VALUES (2, 'B', 20);
    
    SELECT order_id,
           CODE,
           VALUE,
           (SELECT VALUE FROM test1 t1
           WHERE t1.order_id = t.order_id
           AND   t1.code = 'B') b_Value,
           (SELECT SUM(VALUE)/COUNT(*) FROM test1 t1
           WHERE t1.order_id = t.order_id
           AND   t1.code IN ('C', 'D')) cd_Value,
           (SELECT COUNT(*) FROM test1 t1
           WHERE t1.order_id = t.order_id
           AND   t1.code IN ('C', 'D')) cd_qty
    FROM   TEST1 t
    WHERE  CODE = 'A';
    In my case the real life, I do not have 3 but dozens of columns in the subquery like those. The performance is OK, but I was wondering if there was a better way with respect to performance and maintainability to write this query.

    I thought in the WITH clause, but did not see how it could help a lot.

    Please note that some subqueries may be more complex than just by lifting a column, as in the cd_value/cd_qty column.

    Any suggestions?

    Thank you
    Luis

    Simpler, but will go for two table scans. You can use outer joins according to your requirement.

    select t1.order_id,
           t1.CODE,
           t1.VALUE,
           max(decode(t2.code,'B',t2.value)) b_value,
           sum(decode(t2.code,'C',t2.value,'D',t2.value,0))/nullif(sum(decode(t2.code,'C',1,'D',1,0)),0)  cd_value,
           sum(decode(t2.code,'C',1,'D',1,0))  cd_qty
    from TEST1 t1,test1 t2
    where t1.CODE = 'A'
    and t1.ORDER_ID = t2.order_id
    group by t1.order_id,
           t1.CODE,
           t1.VALUE
    

    Published by: JAC on February 7, 2012 11:54

  • Merge the XML document in a table

    Hello
    I want to merge some of the values of an xml document in a table "Project_Table".

    CREATE TABLE Project_Table
    (
    TASK_ID NUMBER (15),
    TASK_NAME VARCHAR2 (100 BYTE),
    START_DATE DATE,
    )

    I am using the following procedure, that I adapted from another post. It inserts null values, I think because I'm not showing the nodes correctly.

    DECLARE
    BFILE v_bfile: = BFILENAME ("'DTEMP","test.xml");
    v_clob CLOB.
    BEGIN
    -Create directory DTEMP as "C:\TEMP";
    -grant read the < schema > DTEMP directory;

    DBMS_LOB.CREATETEMPORARY (v_clob, TRUE);
    DBMS_LOB. OPEN (v_bfile, DBMS_LOB.lob_readonly);
    DBMS_LOB. LoadFromFile (v_clob, v_bfile, DBMS_LOB.lobmaxsize);
    Dbms_output.put_line (v_clob);
    MERGE IN project_table t
    USING (SELECT TO_NUMBER (EXTRACTVALUE (VALUE (x), ' / task ')) task_id,)
    To_date (EXTRACTVALUE (value (x), "/ start"), 'DD-MM-YYYY') start_date,
    EXTRACTVALUE (value (x), "/ name") TaskName
    (SELECT XMLTYPE (v_clob) XML
    THE DOUBLE).
    TABLE (XMLSEQUENCE (EXTRACT (xml, ' / project'))) x) r
    WE (t.task_id = r.task_id)
    WHEN MATCHED THEN
    UPDATE
    SET t.start_date = r.start_date, t.task_name = r.task_name
    WHEN NOT MATCHED THEN
    INSERT (task_id, start_date, taskname)
    VALUES (r.task_id, r.start_date, r.task_name);
    COMMIT;
    END;

    This is the document of test.xml.

    <? XML version = "1.0" encoding = "UTF-8"? >
    -name of the project 'ProjectName' company 'Company' webLink = = = "" view-date = '2009-12-14"see-index '0' = gantt-Divider-location = '300' resource-divider-card ="300"version ="2.0">"
    < description / >
    < zoom-view state = "default: 8" / >
    -<!
    ->
    -< calendars >
    -day-types >
    < day-type id = '0' / >
    < day-type id = "1" / >
    -< Calendar id = "1" name = "default" >
    < Sun weeks default = '0' LUN '0' = TEU = '0' kills = '0' game = '0' Fri '0' = Saturday = '0' / >
    < overloaded-day-types / >
    < days / >
    < / calendar >
    < / day-types >
    < / calendars >
    -task color = "#8cb6ce" >
    -< taskproperties >
    < taskproperty id = "tpd0" name = 'type' type = 'default' valuetype = "icon" / >
    < taskproperty id = "TDP1" name = 'priority' type = 'default' valuetype = "icon" / >
    < taskproperty id = "tpd2" name = 'info' type = 'default' valuetype = "icon" / >
    < taskproperty id = "tpd3" name = "name" type = 'default' valuetype = "text" / >
    < taskproperty id = "tpd4" name = "begindate" type = 'default' valuetype = "date" / >
    < taskproperty id = "tpd5" name = "enddate" type = 'default' valuetype = "date" / >
    < taskproperty id = "tpd6" name = "Duration" type = 'default' valuetype = "int" / >
    < taskproperty id = "tpd7" name = "completion" type = 'default' valuetype = "int" / >
    < taskproperty id = "tpd8" name = "Coordinator" type = 'default' valuetype = "text" / >
    < taskproperty id = "tpd9" name = "predecessorsr" type = "default" valuetype = "text" / >
    < / taskproperties >
    < job id = '0' name = 'TaskA"color =" #0099cc "form = meeting"0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0"="false"start ="2010-01-28"duration ="1"complete ="0"priority ="1"expand ="true"/ >
    < task id = "1" name = "TaskB" color = "#ff0000" form = meeting "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0" = "false" start = "2010-01-28" duration = "1" complete = "100" priority = "1" expand = "true" / >
    < job id = "2" name = 'Day' color = "#ff9933" form = meeting "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0" = "false" start = "2010-02-01" duration = "19" complete = "0" priority = "1" expand = "true" / >
    < job id = "3" name = "TaskD" color = "#ff0000" form = "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0" meeting = "false" start = "2010-02-01" duration = "32" full = "100" priority = "1" expand = "true" / >
    < job id = "4" name = "TaskE" color = "#66ff99" form = meeting "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0" = "false" start = "2010-02-01" duration = "67" complete = "0" priority = "1" expand = "true" / >
    < job id = "5" name = "TaskF" color = "#66ff99" form = meeting "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0" = "false" start = "2010-02-01" duration = "46" complete = "10" priority = "1" expand = "true" / >
    < job id = "6" name = "TaskG" color = "#00cccc" form = meeting "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0" = "false" start = "2010-03-15" duration = "30" complete = "0" priority = "1" expand = "true" / >
    < job id = "7" name = "TaskH" color = "#00cccc" form = meeting "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0" = "false" start = "2010-03-15" duration = "103" full '1' = '1' priority = expand = "true" / >
    < job id = "8" name = "TaskI" color = "#0000ff" form = meeting "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0" = "false" start = '2010-04-26' length = "11" complete = "0" priority = "1" expand = "true" / >
    < job id = '9' name = 'TaskJ"color =" #0000ff "form = meeting"0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0"="false"start = '2010-04-26' length ="11"complete ="0"priority ="1"expand ="true"/ >
    < job id = "10" name = "TaskK" color = "#000000" meeting = 'false' start time = "2010-07-12" = "65" full = "0" priority = "1" expand = "true" / >
    < / tasks >
    < resources / >
    < allowances / >
    < holiday / >
    -< taskdisplaycolumns >
    < displaycolumn property id = "tpd3" order = "0" width = "75" / >
    < displaycolumn property id = "tpd4" order = "1" width = "75" / >
    < displaycolumn property id = "tpd5" order = "2" width = "75" / >
    < displaycolumn property id = "tpd7" order = "3" width = "75" / >
    < / taskdisplaycolumns >
    < Previous / >
    < roles roles-name = "Default" / >
    < / project >

    Any ideas how to change the procedure, in order to merge the data in the xml document in the table?

    Thank you

    Hello

    Here's what you need in your USING clause:

    SELECT to_number(extractvalue(column_value, 'task/@id'))                as task_id,
           to_date(extractvalue(column_value, 'task/@start'), 'YYYY-MM-DD') as start_date,
           extractvalue(column_value, 'task/@name')                         as task_name
    FROM TABLE(
      XMLSEQUENCE(
        EXTRACT(xmltype(v_clob), '//task')
      )
    )
    

    Since you want nodes "task" request, just extract them directly. In addition, 'id', 'start', 'name' is attributes, you must access them with an '@'.

    You can also take a look at function XMLTABLE (which tends to replace construction TABLE (XMLSEQUENCE (...))):

    SELECT *
    FROM XMLTABLE(
     '//task'
     passing xmltype(v_clob)
     columns task_id    number(15)    path '/task/@id',
             start_date date          path '/task/@start',
             task_name  varchar2(100) path '/task/@name'
    )
    

    Edit: the XMLType constructor overload taking a BFILE type as an argument, so you can simplify the code a bit more:

    DECLARE
    
     v_xml XMLTYPE := XMLTYPE( BFILENAME('DTEMP', 'test.xml'), nls_charset_id('AL32UTF8') );
    
    BEGIN
    
    MERGE INTO project_table t
    USING (
      SELECT *
      FROM XMLTABLE(
       '//task'
       passing v_xml
       columns task_id    number(15)    path '/task/@id',
               start_date date          path '/task/@start',
               task_name  varchar2(100) path '/task/@name'
      )
    ) r
    ON (t.task_id = r.task_id)
    WHEN MATCHED THEN ...
    WHEN NOT MATCHED THEN ...
    ;
    
    ...
    
    END;
    

    HTH

    Published by: odie_63 on March 18, 2010 12:13

    Published by: odie_63 on March 18, 2010 12:15

  • Y at - it DB Oracle options that do not work with Oracle Apex

    Hi team,

    Y at - it options Oracle DB (DB audit vault wall and fire. HCC, advanced... Security etc) which will not work with Oracle Apex. Please let us know of a few documents if you

    Thank you kindly,

    Hi Rhine23,

    Rhine23 wrote:

    Y at - it options Oracle DB (DB audit vault wall and fire. HCC, advanced... Security etc) which will not work with Oracle Apex. Please let us know of a few documents if you

    It's the kind of question that can be answered with My Oracle Support | First Oracle Support or you can write to the APEX [email protected] about this application development team.

    Also, see the "Support" section at the end of the page Oracle Application Express - downloads.

    I hope this helps!

    Kind regards

    Kiran

Maybe you are looking for

  • What external storage disk is good?

    I want to buy I drive or external storage. I m from the India. Could someone recommend a good brand? I am owner of iPhone OS and iPad Air 2.

  • retina iMac with wireless mouse problems

    Since I use el capitan intermittently my wireless mouse goes crazy.  When you try to connect it begins to fill in the space. Make a stop down then its ok for a few days.  When connected to the photo and right click on a photo to go to the adjacent ph

  • Drivers updated on Satellite A660 - 11 m

    Hello guys My first buy Toshiba and it looks nice, but I found problems that I don't know how to deal with them Toshiba Bulletin Board asking me to install the new drivers many times who I am 1 by 1 at the end when I download the drivers after their

  • OXC0000428 error message at startup

    Original title: OXC0000428 My laptop keeps giving me this message: oxc0000428.  I can't for a repair on the laptop and start it later, but if I reboot, I get the error message sometimes 4 - 5 times before it goes to start the repair.  It is said some

  • BlackBerry Q10 Urgent Help - BBM not not opening

    Please I have updated my BBM on Q10 for the Version 10.3.3.68 and since then it has failed to open, I really need help on what to do.I run on OS 10.2.1.176