Transform method works in 10g, not in 11g !?

Hello,
I've some trouble with transform method in Oracle 11g !
I'va built a special test case to illustrate that.
Here it is (PL/SQL) :
DECLARE
   data_xml   XMLTYPE;
   data_xsl   XMLTYPE;
   data_out   XMLTYPE;
BEGIN
   data_xsl :=
      XMLTYPE
         ('<?xml version="1.0" encoding="ISO-8859-1"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"
    xmlns:idfx="http://www.socgen.com/idfx/pivot" xmlns="urn:swift:saa:xsd:saa.2.0">
    <xsl:output method="xml" encoding="UTF-8" indent="yes"/>
    <xsl:variable name="SenderDN">ou=opc,ou=ppe,o=pipofrpp,o=swift</xsl:variable>
    <xsl:variable name="SenderBIC11">PIPOFRPPXXX</xsl:variable>
    <xsl:template match="/*">
        <DataPDU xmlns="urn:swift:saa:xsd:saa.2.0">
            <Header>
                <Message>
                    <SenderReference>
                        <xsl:value-of select="idfx:infos/idfx:reference_tech"/>
                    </SenderReference>
                    <MessageIdentifier>
                        <xsl:value-of select="idfx:routage/idfx:feuille/idfx:MessageIdentifier"/>
                    </MessageIdentifier>
                    <Format>MX</Format>
                    <Sender>
                        <DN>
                            <xsl:value-of select="$SenderDN"/>
                        </DN>
                        <FullName>
                            <X1>
                                <xsl:value-of select="$SenderBIC11"/>
                            </X1>
                        </FullName>
                    </Sender>
                    <xsl:apply-templates select="idfx:routage/idfx:feuille/idfx:Receiver"/>
                    <InterfaceInfo>
                        <UserReference>
                            <xsl:value-of select="idfx:infos/idfx:reference_tech"/>
                        </UserReference>
                    </InterfaceInfo>
                    <NetworkInfo>
                        <Priority>
                            <xsl:value-of select="idfx:routage/idfx:feuille/idfx:Priority"/>
                        </Priority>
                        <Service>
                            <xsl:value-of select="idfx:routage/idfx:feuille/idfx:Service"/>
                        </Service>
                    </NetworkInfo>
                </Message>
            </Header>
            <Body>
                <AppHdr xmlns="urn:swift:xsd:$ahV10">
                    <MsgRef>
                        <xsl:value-of select="./idfx:infos/idfx:reference_tech"/>
                    </MsgRef>
                    <CrDate>
                        <xsl:value-of select="./idfx:infos/idfx:generated"/>
                    </CrDate>
                </AppHdr>
            </Body>
        </DataPDU>
    </xsl:template>
    <xsl:template match="idfx:Receiver">
        <xsl:variable name="ReceiverDN-BIC11">
            <xsl:choose>
                <xsl:when test="(. = ''PIPOFRP0OPC'') or (. = ''PIPOFRPPOPC'')">
                    <xsl:text>ou=opc,ou=ppe,o=pipofrpp,o=swift</xsl:text>
                    <xsl:text>|</xsl:text>
                    <xsl:text>PIPOFRPPXXX</xsl:text>
                </xsl:when>
                <xsl:when test="substring(., 1, 8) = ''DUDUFRP0''">
                    <xsl:text>ou=funds,ou=tandt,o=dudufrpp,o=swift</xsl:text>
                    <xsl:text>|</xsl:text>
                    <xsl:text>DUDUFRPPXXX</xsl:text>
                </xsl:when>
                <xsl:when test="substring(., 1, 8) = ''DUDUFRPP''">
                    <xsl:text>ou=funds,ou=live,o=dudufrpp,o=swift</xsl:text>
                    <xsl:text>|</xsl:text>
                    <xsl:text>DUDUFRPPXXX</xsl:text>
                </xsl:when>
                <xsl:otherwise>
                    <xsl:text>o=</xsl:text>
                    <xsl:value-of
                        select="translate(substring(., 1, 8), ''ABCDEFGHIJKLMNOPQRSTUVWXYZ'',
          ''abcdefghijklmnopqrstuvwxyz'')"/>
                    <xsl:text>,o=swift</xsl:text>
                    <xsl:text>|</xsl:text>
                    <xsl:value-of select="substring(., 1, 8)"/>
                    <xsl:text>XXX</xsl:text>
                </xsl:otherwise>
            </xsl:choose>
        </xsl:variable>
        <Receiver>
            <DN>
                <xsl:value-of select="substring-before($ReceiverDN-BIC11, ''|'')"/>
            </DN>
            <FullName>
                <X1>
                    <xsl:value-of select="substring-after($ReceiverDN-BIC11, ''|'')"/>
                </X1>
            </FullName>
        </Receiver>
    </xsl:template>
