XML dtabase option fro mrca 10.1.2.0.3

Hello,
I am trying to run the metadata repository creation assistant 10.1.2.0.3 against a 10.2.0.2.0 database.
I get the following error:
The Oracle XML Database option of the database is not configured. Please enable Oracle XML Database option and try again.
The XDK public synonyms is not found. Please load XDK public synonyms and try again
Can anybody tell me how to enable the XML dtabase option or configure it. Are there any set of scripts that I can run to accomplish this.
Also can anybody let me know how to load the XDK public synonyms as my dba is not wuite sure where the scripts are located.
This is urgent as we have missed a critical deadline.
Thanks,
Kalyan

No, please use "Metadata Repository Creation Assistant (10.1.2.0.3)".
Please go to the Application Server download page (http://otn.oracle.com - click on Download Application Server) or direct on:
http://www.oracle.com/technology/software/products/ias/htdocs/101202.html
Locate: "Metadata Repository Creation Assistant (10.1.2.0.3)"
Regards,
Martin

Similar Messages

  • CRVS2010 - beta - XML export options

    Hello,
    I've been testing the xml export option in crvs2010. I can't find the Manage XML Exporting Formats dialog box that is in CR2008 - in this location File - - > Export - - > Manage XML.
    Is this dialog box in CRVS2010? If so, where is it? I looked, but can't find it.
    Any help would be greatly appreciated.
    Thank you

    Hi Tracy,
    No need to repost this question. CR Designer has a bunch of functions through menu options that are not available through the API set. They are custom features that are unique only in the Designer and no plans to make then available through code.
    As mentioned, you can write your own code to emulate what that function does using your own Export button.
    Thank you
    Don

  • Is webservices.xml file optional

    Hi ,
    While develioping web services using Java to wsdl using JAS WS approach .
    Please let me know if webservices.xml is optional or mantadatory ??

    You can had validation rules to your business component by editing the entity object.
    You can then choose the validation tab and add validation rules.

  • Can't update XML with optional element

    Hi,
    I'm trying to update an XML document (global XML Schema based) with an optional element (insert an optional element into an existing xml document).
    The update statement seems to work but the optional element is missing when I select the document!
    How can I update (insert) an optional element in an XML document?
    Thanx for your comments,
    Markus
    My scenario:
    ============
    XML Schema:
    <?xml version='1.0'?>
    <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"
    xmlns:xdb="http://xmlns.oracle.com/xdb">
    <xsd:element name="TestUpdate" xdb:defaultTable="TESTUPDATE">
    <xsd:complexType>
    <xsd:sequence>
    <xsd:element name="anElement" type="xsd:string" />
    <xsd:element name="optElement" type="xsd:string" minOccurs="0" />
    </xsd:sequence>
    </xsd:complexType>
    </xsd:element>
    </xsd:schema>
    SQL:
    begin
    dbms_xmlschema.registerSchema('xsd/TestUpdate.xsd',
    getDocument('testupdate.xsd'),
    FALSE);
    end;
    ALTER TABLE TestUpdate
    add constraint VALID_TestUpdate
    check (XMLIsValid(sys_nc_rowinfo$)=1);
    INSERT INTO TestUpdate values (xmltype(getDocument('TestUpdate.xml')))
    update TestUpdate x
    SET x = UPDATEXML(value(x),
    '/TestUpdate/optElement','<optElement> my optional Element</optElement>');
    ==> Message is: 1 row updated !!!!!!!!!!
    SQL> select * from testupdate;
    SYS_NC_ROWINFO$
    <TestUpdate xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespac
    eSchemaLocation="xsd/TestUpdate.xsd">
    <anElement>more text....</anElement>
    </TestUpdate>
    ==> No UPADATE performed!!!

    Thanks Pete,
    XPath evaluation may return no data and may cause the trouble of giving an 'success' answer.
    On the other side I have rewritten the statement:
    SQL> update testupdate x set x.XMLData."optElement" = ' just some text';
    SQL> select * from testupdate;
    SYS_NC_ROWINFO$
    <TestUpdate xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespac
    eSchemaLocation="xsd/TestUpdate.xsd">
    <anElement>more text....</anElement>
    </TestUpdate>
    ===> no UPDATE ???????
    SQL> select x.xmldata."optElement" from testupdate x;
    XMLDATA.optElement
    just some text
    ===> WOW, row is updated!!!!!!!!
    This result is more wired than before :-)
    (at least for myself)
    Can somebody explain the result?
    bye,
    Markus

  • Seeking advice on Best Practices for XML Storage Options - XMLTYPE

    Sparc64
    11.2.0.2
    During OOW12 I tried to attend every xml session I could. There was one where a Mr. Drake was explaining something about not using clob
    as an attribute to storing the xml and that "it will break your application."
    We're moving forward with storing the industry standard invoice in an xmltype column, but Im not concerned that our table definition is not what was advised:
    --i've dummied this down to protect company assets
      CREATE TABLE "INVOICE_DOC"
       (     "INVOICE_ID" NUMBER NOT NULL ENABLE,
         "DOC" "SYS"."XMLTYPE"  NOT NULL ENABLE,
         "VERSION" VARCHAR2(256) NOT NULL ENABLE,
         "STATUS" VARCHAR2(256),
         "STATE" VARCHAR2(256),
         "USER_ID" VARCHAR2(256),
         "APP_ID" VARCHAR2(256),
         "INSERT_TS" TIMESTAMP (6) WITH LOCAL TIME ZONE,
         "UPDATE_TS" TIMESTAMP (6) WITH LOCAL TIME ZONE,
          CONSTRAINT "FK_####_DOC_INV_ID" FOREIGN KEY ("INVOICE_ID")
                 REFERENCES "INVOICE_LO" ("INVOICE_ID") ENABLE
       ) SEGMENT CREATION IMMEDIATE
    INITRANS 20  
    TABLESPACE "####_####_DATA"
           XMLTYPE COLUMN "DOC" STORE AS BASICFILE CLOB  (
      TABLESPACE "####_####_DATA"  XMLTYPE COLUMN "DOC" STORE AS BASICFILE CLOB  (
      TABLESPACE "####_####_DATA" ENABLE STORAGE IN ROW CHUNK 16384 RETENTION
      NOCACHE LOGGING
      STORAGE(INITIAL 81920 NEXT 1048576 MINEXTENTS 1 MAXEXTENTS 2147483645
      PCTINCREASE 0 FREELISTS 1 FREELIST GROUPS 1 BUFFER_POOL DEFAULT FLASH_CACHE DEFAULT CELL_FLASH_CACHE DEFAULT))
    XMLSCHEMA "http://mycompanynamehere.com/xdb/Invoice###.xsd" ELEMENT "Invoice" ID #####"
    {code}
    What is a best practice for this type of table?  Yes, we intend on registering the schema against an xsd.
    Any help/advice would be appreciated.
    -abe                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

    Hi,
    I suggest you read this paper : Oracle XML DB : Choosing the Best XMLType Storage Option for Your Use Case
    It is available on the XML DB home page along with other documents you may be interested in.
    To sum up, the storage method you need depends on the requirement, i.e. how XML data is accessed.
    There was one where a Mr. Drake was explaining something about not using clob as an attribute to storing the xml and that "it will break your application."I think the message Mark Drake wanted to convey is that CLOB storage is now deprecated and shouldn't be used anymore (though still supported for backward compatibility).
    The default XMLType storage starting with version 11.2.0.2 is now Binary XML, a posted-parsed binary format that optimizes both storage size and data access (via XQuery), so you should at least use it instead of the BASICFILE CLOB.
    Schema-based Binary XML is also available, it adds another layer of "awareness" for Oracle to manage instance documents.
    To use this feature, the XML schema must be registered with "options => dbms_xmlschema.REGISTER_BINARYXML".
    The other common approach for schema-based XML is Object-Relational storage.
    BTW... you may want to post here next time, in the dedicated forum : {forum:id=34}
    Mark Drake is one of the regular user, along with Marco Gralike you've probably seen too at OOW.
    Edited by: odie_63 on 18 oct. 2012 21:55

  • XML Publisher Issue, Unable to see Data-- Load XML Data Option.

    Hi ,
    Can any one help to solve this issue.
    Iam using XML Publisher tool to develop Oracle reports.
    while doing this iam unable to useXML Publisher.
    We have,
    XML Publisher 5.5 version,
    My problem is iam unable to see " *Microsoft word-->Data-->Load XML Data* " after installation of xml publisher succesfully.
    Every one in my team are working with the same versions.but in my machine iam unable to get this option.
    Thanks-
    Sowmya.

    Hi Sairam,
    Check the checkbox Convert database Null values to default and Convert other Null values to default under Edit -> Report Options and then refresh the report.
    If this does not work you can contact SAP Support.
    - Nrupal

  • XML export option in COID - ECC6

    Hi
    The said option was avl in ECC5 but seems to be missing in ECC6.... any idea how to bring back the same
    Prasanna

    There is a table SALV_BS_ADMIN ( new in ECC6 not there in ECC5 ) on which we need to maintain for the parameter GUI_ALV_XML_VER the value 02 or 04 or 08 . based on this when the spreadsheet option is clicked in the alv this will take to xls ot xml ot HTML...
    Prasanna

  • Where is the doc for xml task options for deploy and ojdeploy-build ?

    I am a new user.
    I tried using jdev help to find my answer, but got lost quickly in the zillions of manuals.
    1) Where is the manual/doc for the xml task attributes/options for the Ant tags <deploy> and <ojdeploy-build>?
    I am modifying an xml script that ojdeploy will call, but do not know what attributes/options are supported for these tags. I need to know whether an option such as failonerror exists, so that I can report a bug that <deploy> does not default to fail on error (or that <ojdeploy-build> ignores the error and continues with the script.
    Followup questions:
    2) How do I find the java code that implements the tags <deploy> and <ojdeploy-build>?
    3) How do I report a bug on the implementation for these tags and propose a fix (assuming I can see the java source code)?

    I guess I wasn't clear enough. What I tried to say was:
    1) Where is the manual/doc for the xml task attributes/options [I meant to say attributes/elements] for the Ant tags [I meant to say tasks] <deploy> and <ojdeploy-build>?
    I did not mean the ojdeploy command, but the Ant tasks <ojdeploy-build> and <deploy>.
    The jdev help does not seem to provide the complete list of elements or attributes for these critical Ant tasks, though it has a few examples.
    So far, it appears that <deploy> has been misdesigned and I cannot do what I want, which is to "failonerror" (failonerror="true" should be the default but the opposite is true and there is no attribute to change the setting).
    You could consider this to be a bad flaw in Ant itself, that you cannot get the exit code from every Ant task (since they are java programs they do have an exit code), so when new tasks are implemented by folks who lack experience they may leave out access to this programming feature that is however implemented for a bunch of important core Ant tasks such as "java" or "exec". It would have been far more useful to make this a generic feature of all Ant tasks. Of course then folks would be asking for stuff like "fail if" or "fail unless" and where would it end? Maybe with a real programming language like TCL but in XML form.

  • Data Menu - - XML Map options

    Hello,
    I looked in the help file and user guide, but could not find any info on the XML option. What does it do? It is not enabled on my menu. Any help would be greatly appreciated.
    thank you
    Tracy

    Hi Amr,
    Thank you so much for the link.
    I have not used XML, but based on what I read in the document to pointed me to, it seems like XML is a tool that lets one define how the data is coming in.
    I had not idea that a dashboard could actually be set up to refresh data from a database through Excel. I think that is cool. When I was seaching for info on the XML Map menu option, I looked for a sample file but did not see oe, nor did I find the pdf that you pointed me to, so I've come to the conclusion that my search skills leave something to be desired. LOL
    The article did reference a tutorial for Excel, which I will find.
    The pdf file mentions Xcelsius Enterprise XE. Is that another version of Xcelsius or can this be done in the professional 4.5 version?
    I can't thank you enough.
    Tracy

  • How to arrange opnm.xml java-options

    HI experts,
    Can anyone guide me what should be the sequence of the java-option for start parameter for any OC4J Container in opmn.xml for Oracle Application Server.(10.1.0.4).
    Regards,
    $

    HI experts,
    Can anyone guide me what should be the sequence of the java-option for start parameter for any OC4J Container in opmn.xml for Oracle Application Server.(10.1.0.4).
    Regards,
    $

  • Is 2.5 Oracle XML DB  required fro Apex 3.1 ?

    Dear All,
    As i have Preconfigured the database during an Installtion, so i didnt Installaed
    Oracle XML DB mentioned in 2.5 Step in the Documentation, as it is mentioned Not to Install if so,
    Do i need to Install Oracle XML DB too apart from Preconfigured database during an Installtionfor Apex 3.1 ?
    ( If you are using a preconfigured database created either during an installation or by Database Configuration Assistant (DBCA), Oracle XML DB is already installed and configured.)
    << from Documentation >>
    2.5 Oracle XML DB Requirement
    Oracle XML DB must be installed in the Oracle database that you want to use. If you are using a preconfigured database created either during an installation or by Database Configuration Assistant (DBCA), Oracle XML DB is already installed and configured.
    See Also:
    Oracle XML DB Developer's Guide for more information about manually adding Oracle XML DB to an existing database
    Tip:
    The installer does prerequisite checks for database components Oracle XML DB and will exit if either component is not installed.
    >>
    please Do Suggest Me
    Edited by: khaja on Jan 18, 2009 10:58 AM

    Yeah i did unlock tyhe Account APEX_PUBLIC_USER ,
    dads Config File
    <<<
    # ============================================================================
    # mod_plsql DAD Configuration File
    # ============================================================================
    # 1. Please refer to dads.README for a description of this file
    # ============================================================================
    # Note: This file should typically be included in your plsql.conf file with
    # the "include" directive.
    # Hint: You can look at some sample DADs in the dads.README file
    # ============================================================================
    Alias /i/ "C:\oracle\product\10.2.0\db\Apache\Apache\images/"
    AddType text/xml xbl
    AddType text/x-component htc
    <Location /pls/apex>
    Order deny,allow
    PlsqlDocumentPath docs
    AllowOverride None
    PlsqlDocumentProcedure wwv_flow_file_mgr.process_downloadd
    PlsqlDatabaseConnectString nruhv:1521:ora10gdb ServiceNameFormat
    PlsqlNLSLanguage AMERICAN_AMERICA.AL32UTF8
    PlsqlAuthenticationMode Basic
    SetHandler pls_handler
    PlsqlDocumentTablename wwv_flow_file_objects$
    PlsqlDatabaseUsername APEX_PUBLIC_USER
    PlsqlDefaultPage apex
    PlsqlDatabasePassword oracle
    PlsqlRequestValidationFunction wwv_flow_epg_include_modules.authorize
    Allow from all
    </Location>
    >>>
    thanks alot John for the Response
    Edited by: khaja on Jan 18, 2009 11:08 AM

  • Optional XML fields in Simple transformations (ST)

    Hi, I am using Simple Transformation (ST) to convert an XML file into ABAP data. In my XML file some XML tags are optional: sometimes they are available in the file, sometimes they are not. I can not find out how to define a ST for this.
    Either the XML fields are in the ST definition and then these field should also be in the XML file or
    the XML fields are not in the ST definition and then these fields are not allowed in the XML.
    Regards jack

    Hi Jack, please find some sample coding below that will solve your issue:
    <tt:cond check="not-initial(ref('E1EDL20.INCO1'))">
      <INCO1 tt:value-ref="E1EDL20.INCO1"/>
    </tt:cond>
    With the simple transformation tt cond statment you can make an XML tag optional. In below example during deserialisation xml tag <INCO1> will be skipped when not availabke in the xml and SAP data E1EDL20.INCO1 will not be filled by the transformation.
    Regards. Please give points when usefull !

  • XML validation in sender file adapter

    Hi
    I am using FCC on the sender file adapter ....i need to make sure that one of the fields should always be integer else the sender adapter should give error
    Can i use xml validation with FCC on the sender file adapter?

    Hi Hema,
    As per understanding you need to check one or few fields value is integer or not.
    You can achieve in 2 ways :
    Case1:Using inbuilt xml validation options.
    For 7.11 and below
    1)In ESR/Message type/Export the xsd to local machine.
    2)Insert the xsd file in the below loc
    /usr/sap/<sid>/DVEBMGS00/j2ee/cluster/server0/validation/schema/
    <guid>/<namespace1>/<service_interface_name>/<namespace2>
    <sid>: System ID of the server instance.
    <guid>: The GUID of the SWCV.
    <namespace1> : The namespace within which the service interface is defined.
    <service_interface_name> : The name of the service interface.
    <namespace2>
    : The namespace of the Message Type used by the service interface. In many
    instances, namespace1 and namespace2 are the same.
    Italic path folders need to create by you.
    For 7.3 and above
    Michal's PI tips: XML validation - changes in 7.3
    Case 2 :Handling using simple UDF.
    Input-->UDF-->Output
    try {
       Integer.parseInt(input);
       return input ;
    catch(NumberFormatException e) {   
    throw new StreamTransformationException( "Input field value for xyz field "+input+"is not in integer format.Plz correct it"); 
    Regards
    Venkat

  • XML Publishers Report not Working Properly

    I have developed the Report in XML Publisher EBS R12 as follwing:
    1. Successfully Built RTF
    2. Successfully register Data Definition
    3. Successfully register Template in Apps and setting default output RTF
    4. Successfully attach Template With Concurrent Programm with XML output option and Save and Print check box set to Yes
    But when i run report in Apps it does not pick the Template and showing the output in XML tags and showing log as following
    +-----------------------------
    | Starting concurrent program execution...
    +-----------------------------
    Arguments
    P_ORG_ID='116'
    P_INVOICE_NO='STM-HT/3509/2012'
    Forcing NLS_NUMERIC_CHARACTERS to: '.,' for XDO processing
    Current NLS_LANG and NLS_NUMERIC_CHARACTERS Environment Variables are :
    AMERICAN_AMERICA.US7ASCII
    Enter Password:
    Report Builder: Release 10.1.2.3.0 - Production on Tue Oct 30 10:39:17 2012
    Copyright (c) 1982, 2005, Oracle. All rights reserved.
    Start of log messages from FND_FILE
    End of log messages from FND_FILE
    Executing request completion options...
    Output file size:
    4260
    ------------- 1) PUBLISH -------------
    Beginning post-processing of request 11842999 on node PRODAPPS at 30-OCT-2012 10:39:18.
    Post-processing of request 11842999 failed at 30-OCT-2012 10:39:18 with the error message:
    One or more post-processing actions failed. Consult the OPP service log for details.
    ------------- 2) PRINT   -------------
    Not printing the output of this request because post-processing failed.
    Finished executing request completion options.
    Concurrent request completed
    Current system time is 30-OCT-2012 10:39:18
    It working Manually properly i.e Manual load XML data in RTF and generating output correct as i wants.
    Thanks in Advance
    Regards
    Sami Ullah

    I found the following errors in OOP log file. Please guide me.
    [10/31/12 11:55:40 AM] [2284847:RT11474553] Output file was found but is zero sized - Deleted
    [10/31/12 11:55:40 AM] [UNEXPECTED] [2284847:RT11474553] java.lang.reflect.InvocationTargetException
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:597)
         at oracle.apps.xdo.common.xml.XSLT10gR1.invokeNewXSLStylesheet(XSLT10gR1.java:611)
         at oracle.apps.xdo.common.xml.XSLT10gR1.transform(XSLT10gR1.java:239)
         at oracle.apps.xdo.common.xml.XSLTWrapper.transform(XSLTWrapper.java:182)
         at oracle.apps.xdo.template.fo.util.FOUtility.generateFO(FOUtility.java:1044)
         at oracle.apps.xdo.template.fo.util.FOUtility.generateFO(FOUtility.java:997)
         at oracle.apps.xdo.template.fo.util.FOUtility.generateFO(FOUtility.java:212)
         at oracle.apps.xdo.template.FOProcessor.createFO(FOProcessor.java:1665)
         at oracle.apps.xdo.template.FOProcessor.generate(FOProcessor.java:975)
         at oracle.apps.xdo.oa.schema.server.TemplateHelper.runProcessTemplate(TemplateHelper.java:5936)
         at oracle.apps.xdo.oa.schema.server.TemplateHelper.processTemplate(TemplateHelper.java:3459)
         at oracle.apps.xdo.oa.schema.server.TemplateHelper.processTemplate(TemplateHelper.java:3548)
         at oracle.apps.fnd.cp.opp.XMLPublisherProcessor.process(XMLPublisherProcessor.java:302)
         at oracle.apps.fnd.cp.opp.OPPRequestThread.run(OPPRequestThread.java:176)
    Caused by: oracle.xdo.parser.v2.XPathException: Namespace prefix 'ref' used but not declared.
         at oracle.xdo.parser.v2.XSLProcessor.reportException(XSLProcessor.java:806)
         at oracle.xdo.parser.v2.XSLProcessor.newXSLStylesheet(XSLProcessor.java:571)
         ... 17 more
    [10/31/12 11:55:40 AM] [2284847:RT11474553] Completed post-processing actions for request 11474553.

  • a tag is creating error in import XML in InDesign CS5.5

    Hi All,
    I am doing upgrade from InDesign CS2 to InDesign CS5.5.
    I have indt file. It has been designed using the CS2 and now converted that indt file into CS5.5 using InDesign CS5.5.
    But I am facing some serious issue while doing export to pdf in CS5.5 version.
    I am following below steps:
    1) Open indt file.
    2) File Menu --> Import XML... [This XML file contains <a href="website link"> html tag]
    3) XML Import Options [no change- defalut options selected]
    4) Ideally it should merge this XML data with the indt file but it is asking me for some input and showing me "Find:" dialog [Check below snapshot]
    I did some research and find out that I am getting this Find dialog because of the <a> tag in XML. when I removed the <a> tag from XML then it didn't give any dialog box and imported XML without any issue.
    I am getting that xml from system and I cant remove the <a> tag from xml manually.
    However I was not getting any error while doing import XML in CS2 version.
    Please can anybody help in this?

    When there is "http://" in anchor tag it will pop up this input window in manual export from indd/indt to pdf and it will failed in export through action script.
    I communicated with the Adobe and it was bug. Adobe has confirmed that they would realease the patch for same sometime later, but I have not heard of anything. I got work around by removing it "http://" using java.