</xsl:stylesheet>'
   data_xml :=
      XMLTYPE
         ('<?xml version="1.0" encoding="ISO-8859-1"?>
<SOCFC xmlns="http://www.socgen.com/idfx/pivot">
  <infos>
    <generated>2010-07-01T14:04:27</generated>
    <reference_tech>IDFX20100701E000015</reference_tech>
  </infos>
  <RECEDEP>DUDUFRP0FDA</RECEDEP>
  <SENDERM>OPC</SENDERM>
  <REFSEND>5100163024</REFSEND>
  <INDPREA>N</INDPREA>
  <REFINTE>0010000934956</REFINTE>
  <CENTRDT>20090909</CENTRDT>
  <VALORDT>20090909</VALORDT>
  <STTLMDT>00000000</STTLMDT>
  <VLIQDEV>EUR</VLIQDEV>
  <VLIQMNT>4.4550</VLIQMNT>
  <PLATRAD>FR</PLATRAD>
  <TYPSORA>SOU</TYPSORA>
  <SEAMDEV>EUR</SEAMDEV>
  <TYPCOMM>STD</TYPCOMM>
  <BUYRBIC>PIPOFRP0EDE</BUYRBIC>
  <BUYRLB1 />
  <SELLBIC>PIPOFRPPOPC</SELLBIC>
  <SELLLB1 />
  <INVEBIC />
  <INVELB1 />
  <IDCTCOM />
  <QUANTFI>39.705</QUANTFI>
  <IFICODI>QS0012909854</IFICODI>
  <IFILIBE>FLOFLUZE SECURITE 207 FCPE....</IFILIBE>
  <CODAFFD>00000000</CODAFFD>
  <CODAFFR>00000000</CODAFFR>
  <ADHEOFD>00000</ADHEOFD>
  <ADHEOFR>00000</ADHEOFR>
  <PSETQUA>SICVFRPPXXX</PSETQUA>
  <DEALAMO>176.89</DEALAMO>
  <SEAMMNT>187.50</SEAMMNT>
  <MTTCOMM>10.61</MTTCOMM>
  <MTTBAKL>1.77</MTTBAKL>
  <MTTENTF />
  <VALUEDT>20090909</VALUEDT>
  <IDCPTIT>301230568900080788952</IDCPTIT>
  <TYPORDR />
  <routage>
    <feuille name="SOCFC_setr.012.001.03_standard">
      <Destinataire>SNAP</Destinataire>
      <MessageIdentifier>setr.012.001.03</MessageIdentifier>
      <Receiver>DUDUFRP0FDA</Receiver>
      <Priority>Normal</Priority>
      <IsNotificationRequested>false</IsNotificationRequested>
      <Service>swift.if.ia!p</Service>
    </feuille>
  </routage>
</SOCFC>'
   SELECT data_xml.transform (data_xsl)
     INTO data_out
     FROM DUAL d;
   DBMS_OUTPUT.put_line (data_out.getstringval ());
END;This script succeeds with 10g and fails with 11g.
Does someone can help me ?
Thanks.

I tried with Saxon9 and it also generates the correct output (added exclude-result-prefixes="idfx" as well in the stylesheet) :
C:\TEMP\XSLT>java -jar saxon9he.jar -s:test_otn.xml -xsl:test_otn.xsl -versionmsg:off
<?xml version="1.0" encoding="UTF-8"?>
<DataPDU xmlns="urn:swift:saa:xsd:saa.2.0">
   <Header>
      <Message>
         <SenderReference>IDFX20100701E000015</SenderReference>
         <MessageIdentifier>setr.012.001.03</MessageIdentifier>
         <Format>MX</Format>
         <Sender>
            <DN>ou=opc,ou=ppe,o=pipofrpp,o=swift</DN>
            <FullName>
               <X1>PIPOFRPPXXX</X1>
            </FullName>
         </Sender>
         <Receiver>
            <DN>ou=funds,ou=tandt,o=dudufrpp,o=swift</DN>
            <FullName>
               <X1>DUDUFRPPXXX</X1>
            </FullName>
         </Receiver>
         <InterfaceInfo>
            <UserReference>IDFX20100701E000015</UserReference>
         </InterfaceInfo>
         <NetworkInfo>
            <Priority>Normal</Priority>
            <Service>swift.if.ia!p</Service>
         </NetworkInfo>
      </Message>
   </Header>
   <Body>
      <AppHdr xmlns="urn:swift:xsd:$ahV10">
         <MsgRef>IDFX20100701E000015</MsgRef>
         <CrDate>2010-07-01T14:04:27</CrDate>
      </AppHdr>
   </Body>
</DataPDU>As for the 11.2 issue, it seems that it's complaining about this part in the xsl :
<AppHdr xmlns="urn:swift:xsd:$ahV10">Apparently, it can't deal with a second default namespace on a child element.

Similar Messages

  • DBMS_SPACE works in 10g not in 11g

    Hi,
    I have a code that uses DBMS_SPACE that works in Oracle 10g but not in 11g.
    Any clarification is appreciated.
    SQL> select * from v$version ;
    BANNER
    Oracle Database 11g Enterprise Edition Release 11.1.0.6.0 - Production
    PL/SQL Release 11.1.0.6.0 - Production
    CORE    11.1.0.6.0      Production
    TNS for 32-bit Windows: Version 11.1.0.6.0 - Production
    NLSRTL Version 11.1.0.6.0 - Production
    SQL>
      1  declare
      2   -- IN vars
      3   v_segment_owner VARCHAR2(100):='HR';
      4   v_segment_name VARCHAR2(100) :='NAMES';
      5   v_segment_type VARCHAR2(100) :='TABLE';
      6   v_partition_name VARCHAR2(100) :=null;
      7   -- OUT vars
      8   v_unformatted_blocks   NUMBER;
      9   v_unformatted_bytes   NUMBER;
    10   v_fs1_blocks   NUMBER;
    11   v_fs1_bytes   NUMBER;
    12   v_fs2_blocks   NUMBER;
    13   v_fs2_bytes   NUMBER;
    14   v_fs3_blocks   NUMBER;
    15   v_fs3_bytes   NUMBER;
    16   v_fs4_blocks   NUMBER;
    17   v_fs4_bytes   NUMBER;
    18   v_full_blocks   NUMBER;
    19   v_full_bytes   NUMBER;
    20   v_segment_size_blocks NUMBER;
    21   v_segment_size_bytes NUMBER;
    22   v_used_blocks NUMBER;
    23   v_used_bytes NUMBER;
    24   v_expired_blocks NUMBER;
    25   v_expired_bytes NUMBER;
    26   v_unexpired_blocks NUMBER;
    27   v_unexpired_bytes NUMBER;
    28  begin
    29  DBMS_SPACE.SPACE_USAGE(
    30   segment_owner => v_segment_owner ,
    31   segment_name => v_segment_name ,
    32   segment_type => v_segment_type ,
    33   unformatted_blocks => v_unformatted_blocks ,
    34   unformatted_bytes => v_unformatted_bytes ,
    35   fs1_blocks => v_fs1_blocks  ,
    36   fs1_bytes => v_fs1_bytes ,
    37   fs2_blocks => v_fs2_blocks ,
    38   fs2_bytes => v_fs2_bytes ,
    39   fs3_blocks => v_fs3_blocks ,
    40   fs3_bytes => v_fs3_bytes ,
    41   fs4_blocks => v_fs4_blocks ,
    42   fs4_bytes => v_fs4_bytes ,
    43   full_blocks => v_full_blocks ,
    44   full_bytes => v_full_bytes ,
    45   partition_name => v_partition_name  );
    46* end;
    SQL> /
    declare
    ERROR at line 1:
    ORA-00942: table or view does not exist
    ORA-06512: at "SYS.DBMS_SPACE", line 190
    ORA-06512: at line 29
    SQL> show user
    USER is "SYS"
    SQL> select * from v$version ;
    BANNER
    Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - Prod
    PL/SQL Release 10.2.0.1.0 - Production
    CORE    10.2.0.1.0      Production
    TNS for 32-bit Windows: Version 10.2.0.1.0 - Production
    NLSRTL Version 10.2.0.1.0 - Production
    SQL> declare
      2   -- IN vars
      3   v_segment_owner VARCHAR2(100):='HR';
      4   v_segment_name VARCHAR2(100) :='NAMES';
      5   v_segment_type VARCHAR2(100) :='TABLE';
      6   v_partition_name VARCHAR2(100) :=null;
      7 
      8   -- OUT vars
      9   v_unformatted_blocks   NUMBER;
    10   v_unformatted_bytes   NUMBER;
    11   v_fs1_blocks   NUMBER;
    12   v_fs1_bytes   NUMBER;
    13   v_fs2_blocks   NUMBER;
    14   v_fs2_bytes   NUMBER;
    15   v_fs3_blocks   NUMBER;
    16   v_fs3_bytes   NUMBER;
    17   v_fs4_blocks   NUMBER;
    18   v_fs4_bytes   NUMBER;
    19   v_full_blocks   NUMBER;
    20   v_full_bytes   NUMBER;
    21   v_segment_size_blocks NUMBER;
    22   v_segment_size_bytes NUMBER;
    23   v_used_blocks NUMBER;
    24   v_used_bytes NUMBER;
    25   v_expired_blocks NUMBER;
    26   v_expired_bytes NUMBER;
    27   v_unexpired_blocks NUMBER;
    28   v_unexpired_bytes NUMBER;
    29  begin
    30  DBMS_SPACE.SPACE_USAGE(
    31   segment_owner => v_segment_owner ,
    32   segment_name => v_segment_name ,
    33   segment_type => v_segment_type ,
    34   unformatted_blocks => v_unformatted_blocks ,
    35   unformatted_bytes => v_unformatted_bytes ,
    36   fs1_blocks => v_fs1_blocks  ,
    37   fs1_bytes => v_fs1_bytes ,
    38   fs2_blocks => v_fs2_blocks ,
    39   fs2_bytes => v_fs2_bytes ,
    40   fs3_blocks => v_fs3_blocks ,
    41   fs3_bytes => v_fs3_bytes ,
    42   fs4_blocks => v_fs4_blocks ,
    43   fs4_bytes => v_fs4_bytes ,
    44   full_blocks => v_full_blocks ,
    45   full_bytes => v_full_bytes ,
    46   partition_name => v_partition_name  );
    47  end;
    48  /
    PL/SQL procedure successfully completed.
    SQL> show user
    USER is "SYS"

    You make feel embarressed!!
    You are right.. the table wasn't there. I was connecting to the wrong database.
    Sorry for that.

  • Create report template works in XE not in 11g

    Working systems
    Windows vista
    Oracle XE
    Apex 3.1.0.00.32
    System that fails
    Unix of some sort
    Oracle 11g
    Apex 3.1.0.00.32
    PDF printing enabled and working
    Error: ORA-01400: cannot insert NULL into ("FLOWS_030100"."WWV_FLOW_REPORT_LAYOUTS"."FLOW_ID")
    Created and xsl file using Stylus Studio on my laptop where XE resides.( Good tool btw)
    Navigated to: Home>Application Builder>Application >Shared Components>Report Layouts>Create Report Layout
    Layout NameL test1
    Report Layout File: TestRpt.xsl
    Clicked on Create and the report layout showed up in the list
    I emailed the file to my work account. Followed the same steps and got the above error.
    I thought maybe it was a Unix v. Dos file structure so I edited the xsl file in SQL Developer (another good tool for Apex) and saved as TestRptA.xsl. Same error occured.
    I can put any file into the XE form and it uploads. I assume the 11g system does not get the file passed in the parameters...
    Any ideas on this would be greatly appriated.
    Sam
    Stumped in San Jose
    Home>Application Builder>Application >Shared Components>Report Layouts>Create Report Layout

    It went away. Nothing was done by the DBAs or me.
    Its a miracle!

  • BO method works fine but not the wokflow step.

    Hi,
    Just needed a suggestion. I have a PO attachment workflow. When i see the workflow log I see some error at the step check attachment. But when I run the step task  method in this step seperately from BO, it works fine, i just pass the same container elements as i get in the workflow id to this method of the step.
    So now any kind of hint what and where could be the problem. As I can see there is no problem with the task method.
    Any guess?
    Thanks,
    AC.
    Edited by: anu_SAP_123 on Jun 28, 2011 8:29 PM

    Hi,
    Just needed a suggestion. I have a PO attachment workflow. When i see the workflow log I see some error at the step check attachment. But when I run the step task  method in this step seperately from BO, it works fine, i just pass the same container elements as i get in the workflow id to this method of the step.
    So now any kind of hint what and where could be the problem. As I can see there is no problem with the task method.
    Any guess?
    Thanks,
    AC.
    Edited by: anu_SAP_123 on Jun 28, 2011 8:29 PM

  • VALIDATE_GEOMETRY_WITH_CONTEXT  Worked in 10g not in 11gR2 Database

    Within our application, the following call to SDO_VALIDATE_GEOMETRY_Context worked in our 10g database.
    Select SDO_GEOM.VALIDATE_GEOMETRY_WITH_CONTEXT(MDSYS.SDO_GEOMETRY(3001,8307, MDSYS.SDO_POINT_TYPE( 066.00000000, -34.00000000,-28.655),NULL,NULL), MDSYS.SDO_DIM_ARRAY(MDSYS.SDO_DIM_ELEMENT('X',-180,180,5E-8),MDSYS.SDO_DIM_ELEMENT('Y',-90,90,5E-8),MDSYS.SDO_DIM_ELEMENT('Z',-999999,999999,5E-8))) from dual
    But when the 11GR2 database was stood up against the application, it caused an ORA 54668. We would like the application to be 10g as well as 11GR2 compatable, so any suggestions would be gladly appreciated.
    Thanks in advance
    VB

    Hi Boatenv.
    You can read the following.
    select sdo_geom.validate_geometry_with_context(MDSYS.SDO_GEOMETRY(2002, NULL, NULL,
    MDSYS.SDO_ELEM_INFO_ARRAY(1,2,1), MDSYS.SDO_ORDINATE_ARRAY(50.0, 15.0, 55.0, 15.0, 55.0, 15.0, 15.0, 60.0)),0.005) as contextError
    from dual;
    CONTEXTERROR
    13356 [Element <1>] [Coordinate <2>]
    -- Multiple duplicates in single linestring
    select sdo_geom.validate_geometry_with_context(MDSYS.SDO_GEOMETRY(2002, NULL, NULL, MDSYS.SDO_ELEM_INFO_ARRAY(1,2,1),
    MDSYS.SDO_ORDINATE_ARRAY(50.0, 15.0, 55.0, 15.0, 55.0, 15.0, 55.0, 15.0, 60.0, 15.0)),0.005) as contextError
    from dual;
    CONTEXTERROR
    13356 [Element <1>] [Coordinate <2>]
    -- Two duplicates in first element, single duplicate in second of multilinestring
    select sdo_geom.validate_geometry_with_context(MDSYS.SDO_GEOMETRY(2006, NULL, NULL, MDSYS.SDO_ELEM_INFO_ARRAY(1,2,1,7,2,1),
    MDSYS.SDO_ORDINATE_ARRAY(50.0, 15.0, 55.0, 15.0, 55.0, 15.0, 60.0, 15.0, 60.0, 15.0, 65.0, 15.0)),0.005) as contextError
    from dual;
    CONTEXTERROR
    13356 [Element <1>] [Coordinate <2>]
    -- No duplicates in first element, single duplicate in second of multilinestring
    select sdo_geom.validate_geometry_with_context(MDSYS.SDO_GEOMETRY(2006, NULL, NULL, MDSYS.SDO_ELEM_INFO_ARRAY(1,2,1,5,2,1),
    MDSYS.SDO_ORDINATE_ARRAY(50.0, 15.0, 55.0, 15.0, 60.0, 15.0, 60.0, 15.0, 65.0, 15.0)),0.005) as contextError
    from dual;
    CONTEXTERROR
    13356 [Element <2>] [Coordinate <1>]
    -- Triple duplicate in first element, single duplicate in second of multilinestring
    select sdo_geom.validate_geometry_with_context(MDSYS.SDO_GEOMETRY(2006, NULL, NULL, MDSYS.SDO_ELEM_INFO_ARRAY(1,2,1,9,2,1),
    MDSYS.SDO_ORDINATE_ARRAY(50.0, 15.0, 55.0, 15.0, 55.0, 15.0, 55.0, 15.0, 60.0, 15.0, 60.0, 15.0, 65.0, 15.0)),0.005) as contextError
    from dual;
    CONTEXTERROR
    13356 [Element <1>] [Coordinate <2>]
    I would have expected that all duplicate points would have been reported.
    Oracle should fix this, of course, but in the meantime, if I get time, I will write a function that reports all duplicate points.
    I hope this is of help to someone.
    and the following url
    Oracle 11 sdo_geom.validate_geometry_with_context ERROR
    Please let me know if this solved your problem.
    Regards,

  • A query which works in 10g but not in 11g.

    Hi there,
    We are in the process of upgrading our database from 10g to 11g. We have a test server with 11g, and imported all the 10g data in there. While testing the 11g server, for many queries, we get ORA-00918: column ambiguously defined error, however the same queries work just fine in 10g. Below is a sample query.
    SELECT household_name || ' - Begin Date: ' || TO_CHAR(vnsrp.effective_date,'dd-MON-yyyy') ||
    CASE WHEN vnsrp.second_return_period_type = 'NON_FURLOUGH' THEN
    ELSE NULL
    END household_name,
    second_return_period_id
    FROM vn_secondment_return_period vnsrp
    JOIN ve_household_membership vehm
    ON vehm.family_household_id = vnsrp.family_household_id
    JOIN vb_family_household vbfh
    ON vbfh.family_household_id = vehm.family_household_id
    ORDER BY household_name
    We know, in the above query, the household_name is from both views vn_secondment_return_period and vb_family_household, but to the wonder it works without any error in 10g and not in 11g.
    We have so many queries like this, so changing them to give qualified column name (viewname.columnname) would be a very tedious process for us.
    Is there any simple solution by changing DB parameter like that?
    Advance Thanks,
    Natarajan

    i mean just change the definition of one of these views: vn_secondment_return_period or vb_family_household. I think this is the simplest way.

  • Conditional formatting in the chart  does not work after 10g to 11g upgrade

    W e have upgraded from 10g to 11.1.1.6.8 recently. For all the reports conditional formatting for charts is not working for us which used to work in 10g.
    While researching , i have found that advanced xml needs to be modified. So i changed xml where there is 'untypedLiteral' to 'decimal' and saved the report. Inspite of saving , xml wouldnt change . It still shows as untypedLiteral.
    I also tried to delete the conditional format and recreate again. But still it wouldn't work.
    Please advise.

    W e have upgraded from 10g to 11.1.1.6.8 recently. For all the reports conditional formatting for charts is not working for us which used to work in 10g.
    While researching , i have found that advanced xml needs to be modified. So i changed xml where there is 'untypedLiteral' to 'decimal' and saved the report. Inspite of saving , xml wouldnt change . It still shows as untypedLiteral.
    I also tried to delete the conditional format and recreate again. But still it wouldn't work.
    Please advise.

  • My ipod cclassic 80gb is hang after trying dat press and hold method then also its not working please tell me solution

    My ipod cclassic 80gb is hang after trying dat press and hold method then also its not working please tell me solution

    Thanks for your response and good luck wishes, I suspect I will need them!
    In principle, I agree re: the manufacturer's warranty. However, I am pretty upset that this is now my second iPod to develop a critical fault within weeks of the warranty expiring, and frankly, it is not unreasonable to expect a state-of-the-art $500 electronic device to last well beyond one year of life.
    I agree talking to Apple is not likely to do me any good (the clue is in how impossible they make it to talk to them in the first place) - but that is not necessarily OK. I expect I will have to pay money to get the battery replaced - again, not OK (full stop - but especially given the cost of the device and the money I have spent with Apple). Yes, the batteries have a limited lifespan, but it should last longer than this (and surely, I should notice a gradual decline in its functionality, not an instant stop).
    I will try Deggie's suggestion (see my reply post), but probably won't hold my breath (think I have already done this). I probably will have to get the new battery - and probably under my own steam. It is a principle at stake and I feel I should be able to let Apple know how I'm feeling - and am frustrated that they make this virtually impossible. It sends the very clear message that they are not interested in listening to their customers.

  • HT4623 I have tried to update my iPhone using the iTunes method but it will not work. The message "The iTunes update server could not be contacted. Please check your internet connection or try again later," appears. What do I do? The Internet is working f

    I have tried to update my iPhone using the iTunes method but it will not work. The message "The iTunes update server could not be contacted. Please check your internet connection or try again later," appears. What do I do? The Internet is working fine.

    Have you tried the following troubleshooting document?
    iTunes for Windows: iTunes cannot contact the iPhone, iPad, or iPod software update server
    If you end up using the If the iTunes Store opens successfully section of the document, and the "Automatically detect settings" checkbox is already checked, try unchecking and rechecking it and clicking OK.

  • Oracle Designer 10g With Oracle 11g DB possible

    Hi,
    Please clarify my below query,
    we are currently using oracle designer 10g and deploying the components to production DB which is in oracle 9i, We are planning to migrate to oracle supported version 11g DB, since oracle designer 11g is not there we would be sticking to oracle 10g itself, Now my question is, will we be having issues or road blocks with this combination Oracle designer 10g and Oracle 11g DB???
    Regards
    Bala

    @Erik
    Don't have a doc id. You have to go to the certication tab in My Oracle Support. Search for Oracle Designer 10.1.2.6.0 there you will find the three supported database version.
    Oracle Designer 10.1.2.6.0 is certified with Oracle Database 11.2.0.1.0 on Microsoft Windows (32-bit) XP
    Oracle Designer 10.1.2.6.0 with Oracle Database 11.2.0.1.0
    Customers must review MetaLink Doc 1299040.1 Application Design Transformer Hangs at 65% when running against Oracle 11gR2
    Certified with:
    Oracle Fusion Middleware 10g 10.1.2.0.2 Oracle Developer Suites 10g 10.1.2.0.2 Oracle AS/DS Patch Set 10g 10.1.2.3.0
    @Bala
    Colleagues of mine have imported a designer repository inside 11gR2 and where not able to change objects inside the repository. When they imported the same designer dump inside an 11gR1 database it worked fine.
    In the other post (Re: 11G compatibility it is also written that there are some major bugs and those bugs will not be fixed.

  • Query  Regarding Updation/Migration of ODI 10g To ODI 11g.

    Hi All,
    Currently I am using ODI 10g Version & Repositories ( Work & Master) have been installed on Oracle database version "Oracle Database 10g Enterprise Edition Release 10.2.0.4.0 - 64bi"
    We are thinking to migrate from ODI 10g to ODI 11g Version 11.1.1.5 & i have some queries which are metioned below.
    1. Can we install ODI 11g Version 11.1.1.5 version with Repositories ( Work & Master) on Oracle Database 10g Enterprise Edition Release 10.2.0.4.0 - 64bi" or do i need to upgrade my database version to 11G?.
    2. If yes then, Can i upgrade or use exting Repositoires ( 10g one) for ODI 11g OR i have to create new Repositoires & move/migrate the objects of 10G repositories as mentioned in the Oracle installation doc.
    3. Currently I am using OBIEE 10g for reposrting purpose & if i switch to ODI 11g , Do i need to use OBIEE 11g?
    ODI gurus, I need your reponse ASAP & i have to share it on urgent basis.
    Thanks
    Edited by: neeraj_singh on May 15, 2013 9:58 PM

    neeraj_singh wrote:
    Hi All,
    Currently I am using ODI 10g Version & Repositories ( Work & Master) have been installed on Oracle database version "Oracle Database 10g Enterprise Edition Release 10.2.0.4.0 - 64bi"
    We are thinking to migrate from ODI 10g to ODI 11g Version 11.1.1.5 & i have some queries which are metioned below.
    1. Can we install ODI 11g Version 11.1.1.5 version with Repositories ( Work & Master) on Oracle Database 10g Enterprise Edition Release 10.2.0.4.0 - 64bi" or do i need to upgrade my database version to 11G?.You can install ODI 11.1.1.5 but you have to upgrade your repositories using upgrade assistant
    refer http://docs.oracle.com/cd/E23943_01/upgrade.1111/e12642/tasklist.htm#CIHGIDFG
    2. If yes then, Can i upgrade or use exting Repositoires ( 10g one) for ODI 11g OR i have to create new Repositoires & move/migrate the objects of 10G repositories as mentioned in the Oracle installation doc.No need to create new repositories. You just upgrade them. But you need to takecare of certain things as you are a 10g user. Refer below link for the prerequisite
    http://docs.oracle.com/cd/E23943_01/upgrade.1111/e12642/prevusers.htm
    3. Currently I am using OBIEE 10g for reposrting purpose & if i switch to ODI 11g , Do i need to use OBIEE 11g?Not clear about the question ?
    >
    ODI gurus, I need your reponse ASAP & i have to share it on urgent basis.
    Thanks
    Edited by: neeraj_singh on May 15, 2013 9:58 PM

  • Problems in creating Materialized View from 10g R2  to 11g

    Hi,
    We have two databases in 10g Release 2. These databases are on two different servers and we use
    Materialized views to replicate data between these servers. We are currently using 64 bit version of
    oracle 10g release 2 for LINUX.
    Oracle Database 10g Release 10.2.0.1.0 - 64 bit Production
    PL/SQL Release 10.2.0.1.0 - Production
    CORE 10.2.0.1.0 Production
    TNS for Linux: Version 10.2.0.1.0 - Production
    NLSRTL Version 10.2.0.1.0 - Production
    We use CENTOS 5 - 64 bit edition
    We upgraded one of the databases to 11g (We exported the data from old database and
    imported it in new database) . Then we tried to create a Materialized view with incremental refresh
    on it where the base table is in the second Oracle 10g database.
    The problem is that it is not letting us create the view with FAST Refresh. It kept on giving ORA-12028
    error. We tried different remedies suggested on forums like creating a view with ROWID, but still it
    continued giving us the same error. We also synchronized the characterset of Oracle 10g and Oracle 11g
    installations but still it did not work.
    Our base table size is pretty large (over 10 Million records) and if we do a full refresh, it takes hours to
    refresh it.
    Without incremental refresh, we will not be able to fucntion, and to upgrade both database simultaneously
    we will need a large down-time which also we can not afford.
    Please advise what should we do.
    Best Regards
    Madhup
    Edited by: Madhup on Mar 2, 2009 10:45 AM

    Hello,
    Yesterday I met the same problem and very sad about this, however, my story is much more complicated (I think so).
    I have 6 databases:
    2 - 11g
    2 - 10g
    2 - 9i
    Every database of each release has different characterset(UTF8 and AL16UTF16).
    I am trying to create Materialized view with FAST REFRESH on Oracle 11g, when master tables are located on 10g database and 9i database.
    Materialized view, which points to 9i database, was successfully created.
    Materialized view, which points to 10g database, gets ORA-12028
    Like you, I tried many notes from METALINK and thought at the begining that the problem is my characterset. But, when the materialized views were successfully built on Oracle 9i database, I understood that the problem is something else.
    Did you find the actual reason why this issue does not work??
    Thanks,
    Alex

  • Oracle 10g OLAP to 11g OLAP upgrade ?

    We currently are planning on a upgrade from 10g OLAP => 11g OLAP. We currently have 12 AWM's in 10g OLAP which we need to move over with associated DML programs and additional SQL reporting views.
    Questions:
    1. Is there any documentation available on necessary steps for 10g OLAP => 11g OLAP upgrade?
    2. What would happen to existing AWM's prepared in 10g, would they be migrated to 11g transparently or have to be re-created?
    3. Is there any specific documentation related to changes in way cube builds are done programatically?
    4. Any changes in the way limit maps work in 11g?
    Please advise.
    Thanks,
    Sudip

    Migrating a 10g cube to 11g depends on whether you are talking about 11gR1 or 11gR2. 10g cubes continue to operate in the "10g way" even after a database upgrade. They will not become "11g cubes" until they are rebuilt after the database upgrade. In 11gR2, there is a supported way to migrate 10g cubes to 11g cubes, both with AWM and with PL/SQL. Sorry to say... this functionality doesn't exist in 11gR1: you'll have to rebuild your cubes from the ground up.
    The SQL relational views built using the AWM plugin in 10g are no longer applicable in 11g. That's because OLAP cubes in 11g are registered in the oracle data dictionary (just like other Oracle objects), and the SQL relational views are managed in the database and a recognized part of the product. The SQL relational views are quite different in 11g, so you will likely have to rewrite queries against them.
    LIMIT map syntax is the same, but performance is much better.
    See if this blog entry helps:
    http://www.rittmanmead.com/2009/10/09/olap-10gr2-and-dense-looping/
    Edited by: Stewart Bryson on Feb 19, 2010 8:40 AM

  • Xpath difference between Oracle 10g and Oracle 11g

    All,
    I'm working on moving our existing stored functions from Oracle 10g (10.2.0.4.0) to Oracle 11g (11.2.0.1.0) and so far, everything has worked just fine on Oracle 11g...execpt for one xpath statement.
    The statement below works fine in Oracle 10g (10.2.0.4.0):
    extractValue(inv_dtl_img, '/service//ground/sortKeyCode') AS "srt_key_cd",
    Please note: I need to use the double slash "//" in order to ignore the two different elements in the schema.
    However, in Oracle 11g (11.2.0.1.0), when this statement is executed in the stored function, I get this:
    ERROR at line 1:
    ORA-00932: inconsistent datatypes: expected - got -
    The extractValue command is pulling data out of an XMLType column, and the corresponding XML schema looks like:
    <service>
    <trans>
    <ground>
    <sortKeyCode>
    </sortKeyCode>
    </ground>
    </trans>
    <nontrans>
    <ground minOccurs=0>
    <sortKeyCode>
    </sortKeyCode>
    </ground>
    </nontrans>
    </service>
    Please note: In the XML message, the "trans" and "nontrans" elements are exclusive, so both will never be populated at the same time. A typical XML message would look like this:
    <service><trans><ground><sortKeyCode>3</sortKeyCode></ground></trans></service>
    or this:
    <service><nontrans><ground><sortKeyCode>5</sortKeyCode></ground></nontrans></service>
    In the schema, the sortKeyCode has been defined in both places as "string maxlen=3", so the datatype of that element is exactly the same in both the "trans" and "nontrans" sections of the schema. The only difference in the schema (outside of the trans and nontrans tags) is the fact that the second "ground" tag is defined with a "minOccurs=0". Could Oracle 11g be treating the schema differently than Oracle 10g, resulting in the error?
    Any thoughts would be appreciated.

    The only way to get an quick answer to that one is to file a service request with Oracle support. It could be a bug or a correct change regarding W3C behavior. Despite this, you moving to 11.2, the extract/extractvalue etc propriety Oracle solutions are deprecated from 11.2 and onwards. The more sensible way to move forward, although, I know more work intensive, is to apply the XQuery alternatives like xmlexist, xquery or xmltable functions.
    Moving to EXTRACT is a bad idea, because this alway will be treated as an XML fragment. If you unlucky then Oracle will deal with this in memory via DOM (the standard solution regarding XML parsing if every smart thing within Oracle can not be applied) and this will result in a performance downgrade due to high CPU and Memory consumption/overhead...
    Your pick...

  • Transformation during LDAP Sync reconciliation in OIM 11g

    Does anyone know if the use of transformations is supported in LDAP Sync reconciliation in OIM 11g?
    The reconciliation of LDAP User records is defined in /db/LDAPUser in the OIM metadata. The default version of this file has entries to specify OneToOne transformations, e.g.
    <Transformation name="OneToOne">
    <Parameter name="givenname" fieldname="givenname"/>
    </Transformation>
    For one of my attributes I wish to perform a custom transformation, and have implemented a transformation method as a GC provider (i.e. developed a Java class implementing the TransformationProvider interface and defined this Transformation in an xml file in the metadata path /db/GTC/ProviderDefinitions. I have uploaded a new version of LDAPUser that references my custom transformation provider for one of the LDAP attributes.
    When I try and perform an LDAP Sync user reconciliation, my custom class does not seem to be getting called when I generate a reconciliation event for the affected attribute. I also do not see any logs indicating a failure to load my provider. I have also turned up all the relevant log levels I can identify, and can see no record of OIM doing anything related to transformationat all (e.g. even calling the standard OneToOne transformation provider).
    I am suspicious that although LDAPUser has transformation entries, this may be misleading and transformation is not being performed at all for LDAP Sync.
    Does anyone else have experience of using transformation providers during LDAP Sync reconciliation?

    Thanks for your reply Nishith
    I need some suggestion from you.I have installed OID 11.1.1.6.0 and OIAM 11G R2(not configured ).
    while performing the OIM configuration can I use Enable Ldap sync or I need to finish the OIM configuration first and then do the ldap sync.
    Regards
    sri

Maybe you are looking for