Maybe you are looking for

  • What is new in the latest Apple TV version?

    Is the March 2012 version of Apple TV the same as the latest version?  I'm thinking about purchasing a refurbished model (http://store.apple.com/us/browse/home/specialdeals/ipod/apple_tv) and wonder if there is any downside to that version vs. what i

  • Can't game on my new, strong laptop

    So I'm having a problem. I was able to get my computer, the Pavilion 15-p263nr, on sale this past week, and am very excited. It has a quad core AMD A10-4655M Processor (2.0ghz to 2.8ghz), 8GB of RAM, and an AMD Radeon HD 7620G with 4224MB of graphics

  • While doinh Miro Cenvat clearing excise not flowing.

    Dear all ,, we have one po in that we maintained same material with qty 10.we maintained J1ID for that material. we have received migo two times first time 5 qty and second time 5 qty we have updated part1 and part2 also posted, we received two excis

  • Keyframing Z axis in new 3d titles?

    Anybody know how to keyframe the Z axis with the new 3d titles in the new 10.2 update? All the keyframing I see is only X and Y axis.....

  • Es-imagetool in 3.5

    I created an image using es-imagetool and I changed the port number as seen in my logs: Sun Management Center agents use SNMP Port 161 by default if port 161 is not in use. Port 161 could be in use on the destination machine by the SNMP daemon snmpdx