DBMS_XMLSCHEMA.CopyEvolve produces ORA-30945: Could not create mapping tabl

Hi,
I am trying to update a XML Schema concerning the documents relaties.xsd (the old one) and relaties_v2.xsd (the new one containing only a minor change).
The document relaties.xsd looks like this:
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:xdb="http://xmlns.oracle.com/xdb"
elementFormDefault="unqualified"
attributeFormDefault="unqualified"
version="1.0">
     <xsd:element name="Relatie" xdb:defaultTable="">
          <xsd:complexType>
               <xsd:sequence>
                    <xsd:element name="Voornaam" type="xsd:string"/>
                    <xsd:element name="Achternaam" type="xsd:string"/>
                    <xsd:element name="Tussenvoegsel" type="xsd:string"/>
                    <xsd:element name="Geboortedatum" type="xsd:date"/>
                    <xsd:element name="Geslacht">
<xsd:simpleType>
<xsd:restriction base="xsd:string">
<xsd:enumeration value="M"/>
<xsd:enumeration value="V"/>
</xsd:restriction>
</xsd:simpleType>
</xsd:element>
                    <xsd:element name="Sofinummer">
<xsd:simpleType>
<xsd:restriction base="xsd:string">
<xsd:pattern value="\d{9}"/>
</xsd:restriction>
</xsd:simpleType>
</xsd:element>
                    <xsd:element name="Straatnaam" type="xsd:string"/>
                    <xsd:element name="Huisnummer" type="xsd:string"/>
                    <xsd:element name="Woonplaats" type="xsd:string"/>
                    <!--xsd:element name="Postcode" type="xsd:string"/-->
                    <xsd:element name="Postcode">
<xsd:simpleType>
<xsd:restriction base="xsd:string">
<xsd:pattern value="\d{4} [A-Z]{2}"/>
</xsd:restriction>
</xsd:simpleType>
</xsd:element>
                    <xsd:element name="Zrn">
<xsd:simpleType>
<xsd:restriction base="xsd:integer">
<xsd:minInclusive value="1000000"/>
<xsd:maxInclusive value="99999999999999"/>
</xsd:restriction>
</xsd:simpleType>
</xsd:element>
               </xsd:sequence>
          </xsd:complexType>
     </xsd:element>
</xsd:schema>
Here are the steps I took.
DECLARE
res BOOLEAN;
BEGIN
res := DBMS_XDB.createResource('/xsd/relaties.xsd',
bfilename('XSDDIR', 'relaties.xsd')
END;
DECLARE
res BOOLEAN;
BEGIN
res := DBMS_XDB.createResource('/xsd/relaties_v2.xsd',
bfilename('XSDDIR', 'relaties_v2.xsd')
END;
BEGIN
DBMS_XMLSCHEMA.registerSchema(
'http://localhost:8080/xsd/relaties.xsd',
XDBURIType('/xsd/relaties.xsd').getClob(),
TRUE,
FALSE,
FALSE,
TRUE);
END;
CREATE
TABLE relatie_documenten OF XMLTYPE
XMLSCHEMA "http://localhost:8080/xsd/relaties.xsd"
ELEMENT "Relatie"
CREATE OR REPLACE
TRIGGER upo_rdt_ai
AFTER INSERT ON relatie_documenten
FOR EACH ROW
DECLARE
doc XMLType;
BEGIN
doc := :new.SYS_NC_ROWINFO$;
XMLType.schemaValidate(doc);
END;
Then I inserted some xml documents into the table relatie_documenten. The XSD worked fine.
Then I executed the following statement:
BEGIN
DBMS_XMLSCHEMA.copyEvolve
( schemaURLs => xdb$string_list_t('http://localhost:8080/xsd/relaties.xsd')
, newSchemas => XMLSequenceType(XDBURIType('/xsd/relaties_v2.xsd').getXML())
, preserveOldDocs => TRUE
, mapTabName => 'RELATIE_DOCUMENTEN_TEMP'
, generateTables => FALSE
END;
This resulted in:
ERROR at line 1:
ORA-30945: Could not create mapping table 'RELATIE_DOCUMENTEN_TEMP'
ORA-00600: internal error code, arguments: [kqludp2], [0x66AB407C], [0], [],
ORA-06512: at "XDB.DBMS_XMLSCHEMA_INT", line 113
ORA-06512: at "XDB.DBMS_XMLSCHEMA", line 210
ORA-06512: at line 2
I checked system priviliges as documented in XML DB Developers Guide, Chapter 8 XML Schema Evolution. No other users were connected. The mapping table RELATIE_DOCUMENTEN_TEMP nor any other object named RELATIE_DOCUMENTEN_TEMP did not exist.
Anyone an idea why I cannot create my mapping table ?
Gregor

Which release / platform are you working with
With 10.2.0.2.1 on Widows I get
SQL> var schemaURL varchar2(256)
SQL> var schemaPath varchar2(256)
SQL> --
SQL> begin
  2    :schemaURL := 'http://localhost:8080/xsd/relaties.xsd';
  3    :schemaPath := '/public/relaties.xsd';
  4  end;
  5  /
PL/SQL procedure successfully completed.
SQL> call dbms_xmlSchema.deleteSchema(:schemaURL,4)
  2  /
Call completed.
SQL> declare
  2    res boolean;
  3    xmlSchema xmlType := xmlType(
  4  '<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"
  5              xmlns:xdb="http://xmlns.oracle.com/xdb"
  6                 elementFormDefault="unqualified"
  7                 attributeFormDefault="unqualified"
  8                 version="1.0">
  9     <xsd:element name="Relatie" xdb:defaultTable="">
10             <xsd:complexType>
11                     <xsd:sequence>
12                             <xsd:element name="Voornaam" type="xsd:string"/>
13                             <xsd:element name="Achternaam" type="xsd:string"/>
14                             <xsd:element name="Tussenvoegsel" type="xsd:string"/>
15                             <xsd:element name="Geboortedatum" type="xsd:date"/>
16                             <xsd:element name="Geslacht">
17                 <xsd:simpleType>
18                    <xsd:restriction base="xsd:string">
19                       <xsd:enumeration value="M"/>
20                       <xsd:enumeration value="V"/>
21                    </xsd:restriction>
22                 </xsd:simpleType>
23              </xsd:element>
24                     <xsd:element name="Sofinummer">
25                 <xsd:simpleType>
26                    <xsd:restriction base="xsd:string">
27                       <xsd:pattern value="\d{9}"/>
28                    </xsd:restriction>
29                 </xsd:simpleType>
30              </xsd:element>
31                             <xsd:element name="Straatnaam" type="xsd:string"/>
32                             <xsd:element name="Huisnummer" type="xsd:string"/>
33                             <xsd:element name="Woonplaats" type="xsd:string"/>
34                             <!--xsd:element name="Postcode" type="xsd:string"/-->
35                             <xsd:element name="Postcode">
36                 <xsd:simpleType>
37                    <xsd:restriction base="xsd:string">
38                       <xsd:pattern value="\d{4} [A-Z]{2}"/>
39                    </xsd:restriction>
40                 </xsd:simpleType>
41              </xsd:element>
42                             <xsd:element name="Zrn">
43                 <xsd:simpleType>
44                    <xsd:restriction base="xsd:integer">
45                       <xsd:minInclusive value="1000000"/>
46                       <xsd:maxInclusive value="99999999999999"/>
47                    </xsd:restriction>
48                 </xsd:simpleType>
49              </xsd:element>
50                     </xsd:sequence>
51             </xsd:complexType>
52     </xsd:element>
53  </xsd:schema>');
54  begin
55    if (dbms_xdb.existsResource(:schemaPath)) then
56      dbms_xdb.deleteResource(:schemaPath);
57    end if;
58    res := dbms_xdb.createResource(:schemaPath,xmlSchema);
59  end;
60  /
PL/SQL procedure successfully completed.
SQL> BEGIN
  2    DBMS_XMLSCHEMA.registerSchema(
  3      :schemaURL,
  4      XDBURIType(:schemaPath).getClob(),
  5      TRUE,
  6      FALSE,
  7      FALSE,
  8      TRUE);
  9  END;
10  /
PL/SQL procedure successfully completed.
SQL> DROP TABLE relatie_documenten FORCE
  2  /
Table dropped.
SQL> CREATE TABLE relatie_documenten OF XMLTYPE
  2         XMLSCHEMA "http://localhost:8080/xsd/relaties.xsd"
  3         ELEMENT "Relatie"
  4  /
Table created.
SQL> CREATE OR REPLACE TRIGGER upo_rdt_ai
  2  AFTER INSERT ON relatie_documenten
  3  FOR EACH ROW
  4  DECLARE
  5     doc XMLType;
  6  BEGIN
  7     doc := :new.SYS_NC_ROWINFO$;
  8     XMLType.schemaValidate(doc);
  9  END;
10  /
Trigger created.
SQL> INSERT
  2  INTO   relatie_documenten
  3  VALUES (XMLType
  4           ('<Relatie>
  5                <Voornaam>Johan</Voornaam>
  6                <Achternaam>Hermans</Achternaam>
  7                <Tussenvoegsel/>
  8                <Geboortedatum>1978-01-02</Geboortedatum>
  9                <Geslacht>M</Geslacht>
10                <Sofinummer>233300417</Sofinummer>
11                <Straatnaam>Stationstraat</Straatnaam>
12                <Huisnummer>10</Huisnummer>
13                <Woonplaats>Weesp</Woonplaats>
14                <Postcode>1383 AK</Postcode>
15                <Zrn>1234567</Zrn>
16             </Relatie>'
17          ).CreateSchemaBasedXML(:schemaURL))
18  /
1 row created.
SQL> commit
  2  /
Commit complete.
SQL> INSERT
  2  INTO   relatie_documenten
  3  VALUES (XMLType
  4           ('<Relatie>
  5                <Voornaam>Johanna</Voornaam>
  6                <Achternaam>Gurts</Achternaam>
  7                <Tussenvoegsel/>
  8                <Geboortedatum>1975-11-12</Geboortedatum>
  9                <Geslacht>V</Geslacht>
10                <Sofinummer>234109807</Sofinummer>
11                <Straatnaam>Stationstraat</Straatnaam>
12                <Huisnummer>10</Huisnummer>
13                <Woonplaats>Weesp</Woonplaats>
14                <Postcode>1383 AK</Postcode>
15                <Zrn>7654321</Zrn>
16             </Relatie>').CreateSchemaBasedXML(:schemaURL))
17  /
1 row created.
SQL> commit
  2  /
Commit complete.
SQL> INSERT
  2  INTO   relatie_documenten
  3  VALUES (XMLType
  4           ('<Relatie>
  5                <Voornaam>Johanna</Voornaam>
  6                <Achternaam>Gurts</Achternaam>
  7                <Tussenvoegsel/>
  8                <Geboortedatum>1975-11-12</Geboortedatum>
  9                <Geslacht>O</Geslacht>
10                <Sofinummer>234109807</Sofinummer>
11                <Straatnaam>Stationstraat</Straatnaam>
12                <Huisnummer>10</Huisnummer>
13                <Woonplaats>Weesp</Woonplaats>
14                <Postcode>1383 AK</Postcode>
15                <Zrn>7654321</Zrn>
16             </Relatie>').CreateSchemaBasedXML(:schemaURL))
17  /
VALUES (XMLType
ERROR at line 3:
ORA-31038: Invalid enumeration value: "O"
ORA-06512: at "SYS.XMLTYPE", line 345
ORA-06512: at "SCOTT.UPO_RDT_AI", line 5
ORA-04088: error during execution of trigger 'SCOTT.UPO_RDT_AI'
SQL> commit
  2  /
Commit complete.
SQL> declare
  2    xmlschema xmltype;
  3    res       boolean;
  4  begin
  5    select xdburitype(:schemaPath).getXML()
  6      into xmlSchema
  7      from dual;
  8    dbms_xdb.deleteResource(:schemaPath);
  9    select insertChildXML
10           (
11             xmlschema,
12             '/xsd:schema//xsd:element[@name="Geslacht"]/xsd:simpleType/xsd:restriction',
13             'xsd:enumeration',
14             xmltype('<xsd:enumeration xmlns:xsd="http://www.w3.org/2001/XMLSchema" value="O"/>'),
15             'xmlns:xsd="http://www.w3.org/2001/XMLSchema"'
16           )
17    into xmlSchema
18    from dual;
19    res := dbms_xdb.createResource(:schemaPath,xmlSchema);
20  end;
21  /
PL/SQL procedure successfully completed.
SQL> commit
  2  /
Commit complete.
SQL> set long 100000 pages 200 lines 140
SQL> --
SQL> select xdburitype(:schemaPath).getXML()
  2    from dual
  3  /
XDBURITYPE(:SCHEMAPATH).GETXML()
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xdb="http://xmlns.oracle.com/xdb" elementFormDefault="unqualified" attributeF
ormDefault="unqualified" version="1.0">
  <xsd:element name="Relatie" xdb:defaultTable="">
    <xsd:complexType>
      <xsd:sequence>
        <xsd:element name="Voornaam" type="xsd:string"/>
        <xsd:element name="Achternaam" type="xsd:string"/>
        <xsd:element name="Tussenvoegsel" type="xsd:string"/>
        <xsd:element name="Geboortedatum" type="xsd:date"/>
        <xsd:element name="Geslacht">
          <xsd:simpleType>
            <xsd:restriction base="xsd:string">
              <xsd:enumeration value="M"/>
              <xsd:enumeration value="V"/>
              <xsd:enumeration xmlns:xsd="http://www.w3.org/2001/XMLSchema" value="O"/>
            </xsd:restriction>
          </xsd:simpleType>
        </xsd:element>
        <xsd:element name="Sofinummer">
          <xsd:simpleType>
            <xsd:restriction base="xsd:string">
              <xsd:pattern value="\d{9}"/>
            </xsd:restriction>
          </xsd:simpleType>
        </xsd:element>
        <xsd:element name="Straatnaam" type="xsd:string"/>
        <xsd:element name="Huisnummer" type="xsd:string"/>
        <xsd:element name="Woonplaats" type="xsd:string"/>
        <!--xsd:element name="Postcode" type="xsd:string"/-->
        <xsd:element name="Postcode">
          <xsd:simpleType>
            <xsd:restriction base="xsd:string">
              <xsd:pattern value="\d{4} [A-Z]{2}"/>
            </xsd:restriction>
          </xsd:simpleType>
        </xsd:element>
        <xsd:element name="Zrn">
          <xsd:simpleType>
            <xsd:restriction base="xsd:integer">
              <xsd:minInclusive value="1000000"/>
              <xsd:maxInclusive value="99999999999999"/>
            </xsd:restriction>
          </xsd:simpleType>
        </xsd:element>
      </xsd:sequence>
    </xsd:complexType>
  </xsd:element>
</xsd:schema>
SQL> DROP TABLE RELATIE_DOCUMENTEN_TEMP
  2  /
Table dropped.
SQL> BEGIN
  2    DBMS_XMLSCHEMA.copyEvolve
  3      ( schemaURLs      => xdb$string_list_t(:schemaURL)
  4      , newSchemas      => XMLSequenceType(XDBURIType(:schemaPath).getXML())
  5      , preserveOldDocs => TRUE
  6      , mapTabName      => 'RELATIE_DOCUMENTEN_TEMP'
  7      , generateTables  => FALSE
  8      );
  9  END;
10  /
PL/SQL procedure successfully completed.
SQL> CREATE TABLE relatie_documenten OF XMLTYPE
  2         XMLSCHEMA "http://localhost:8080/xsd/relaties.xsd"
  3         ELEMENT "Relatie"
  4  /
Table created.
SQL> CREATE OR REPLACE TRIGGER upo_rdt_ai
  2  AFTER INSERT ON relatie_documenten
  3  FOR EACH ROW
  4  DECLARE
  5     doc XMLType;
  6  BEGIN
  7     doc := :new.SYS_NC_ROWINFO$;
  8     XMLType.schemaValidate(doc);
  9  END;
10  /
Trigger created.
SQL> declare
  2    tablename varchar2(2000);
  3  begin
  4    select temp_tabname
  5      into tablename
  6      from RELATIE_DOCUMENTEN_TEMP
  7     where table_name = USER || '.' || upper('relatie_documenten');
  8    execute immediate 'insert into relatie_documenten select xmltype(data) from ' || tablename;
  9    commit;
10  end;
11  /
PL/SQL procedure successfully completed.
SQL> select *
  2    from relatie_documenten
  3  /
SYS_NC_ROWINFO$
<Relatie>
  <Voornaam>Johan</Voornaam>
  <Achternaam>Hermans</Achternaam>
  <Tussenvoegsel/>
  <Geboortedatum>1978-01-02</Geboortedatum>
  <Geslacht>M</Geslacht>
  <Sofinummer>233300417</Sofinummer>
  <Straatnaam>Stationstraat</Straatnaam>
  <Huisnummer>10</Huisnummer>
  <Woonplaats>Weesp</Woonplaats>
  <Postcode>1383 AK</Postcode>
  <Zrn>1234567</Zrn>
</Relatie>
<Relatie>
  <Voornaam>Johanna</Voornaam>
  <Achternaam>Gurts</Achternaam>
  <Tussenvoegsel/>
  <Geboortedatum>1975-11-12</Geboortedatum>
  <Geslacht>V</Geslacht>
  <Sofinummer>234109807</Sofinummer>
  <Straatnaam>Stationstraat</Straatnaam>
  <Huisnummer>10</Huisnummer>
  <Woonplaats>Weesp</Woonplaats>
  <Postcode>1383 AK</Postcode>
  <Zrn>7654321</Zrn>
</Relatie>
SQL> INSERT
  2  INTO   relatie_documenten
  3  VALUES (XMLType
  4           ('<Relatie>
  5                <Voornaam>Johanna</Voornaam>
  6                <Achternaam>Gurts</Achternaam>
  7                <Tussenvoegsel/>
  8                <Geboortedatum>1975-11-12</Geboortedatum>
  9                <Geslacht>O</Geslacht>
10                <Sofinummer>234109807</Sofinummer>
11                <Straatnaam>Stationstraat</Straatnaam>
12                <Huisnummer>10</Huisnummer>
13                <Woonplaats>Weesp</Woonplaats>
14                <Postcode>1383 AK</Postcode>
15                <Zrn>7654321</Zrn>
16             </Relatie>').CreateSchemaBasedXML(:schemaURL))
17  /
1 row created.
SQL> commit
  2  /
Commit complete.
SQL> select *
  2    from relatie_documenten
  3  /
SYS_NC_ROWINFO$
<Relatie>
  <Voornaam>Johan</Voornaam>
  <Achternaam>Hermans</Achternaam>
  <Tussenvoegsel/>
  <Geboortedatum>1978-01-02</Geboortedatum>
  <Geslacht>M</Geslacht>
  <Sofinummer>233300417</Sofinummer>
  <Straatnaam>Stationstraat</Straatnaam>
  <Huisnummer>10</Huisnummer>
  <Woonplaats>Weesp</Woonplaats>
  <Postcode>1383 AK</Postcode>
  <Zrn>1234567</Zrn>
</Relatie>
<Relatie>
  <Voornaam>Johanna</Voornaam>
  <Achternaam>Gurts</Achternaam>
  <Tussenvoegsel/>
  <Geboortedatum>1975-11-12</Geboortedatum>
  <Geslacht>V</Geslacht>
  <Sofinummer>234109807</Sofinummer>
  <Straatnaam>Stationstraat</Straatnaam>
  <Huisnummer>10</Huisnummer>
  <Woonplaats>Weesp</Woonplaats>
  <Postcode>1383 AK</Postcode>
  <Zrn>7654321</Zrn>
</Relatie>
<Relatie>
  <Voornaam>Johanna</Voornaam>
  <Achternaam>Gurts</Achternaam>
  <Tussenvoegsel/>
  <Geboortedatum>1975-11-12</Geboortedatum>
  <Geslacht>O</Geslacht>
  <Sofinummer>234109807</Sofinummer>
  <Straatnaam>Stationstraat</Straatnaam>
  <Huisnummer>10</Huisnummer>
  <Woonplaats>Weesp</Woonplaats>
  <Postcode>1383 AK</Postcode>
  <Zrn>7654321</Zrn>
</Relatie>
SQL>Here's the SQL, can you cut'n'paste and run the whole thing as XML_OWNER
var schemaURL varchar2(256)
var schemaPath varchar2(256)
begin
  :schemaURL := 'http://localhost:8080/xsd/relaties.xsd';
  :schemaPath := '/public/relaties.xsd';
end;
call dbms_xmlSchema.deleteSchema(:schemaURL,4)
declare
  res boolean;
  xmlSchema xmlType := xmlType(
'<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"
            xmlns:xdb="http://xmlns.oracle.com/xdb"
               elementFormDefault="unqualified"
               attributeFormDefault="unqualified"
               version="1.0">
     <xsd:element name="Relatie" xdb:defaultTable="">
          <xsd:complexType>
               <xsd:sequence>
                    <xsd:element name="Voornaam" type="xsd:string"/>
                    <xsd:element name="Achternaam" type="xsd:string"/>
                    <xsd:element name="Tussenvoegsel" type="xsd:string"/>
                    <xsd:element name="Geboortedatum" type="xsd:date"/>
                    <xsd:element name="Geslacht">
               <xsd:simpleType>
                  <xsd:restriction base="xsd:string">
                     <xsd:enumeration value="M"/>
                     <xsd:enumeration value="V"/>
                  </xsd:restriction>
               </xsd:simpleType>
            </xsd:element>
                 <xsd:element name="Sofinummer">
               <xsd:simpleType>
                  <xsd:restriction base="xsd:string">
                     <xsd:pattern value="\d{9}"/>
                  </xsd:restriction>
               </xsd:simpleType>
            </xsd:element>
                    <xsd:element name="Straatnaam" type="xsd:string"/>
                    <xsd:element name="Huisnummer" type="xsd:string"/>
                    <xsd:element name="Woonplaats" type="xsd:string"/>
                    <!--xsd:element name="Postcode" type="xsd:string"/-->
                    <xsd:element name="Postcode">
               <xsd:simpleType>
                  <xsd:restriction base="xsd:string">
                     <xsd:pattern value="\d{4} [A-Z]{2}"/>
                  </xsd:restriction>
               </xsd:simpleType>
            </xsd:element>
                    <xsd:element name="Zrn">
               <xsd:simpleType>
                  <xsd:restriction base="xsd:integer">
                     <xsd:minInclusive value="1000000"/>
                     <xsd:maxInclusive value="99999999999999"/>
                  </xsd:restriction>
               </xsd:simpleType>
            </xsd:element>
               </xsd:sequence>
          </xsd:complexType>
     </xsd:element>
</xsd:schema>');
begin
  if (dbms_xdb.existsResource(:schemaPath)) then
    dbms_xdb.deleteResource(:schemaPath);
  end if;
  res := dbms_xdb.createResource(:schemaPath,xmlSchema);
end;
BEGIN
  DBMS_XMLSCHEMA.registerSchema(
    :schemaURL,
    XDBURIType(:schemaPath).getClob(),
    TRUE,
    FALSE,
    FALSE,
    TRUE);
END;
DROP TABLE relatie_documenten FORCE
CREATE TABLE relatie_documenten OF XMLTYPE
       XMLSCHEMA "http://localhost:8080/xsd/relaties.xsd"
       ELEMENT "Relatie"
CREATE OR REPLACE TRIGGER upo_rdt_ai
AFTER INSERT ON relatie_documenten
FOR EACH ROW
DECLARE
   doc XMLType;
BEGIN
   doc := :new.SYS_NC_ROWINFO$;
   XMLType.schemaValidate(doc);
END;
INSERT
INTO   relatie_documenten
VALUES (XMLType
         ('<Relatie>
              <Voornaam>Johan</Voornaam>
              <Achternaam>Hermans</Achternaam>
              <Tussenvoegsel/>
              <Geboortedatum>1978-01-02</Geboortedatum>
              <Geslacht>M</Geslacht>
              <Sofinummer>233300417</Sofinummer>
              <Straatnaam>Stationstraat</Straatnaam>
              <Huisnummer>10</Huisnummer>
              <Woonplaats>Weesp</Woonplaats>
              <Postcode>1383 AK</Postcode>
              <Zrn>1234567</Zrn>
           </Relatie>'
        ).CreateSchemaBasedXML(:schemaURL))
commit
INSERT
INTO   relatie_documenten
VALUES (XMLType
         ('<Relatie>
              <Voornaam>Johanna</Voornaam>
              <Achternaam>Gurts</Achternaam>
              <Tussenvoegsel/>
              <Geboortedatum>1975-11-12</Geboortedatum>
              <Geslacht>V</Geslacht>
              <Sofinummer>234109807</Sofinummer>
              <Straatnaam>Stationstraat</Straatnaam>
              <Huisnummer>10</Huisnummer>
              <Woonplaats>Weesp</Woonplaats>
              <Postcode>1383 AK</Postcode>
              <Zrn>7654321</Zrn>
           </Relatie>').CreateSchemaBasedXML(:schemaURL))
commit
INSERT
INTO   relatie_documenten
VALUES (XMLType
         ('<Relatie>
              <Voornaam>Johanna</Voornaam>
              <Achternaam>Gurts</Achternaam>
              <Tussenvoegsel/>
              <Geboortedatum>1975-11-12</Geboortedatum>
              <Geslacht>O</Geslacht>
              <Sofinummer>234109807</Sofinummer>
              <Straatnaam>Stationstraat</Straatnaam>
              <Huisnummer>10</Huisnummer>
              <Woonplaats>Weesp</Woonplaats>
              <Postcode>1383 AK</Postcode>
              <Zrn>7654321</Zrn>
           </Relatie>').CreateSchemaBasedXML(:schemaURL))
commit
declare
  xmlschema xmltype;
  res       boolean;
begin
  select xdburitype(:schemaPath).getXML()
    into xmlSchema
    from dual;
  dbms_xdb.deleteResource(:schemaPath);
  select insertChildXML
           xmlschema,
           '/xsd:schema//xsd:element[@name="Geslacht"]/xsd:simpleType/xsd:restriction',
           'xsd:enumeration',
           xmltype('<xsd:enumeration xmlns:xsd="http://www.w3.org/2001/XMLSchema" value="O"/>'),
           'xmlns:xsd="http://www.w3.org/2001/XMLSchema"'
  into xmlSchema
  from dual;
  res := dbms_xdb.createResource(:schemaPath,xmlSchema);
end;
commit
set long 100000 pages 200 lines 140
select xdburitype(:schemaPath).getXML()
  from dual
DROP TABLE RELATIE_DOCUMENTEN_TEMP
BEGIN
  DBMS_XMLSCHEMA.copyEvolve
    ( schemaURLs      => xdb$string_list_t(:schemaURL)
    , newSchemas      => XMLSequenceType(XDBURIType(:schemaPath).getXML())
    , preserveOldDocs => TRUE
    , mapTabName      => 'RELATIE_DOCUMENTEN_TEMP'
    , generateTables  => FALSE
END;
CREATE TABLE relatie_documenten OF XMLTYPE
       XMLSCHEMA "http://localhost:8080/xsd/relaties.xsd"
       ELEMENT "Relatie"
CREATE OR REPLACE TRIGGER upo_rdt_ai
AFTER INSERT ON relatie_documenten
FOR EACH ROW
DECLARE
   doc XMLType;
BEGIN
   doc := :new.SYS_NC_ROWINFO$;
   XMLType.schemaValidate(doc);
END;
declare
  tablename varchar2(2000);
begin
  select temp_tabname
    into tablename
    from RELATIE_DOCUMENTEN_TEMP
   where table_name = USER || '.' || upper('relatie_documenten');
  execute immediate 'insert into relatie_documenten select xmltype(data) from ' || tablename;
  commit;
end;
select *
  from relatie_documenten
INSERT
INTO   relatie_documenten
VALUES (XMLType
         ('<Relatie>
              <Voornaam>Johanna</Voornaam>
              <Achternaam>Gurts</Achternaam>
              <Tussenvoegsel/>
              <Geboortedatum>1975-11-12</Geboortedatum>
              <Geslacht>O</Geslacht>
              <Sofinummer>234109807</Sofinummer>
              <Straatnaam>Stationstraat</Straatnaam>
              <Huisnummer>10</Huisnummer>
              <Woonplaats>Weesp</Woonplaats>
              <Postcode>1383 AK</Postcode>
              <Zrn>7654321</Zrn>
           </Relatie>').CreateSchemaBasedXML(:schemaURL))
commit
select *
  from relatie_documenten
/

Similar Messages

  • ORA-27142: could not create new process/ when i am duplicating DB

    I am trying to duplicated DB on new server and getting this error
    Need suggestions to solve this ?
    RMAN-03002: failure of Duplicate Db command at 10/03/2006 16:58:58
    RMAN-03015: error occurred in stored script Memory Script
    ORA-27142: could not create new process

    check the availability of disk space where netbackup writes log files.
    if its is all set,
    open the netbackup log file and look for any recent relevant messages.
    look closely in rmanlogs and netbackup logs for any messages ralating to DBMS_BACKUP_RESTORE.RESTOREBACKUPPIECE

  • Oracle.jbo.PCollException: JBO-28006: Could not create persistence table PS

    Hi everyone,
    I am a JDeveloper newbie and got my first taste of it now.
    I cannot run my app using the embedded OC4J and so with the app server after deployment (using the end-to-end web app using the default tech scope 9.0.5.1). I am always getting the above subject error. I've seen only around 4 threads in metalink and the answers are not that straightforward.
    Brief on my environment:
    OS: Windows 2000 (latest service pack)
    JDeveloper: 9.0.5.2
    Database: 9.0.4 (10G Infra)
    Memory: 1Gb
    Stack Trace:
    oracle.jbo.PCollException: JBO-28006: Could not create persistence table PS_TXN
         at oracle.jbo.PCollException.throwException(PCollException.java:39)
         at oracle.jbo.pcoll.OraclePersistManager.createTable(OraclePersistManager.java:960)
         at oracle.jbo.pcoll.OraclePersistManager.queryNextCollectionId(OraclePersistManager.java:1282)
         at oracle.jbo.pcoll.PCollManager.register(PCollManager.java:514)
         at oracle.jbo.pcoll.PCollection.<init>(PCollection.java:102)
         at oracle.jbo.pcoll.PCollManager.createCollection(PCollManager.java:414)
         at oracle.jbo.server.DBSerializer.setup(DBSerializer.java:153)
         at oracle.jbo.server.DBSerializer.passivateRootAM(DBSerializer.java:286)
         at oracle.jbo.server.DBSerializer.passivateRootAM(DBSerializer.java:267)
         at oracle.jbo.server.ApplicationModuleImpl.passivateStateInternal(ApplicationModuleImpl.java:4591)
         at oracle.jbo.server.ApplicationModuleImpl.passivateState(ApplicationModuleImpl.java:4479)
         at oracle.jbo.server.ApplicationModuleImpl.doPoolMessage(ApplicationModuleImpl.java:6818)
         at oracle.jbo.common.ampool.ApplicationPoolImpl.sendPoolMessage(ApplicationPoolImpl.java:3886)
         at oracle.jbo.common.ampool.ApplicationPoolImpl.doManagedCheckin(ApplicationPoolImpl.java:2131)
         at oracle.jbo.common.ampool.ApplicationPoolImpl.releaseApplicationModule(ApplicationPoolImpl.java:1211)
         at oracle.jbo.common.ampool.SessionCookieImpl.releaseApplicationModule(SessionCookieImpl.java:717)
         at oracle.jbo.common.ampool.SessionCookieImpl.releaseApplicationModule(SessionCookieImpl.java:634)
         at oracle.jbo.client.remote.PooledRequestHandler.doMessage(PooledRequestHandler.java:97)
         at oracle.jbo.client.remote.ApplicationModuleImpl.doMessage(ApplicationModuleImpl.java:5804)
         at oracle.jbo.client.remote.ApplicationModuleImpl.sendServiceMessage(ApplicationModuleImpl.java:1029)
         at oracle.jbo.client.remote.ApplicationModuleImpl.sendServiceMessage(ApplicationModuleImpl.java:1043)
         at oracle.jbo.client.remote.ApplicationModuleImpl.sendWorkingSetRequests(ApplicationModuleImpl.java:3300)
         at oracle.jbo.common.ws.WSApplicationModuleImpl.sendRequests(WSApplicationModuleImpl.java:824)
         at oracle.jbo.common.ws.WSApplicationModuleImpl.sync(WSApplicationModuleImpl.java:752)
         at oracle.adf.model.bc4j.DCJboDataControl.endRequest(DCJboDataControl.java:1195)
         at oracle.adf.model.servlet.ADFBindingFilter.invokeEndRequest(ADFBindingFilter.java:289)
         at oracle.adf.model.servlet.ADFBindingFilter.doFilter(ADFBindingFilter.java:238)
         at com.evermind[Oracle Application Server Containers for J2EE 10g (9.0.4.0.0)].server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:600)
         at com.evermind[Oracle Application Server Containers for J2EE 10g (9.0.4.0.0)].server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:317)
         at com.evermind[Oracle Application Server Containers for J2EE 10g (9.0.4.0.0)].server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:790)
         at com.evermind[Oracle Application Server Containers for J2EE 10g (9.0.4.0.0)].server.http.HttpRequestHandler.run(HttpRequestHandler.java:270)
         at com.evermind[Oracle Application Server Containers for J2EE 10g (9.0.4.0.0)].server.http.HttpRequestHandler.run(HttpRequestHandler.java:112)
         at com.evermind[Oracle Application Server Containers for J2EE 10g (9.0.4.0.0)].util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:186)
         at java.lang.Thread.run(Thread.java:534)
    ## Detail 0 ##
    java.sql.SQLException: ORA-03001: unimplemented feature
         at oracle.jdbc.dbaccess.DBError.throwSqlException(DBError.java:189)
         at oracle.jdbc.ttc7.TTIoer.processError(TTIoer.java:242)
         at oracle.jdbc.ttc7.Oall7.receive(Oall7.java:554)
         at oracle.jdbc.ttc7.TTC7Protocol.doOall7(TTC7Protocol.java:1478)
         at oracle.jdbc.ttc7.TTC7Protocol.parseExecuteFetch(TTC7Protocol.java:888)
         at oracle.jdbc.driver.OracleStatement.executeNonQuery(OracleStatement.java:2076)
         at oracle.jdbc.driver.OracleStatement.doExecuteOther(OracleStatement.java:1986)
         at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:2697)
         at oracle.jdbc.driver.OracleStatement.execute(OracleStatement.java:1100)
         at oracle.jbo.pcoll.OraclePersistManager.createTable(OraclePersistManager.java:933)
         at oracle.jbo.pcoll.OraclePersistManager.queryNextCollectionId(OraclePersistManager.java:1282)
         at oracle.jbo.pcoll.PCollManager.register(PCollManager.java:514)
         at oracle.jbo.pcoll.PCollection.<init>(PCollection.java:102)
         at oracle.jbo.pcoll.PCollManager.createCollection(PCollManager.java:414)
         at oracle.jbo.server.DBSerializer.setup(DBSerializer.java:153)
         at oracle.jbo.server.DBSerializer.passivateRootAM(DBSerializer.java:286)
         at oracle.jbo.server.DBSerializer.passivateRootAM(DBSerializer.java:267)
         at oracle.jbo.server.ApplicationModuleImpl.passivateStateInternal(ApplicationModuleImpl.java:4591)
         at oracle.jbo.server.ApplicationModuleImpl.passivateState(ApplicationModuleImpl.java:4479)
         at oracle.jbo.server.ApplicationModuleImpl.doPoolMessage(ApplicationModuleImpl.java:6818)
         at oracle.jbo.common.ampool.ApplicationPoolImpl.sendPoolMessage(ApplicationPoolImpl.java:3886)
         at oracle.jbo.common.ampool.ApplicationPoolImpl.doManagedCheckin(ApplicationPoolImpl.java:2131)
         at oracle.jbo.common.ampool.ApplicationPoolImpl.releaseApplicationModule(ApplicationPoolImpl.java:1211)
         at oracle.jbo.common.ampool.SessionCookieImpl.releaseApplicationModule(SessionCookieImpl.java:717)
         at oracle.jbo.common.ampool.SessionCookieImpl.releaseApplicationModule(SessionCookieImpl.java:634)
         at oracle.jbo.client.remote.PooledRequestHandler.doMessage(PooledRequestHandler.java:97)
         at oracle.jbo.client.remote.ApplicationModuleImpl.doMessage(ApplicationModuleImpl.java:5804)
         at oracle.jbo.client.remote.ApplicationModuleImpl.sendServiceMessage(ApplicationModuleImpl.java:1029)
         at oracle.jbo.client.remote.ApplicationModuleImpl.sendServiceMessage(ApplicationModuleImpl.java:1043)
         at oracle.jbo.client.remote.ApplicationModuleImpl.sendWorkingSetRequests(ApplicationModuleImpl.java:3300)
         at oracle.jbo.common.ws.WSApplicationModuleImpl.sendRequests(WSApplicationModuleImpl.java:824)
         at oracle.jbo.common.ws.WSApplicationModuleImpl.sync(WSApplicationModuleImpl.java:752)
         at oracle.adf.model.bc4j.DCJboDataControl.endRequest(DCJboDataControl.java:1195)
         at oracle.adf.model.servlet.ADFBindingFilter.invokeEndRequest(ADFBindingFilter.java:289)
         at oracle.adf.model.servlet.ADFBindingFilter.doFilter(ADFBindingFilter.java:238)
         at com.evermind[Oracle Application Server Containers for J2EE 10g (9.0.4.0.0)].server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:600)
         at com.evermind[Oracle Application Server Containers for J2EE 10g (9.0.4.0.0)].server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:317)
         at com.evermind[Oracle Application Server Containers for J2EE 10g (9.0.4.0.0)].server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:790)
         at com.evermind[Oracle Application Server Containers for J2EE 10g (9.0.4.0.0)].server.http.HttpRequestHandler.run(HttpRequestHandler.java:270)
         at com.evermind[Oracle Application Server Containers for J2EE 10g (9.0.4.0.0)].server.http.HttpRequestHandler.run(HttpRequestHandler.java:112)
         at com.evermind[Oracle Application Server Containers for J2EE 10g (9.0.4.0.0)].util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:186)
         at java.lang.Thread.run(Thread.java:534)
    The DB user i use is the same in my app and it has all the necessary permissions in the database.
    Any idea?
    Thanks in advance.

    Hi!
    I'm also a BC4J newbie, and encountered a similar problem while working with JDeveloper 9.0.3.4., but not until the app was deployed to an OAS.
    The first time the app was executed was from within the IDE (embedded OC4J) and there was no issue with creating the tables in the state_management schema. However, when the target and state_management schemas were dropped and re-created (to simulate installation on production)and the app was finally deployed to the OAS (10g), the app would fail trying to get nextval from the sequence (in state_management). However, when running again from the embedded OC4J, the sequence and table were created OK. Afterwards, once the sequence and table were created, the OAS instance could process requests fine. One difference in running the two instances is in the login user - the two users that are mapped to the app's security role are different: in the embedded case it's admin/welcome, in the other a plain "jdoe/jdoe" user. I wouldn't think this would matter, as BC4J uses the credentials of the internal connection to access the state_management schema, but if that's not it, then... ?
    What credentials would the first app user have to have? The idea of a separate schema for the BC4J tables is that the users don't have to have a create any table/index/sequence privilege... Would you have any thoughts on how to fix the problem?

  • Jbo.PCollException: JBO-28006: Could not create persistence table PS_TXN_se

    Hi everyone,
    Got the following exception:
    2005-11-08 13:50:54,514 ERROR enatis.error (MsgLogger.java:logError:161) [Error Ref# INT.1131450654514]- An unhandled runtime exce
    ption occured.
    oracle.jbo.PCollException: JBO-28006: Could not create persistence table PS_TXN_seq
    at oracle.jbo.PCollException.throwException(PCollException.java:39)
    at oracle.jbo.pcoll.OraclePersistManager.createTable(OraclePersistManager.java:893)
    at oracle.jbo.pcoll.OraclePersistManager.queryNextCollectionId(OraclePersistManager.java:1372)
    at oracle.jbo.pcoll.PCollManager.register(PCollManager.java:560)
    at oracle.jbo.pcoll.PCollection.<init>(PCollection.java:102)
    at oracle.jbo.pcoll.PCollManager.createCollection(PCollManager.java:460)
    at oracle.jbo.server.DBSerializer.setup(DBSerializer.java:153)
    at oracle.jbo.server.DBSerializer.passivateRootAM(DBSerializer.java:286)
    at oracle.jbo.server.DBSerializer.passivateRootAM(DBSerializer.java:267)
    at oracle.jbo.server.ApplicationModuleImpl.passivateStateInternal(ApplicationModuleImpl.java:5123)
    at oracle.jbo.server.ApplicationModuleImpl.passivateState(ApplicationModuleImpl.java:5001)
    at oracle.jbo.server.ApplicationModuleImpl.passivateStateForUndo(ApplicationModuleImpl.java:7429)
    Does anyone know whether there is a process that is supposed to cleanup this table? How is it managed?
    Thanks

    Just to wrap this up i will attach the last couple of postings on Metalink:
    09-NOV-05 07:29:03 GMT
    New info : BUKSVDL : Hi Kjeld,
    Im still on the passivateStateForUndo topic. This time with the PS_TXAN table.
    It looks like BC4J writes to this user table when passivating the AM state.
    Please see my questions in the OTN thread below.
    jbo.PCollException: JBO-28006: Could not create persistence table PS_TXN_se
    The latest entry:
    "The data sources are correct. The problem here were the priviledges after
    upgrading the db to 10g rel 2. Some of the implicit priviledges were removed in
    the latest version of the db.
    The question is still, who manages these tables. When/How are entries removed?
    We see this table, "PS_TXN", growing all the time. How do we prevent problems
    like this in the future. Should we include this table, and maybe others, in the
    maintanance scripts? "
    09-NOV-05 09:29:05 GMT
    New info : BUKSVDL : Hi Kjeld,
    The DBA that did the investigation is out of office today.
    What i can tell you is that:
    We use a data-source on the App serves that is defined by the DBA's. We only
    require the DS name. Apparently, in the past, when a user was created certain
    default priveledges were automatically granted. This doesn't happen anymore
    with the latest release of the DB. The DBA had to explicitly grant the
    priveledges.
    09-NOV-05 10:16:09 GMT
    ISSUE CLARIFICATION
    ====================
    After upgrading the database to Oracle Server 10.1.0.2 the ADF application
    returns following error:
    BC4J - ApplicationModuleImpl.passivateStateForUndo();
    oracle.jbo.PCollException: JBO-28006: Could not create persistence table
    PS_TXN_seq
    The error occurs as soon as passivation is done in the application.
    eos (end of section)
    ISSUE VERIFICATION
    ===================
    Verified the issue by error messages supplied by customer.
    eos (end of section)
    CAUSE DETERMINATION
    ====================
    The user connecting to the database from the ADF application does not have
    the required database grants to create a table. The upgrade did
    delete/remove some required privileges.
    eos (end of section)
    CAUSE JUSTIFICATION
    ====================
    If the database user does not have the privilege "CREATE ANY TABLE", then
    this user cannot create a database table. The tables PS_TXN and PS_TXN_seq
    are created during runtime if passivation is done for the first time. If
    the user does not have the necessary privileges the table cannot occur and
    the error JBO-28006 will occur.
    The upgrade of the database removed some necessary
    eos (end of section)
    STATUS
    ======
    @ WIP - Work In Progress
    09-NOV-05 10:16:56 GMT
    POTENTIAL SOLUTION(S)
    ======================
    Make sure the database user has the privileges "CREATE TABLE" and "CREATE
    SEQUENCE" to create objects such as tables and sequences.
    eos (end of section)
    POTENTIAL SOLUTION JUSTIFICATION(S)
    ====================================
    When the database user has the privileges "CREATE TABLE" and "CREATE
    SEQUENCE" it will be possible to create the BC4J tables PS_TXN and
    PS_TXN_seq on passivation.
    eos (end of section)
    SOLUTION / ACTION PLAN
    =======================
    To implement the solution, please execute the following steps:
    1. Connect as user SYS to the database.
    2. Grant at least following priviliges to the ADF application user:
    GRANT CREATE TABLE TO <user>
    GRANT CREATE SEQUENCE TO <user>
    REMARK: Replace <user> with the actual username that is used to connect
    from the adf application to the database.
    eos (end of section)

  • Could not create pool connection. The DBMS driver exception was:java.sql.SQLException: ORA-01017: invalid username/password

    Could not create pool connection.The DBMS driver exception was:java.sql.SQLException:
    ORA-01017: invalid username/password
    Even though I could able to connect to Oracle database using correct userid,password
    and HostString using OracleClient, I couldnt able to do with connectionpool. Here
    is the error message..
    <Jan 21, 2003 2:27:50 AM PST> <Notice> <WebLogicServer> <Starting WebLogic Admin
    Server "examplesServer" for domain "examples">
    Starting Loading jDriver/Oracle .....
    ---------- LOGIN ERROR CODE: 1017
    ---------- LOGIN ERROR CODE: 1017
    <Jan 21, 2003 2:28:06 AM PST> <Error> <JDBC> <Cannot startup connection pool "or
    aclePool" weblogic.common.ResourceException:
    Could not create pool connection. The DBMS driver exception was:
    java.sql.SQLException: ORA-01017: invalid username/password; logon denied - (Obj
    ectel/********@ora8i)
    at weblogic.db.oci.OciConnection.getLDAException(OciConnection.java:164)
    at weblogic.jdbc.oci.Driver.connect(Driver.java:112)
    at weblogic.jdbc.common.internal.ConnectionEnvFactory.makeConnection(Con
    nectionEnvFactory.java:193)
    at weblogic.jdbc.common.internal.ConnectionEnvFactory.createResource(Con
    nectionEnvFactory.java:134)
    at weblogic.common.internal.ResourceAllocator.makeResources(ResourceAllo
    cator.java:698)
    at weblogic.common.internal.ResourceAllocator.<init>(ResourceAllocator.j
    ava:282)
    at weblogic.jdbc.common.internal.ConnectionPool.startup(ConnectionPool.j
    ava:623)
    at weblogic.jdbc.common.JDBCService.addDeployment(JDBCService.java:107)
    at weblogic.management.mbeans.custom.DeploymentTarget.addDeployment(Depl
    oymentTarget.java:329)
    at weblogic.management.mbeans.custom.DeploymentTarget.addDeployments(Dep
    loymentTarget.java:279)
    at weblogic.management.mbeans.custom.DeploymentTarget.updateServerDeploy
    ments(DeploymentTarget.java:233)
    at weblogic.management.mbeans.custom.DeploymentTarget.updateDeployments(
    DeploymentTarget.java:193)
    at java.lang.reflect.Method.invoke(Native Method)
    at weblogic.management.internal.DynamicMBeanImpl.invokeLocally(DynamicMB
    eanImpl.java:636)
    at weblogic.management.internal.DynamicMBeanImpl.invoke(DynamicMBeanImpl
    .java:621)
    at weblogic.management.internal.ConfigurationMBeanImpl.invoke(Configurat
    ionMBeanImpl.java:359)
    at com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:15
    55)
    at com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:15
    23)
    at weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:468)
    at weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:209)
    at $Proxy45.updateDeployments(Unknown Source)
    at weblogic.management.configuration.ServerMBean_CachingStub.updateDeplo
    yments(ServerMBean_CachingStub.java:2761)
    at weblogic.management.mbeans.custom.ApplicationManager.startConfigManag
    er(ApplicationManager.java:370)
    at weblogic.management.mbeans.custom.ApplicationManager.start(Applicatio
    nManager.java:160)
    at java.lang.reflect.Method.invoke(Native Method)
    at weblogic.management.internal.DynamicMBeanImpl.invokeLocally(DynamicMB
    eanImpl.java:636)
    at weblogic.management.internal.DynamicMBeanImpl.invoke(DynamicMBeanImpl
    .java:621)
    at weblogic.management.internal.ConfigurationMBeanImpl.invoke(Configurat
    ionMBeanImpl.java:359)
    at com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:15
    55)
    at com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:15
    23)
    at weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:468)
    at weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:209)
    at $Proxy64.start(Unknown Source)
    at weblogic.management.configuration.ApplicationManagerMBean_CachingStub
    .start(ApplicationManagerMBean_CachingStub.java:480)
    at weblogic.management.Admin.startApplicationManager(Admin.java:1180)
    at weblogic.management.Admin.finish(Admin.java:590)
    at weblogic.t3.srvr.T3Srvr.start(T3Srvr.java:518)
    at weblogic.t3.srvr.T3Srvr.run(T3Srvr.java:203)
    at weblogic.Server.main(Server.java:35)
    at weblogic.jdbc.common.internal.ConnectionEnvFactory.makeConnection(Con
    nectionEnvFactory.java:209)
    at weblogic.jdbc.common.internal.ConnectionEnvFactory.createResource(Con
    nectionEnvFactory.java:134)
    at weblogic.common.internal.ResourceAllocator.makeResources(ResourceAllo
    cator.java:698)
    at weblogic.common.internal.ResourceAllocator.<init>(ResourceAllocator.j
    ava:282)
    at weblogic.jdbc.common.internal.ConnectionPool.startup(ConnectionPool.j
    ava:623)
    at weblogic.jdbc.common.JDBCService.addDeployment(JDBCService.java:107)
    at weblogic.management.mbeans.custom.DeploymentTarget.addDeployment(Depl
    oymentTarget.java:329)
    at weblogic.management.mbeans.custom.DeploymentTarget.addDeployments(Dep
    loymentTarget.java:279)
    at weblogic.management.mbeans.custom.DeploymentTarget.updateServerDeploy
    ments(DeploymentTarget.java:233)
    at weblogic.management.mbeans.custom.DeploymentTarget.updateDeployments(
    DeploymentTarget.java:193)
    at java.lang.reflect.Method.invoke(Native Method)
    at weblogic.management.internal.DynamicMBeanImpl.invokeLocally(DynamicMB
    eanImpl.java:636)
    at weblogic.management.internal.DynamicMBeanImpl.invoke(DynamicMBeanImpl
    .java:621)
    at weblogic.management.internal.ConfigurationMBeanImpl.invoke(Configurat
    ionMBeanImpl.java:359)
    at com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:15
    55)
    at com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:15
    23)
    at weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:468)
    at weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:209)
    at $Proxy45.updateDeployments(Unknown Source)
    at weblogic.management.configuration.ServerMBean_CachingStub.updateDeplo
    yments(ServerMBean_CachingStub.java:2761)
    at weblogic.management.mbeans.custom.ApplicationManager.startConfigManag
    er(ApplicationManager.java:370)
    at weblogic.management.mbeans.custom.ApplicationManager.start(Applicatio
    nManager.java:160)
    at java.lang.reflect.Method.invoke(Native Method)
    at weblogic.management.internal.DynamicMBeanImpl.invokeLocally(DynamicMB
    eanImpl.java:636)
    at weblogic.management.internal.DynamicMBeanImpl.invoke(DynamicMBeanImpl
    .java:621)
    at weblogic.management.internal.ConfigurationMBeanImpl.invoke(Configurat
    ionMBeanImpl.java:359)
    at com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:15
    55)
    at com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:15
    23)
    at weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:468)
    at weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:209)
    at $Proxy64.start(Unknown Source)
    at weblogic.management.configuration.ApplicationManagerMBean_CachingStub
    .start(ApplicationManagerMBean_CachingStub.java:480)
    at weblogic.management.Admin.startApplicationManager(Admin.java:1180)
    at weblogic.management.Admin.finish(Admin.java:590)
    at weblogic.t3.srvr.T3Srvr.start(T3Srvr.java:518)
    at weblogic.t3.srvr.T3Srvr.run(T3Srvr.java:203)
    at weblogic.Server.main(Server.java:35)
    >
    <Jan 21, 2003 2:28:14 AM PST> <Notice> <Management> <Application Poller started
    for development server.>
    <Jan 21, 2003 2:28:19 AM PST> <Notice> <WebLogicServer> <ListenThread listening
    on port 7001>
    <Jan 21, 2003 2:28:19 AM PST> <Notice> <WebLogicServer> <SSLListenThread listeni
    ng on port 7002>
    <Jan 21, 2003 2:28:20 AM PST> <Notice> <Management> <Starting discovery of Manag
    ed Server... This feature is on by default, you may turn this off by passing -Dw
    eblogic.management.discover=false>
    <Jan 21, 2003 2:28:20 AM PST> <Notice> <WebLogicServer> <Started WebLogic Admin
    Server "examplesServer" for domain "examples" running in Development Mode>

    URL=jdbc:weblogic:oracle:oracle8i(server)
    Driver Classname=weblogic.jdbc.oci.Driver
    AClname=weblogic.jdbc.connectionPool.oraclePool
    intialcapacity=1
    MaximumCapacity=10
    Capacity Increment=2
    Login Delay Seconds=1sec
    Refresh Period=15 Minutes
    Supports Local Transaction=No
    Allow Shrinking=No
    Shrink Period=15
    Prepared Statement Cache Size=10
    TargetServer=ExamplesServer
    Properties
    user=Objectel
    password=superman
    Test table=yes
    Test Reserved Connections=yes
    Test Released Connections=Yes
    I could able to connect to oracledataBase if I use
    user=scott
    password=tiger
    with any other database user Iam getting the following error
    Could not create pool connection. The DBMS driver exception was:java.sql.SQLException:
    ORA-01017: invalid username/password
    "Neo Gigs" <[email protected]> wrote:
    By end of the error you shown:
    <Jan 21, 2003 2:28:20 AM PST> <Notice> <WebLogicServer> <Started WebLogicAdmin
    Server "examplesServer" for domain "examples" running in DevelopmentMode>
    You are running the Examples application shipped with WLS, which I guest
    the
    correct DB to connect with is Cloudscape yet to Oracle, unless you make
    changes to the original ConnectionPool in the examples. Anyhow, please
    show
    us your configuration of the ConnectionPool used when this error pops.
    "Raj" <[email protected]> wrote in message
    news:[email protected]...
    Could not create pool connection.The DBMS driver exceptionwas:java.sql.SQLException:
    ORA-01017: invalid username/password
    Even though I could able to connect to Oracle database using correctuserid,password
    and HostString using OracleClient, I couldnt able to do withconnectionpool. Here
    is the error message..
    <Jan 21, 2003 2:27:50 AM PST> <Notice> <WebLogicServer> <Starting WebLogicAdmin
    Server "examplesServer" for domain "examples">
    Starting Loading jDriver/Oracle .....
    ---------- LOGIN ERROR CODE: 1017
    ---------- LOGIN ERROR CODE: 1017
    <Jan 21, 2003 2:28:06 AM PST> <Error> <JDBC> <Cannot startup connectionpool "or
    aclePool" weblogic.common.ResourceException:
    Could not create pool connection. The DBMS driver exception was:
    java.sql.SQLException: ORA-01017: invalid username/password; logondenied - (Obj
    ectel/********@ora8i)
    atweblogic.db.oci.OciConnection.getLDAException(OciConnection.java:164)
    at weblogic.jdbc.oci.Driver.connect(Driver.java:112)
    atweblogic.jdbc.common.internal.ConnectionEnvFactory.makeConnection(Con
    nectionEnvFactory.java:193)
    atweblogic.jdbc.common.internal.ConnectionEnvFactory.createResource(Con
    nectionEnvFactory.java:134)
    atweblogic.common.internal.ResourceAllocator.makeResources(ResourceAllo
    cator.java:698)
    atweblogic.common.internal.ResourceAllocator.<init>(ResourceAllocator.j
    ava:282)
    atweblogic.jdbc.common.internal.ConnectionPool.startup(ConnectionPool.j
    ava:623)
    atweblogic.jdbc.common.JDBCService.addDeployment(JDBCService.java:107)
    atweblogic.management.mbeans.custom.DeploymentTarget.addDeployment(Depl
    oymentTarget.java:329)
    atweblogic.management.mbeans.custom.DeploymentTarget.addDeployments(Dep
    loymentTarget.java:279)
    atweblogic.management.mbeans.custom.DeploymentTarget.updateServerDeploy
    ments(DeploymentTarget.java:233)
    atweblogic.management.mbeans.custom.DeploymentTarget.updateDeployments(
    DeploymentTarget.java:193)
    at java.lang.reflect.Method.invoke(Native Method)
    atweblogic.management.internal.DynamicMBeanImpl.invokeLocally(DynamicMB
    eanImpl.java:636)
    atweblogic.management.internal.DynamicMBeanImpl.invoke(DynamicMBeanImpl
    java:621)
    atweblogic.management.internal.ConfigurationMBeanImpl.invoke(Configurat
    ionMBeanImpl.java:359)
    atcom.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:15
    55)
    atcom.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:15
    23)
    atweblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:468)
    atweblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:209)
    at $Proxy45.updateDeployments(Unknown Source)
    atweblogic.management.configuration.ServerMBean_CachingStub.updateDeplo
    yments(ServerMBean_CachingStub.java:2761)
    atweblogic.management.mbeans.custom.ApplicationManager.startConfigManag
    er(ApplicationManager.java:370)
    atweblogic.management.mbeans.custom.ApplicationManager.start(Applicatio
    nManager.java:160)
    at java.lang.reflect.Method.invoke(Native Method)
    atweblogic.management.internal.DynamicMBeanImpl.invokeLocally(DynamicMB
    eanImpl.java:636)
    atweblogic.management.internal.DynamicMBeanImpl.invoke(DynamicMBeanImpl
    java:621)
    atweblogic.management.internal.ConfigurationMBeanImpl.invoke(Configurat
    ionMBeanImpl.java:359)
    atcom.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:15
    55)
    atcom.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:15
    23)
    atweblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:468)
    atweblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:209)
    at $Proxy64.start(Unknown Source)
    atweblogic.management.configuration.ApplicationManagerMBean_CachingStub
    start(ApplicationManagerMBean_CachingStub.java:480)
    atweblogic.management.Admin.startApplicationManager(Admin.java:1180)
    at weblogic.management.Admin.finish(Admin.java:590)
    at weblogic.t3.srvr.T3Srvr.start(T3Srvr.java:518)
    at weblogic.t3.srvr.T3Srvr.run(T3Srvr.java:203)
    at weblogic.Server.main(Server.java:35)
    atweblogic.jdbc.common.internal.ConnectionEnvFactory.makeConnection(Con
    nectionEnvFactory.java:209)
    atweblogic.jdbc.common.internal.ConnectionEnvFactory.createResource(Con
    nectionEnvFactory.java:134)
    atweblogic.common.internal.ResourceAllocator.makeResources(ResourceAllo
    cator.java:698)
    atweblogic.common.internal.ResourceAllocator.<init>(ResourceAllocator.j
    ava:282)
    atweblogic.jdbc.common.internal.ConnectionPool.startup(ConnectionPool.j
    ava:623)
    atweblogic.jdbc.common.JDBCService.addDeployment(JDBCService.java:107)
    atweblogic.management.mbeans.custom.DeploymentTarget.addDeployment(Depl
    oymentTarget.java:329)
    atweblogic.management.mbeans.custom.DeploymentTarget.addDeployments(Dep
    loymentTarget.java:279)
    atweblogic.management.mbeans.custom.DeploymentTarget.updateServerDeploy
    ments(DeploymentTarget.java:233)
    atweblogic.management.mbeans.custom.DeploymentTarget.updateDeployments(
    DeploymentTarget.java:193)
    at java.lang.reflect.Method.invoke(Native Method)
    atweblogic.management.internal.DynamicMBeanImpl.invokeLocally(DynamicMB
    eanImpl.java:636)
    atweblogic.management.internal.DynamicMBeanImpl.invoke(DynamicMBeanImpl
    java:621)
    atweblogic.management.internal.ConfigurationMBeanImpl.invoke(Configurat
    ionMBeanImpl.java:359)
    atcom.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:15
    55)
    atcom.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:15
    23)
    atweblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:468)
    atweblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:209)
    at $Proxy45.updateDeployments(Unknown Source)
    atweblogic.management.configuration.ServerMBean_CachingStub.updateDeplo
    yments(ServerMBean_CachingStub.java:2761)
    atweblogic.management.mbeans.custom.ApplicationManager.startConfigManag
    er(ApplicationManager.java:370)
    atweblogic.management.mbeans.custom.ApplicationManager.start(Applicatio
    nManager.java:160)
    at java.lang.reflect.Method.invoke(Native Method)
    atweblogic.management.internal.DynamicMBeanImpl.invokeLocally(DynamicMB
    eanImpl.java:636)
    atweblogic.management.internal.DynamicMBeanImpl.invoke(DynamicMBeanImpl
    java:621)
    atweblogic.management.internal.ConfigurationMBeanImpl.invoke(Configurat
    ionMBeanImpl.java:359)
    atcom.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:15
    55)
    atcom.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:15
    23)
    atweblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:468)
    atweblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:209)
    at $Proxy64.start(Unknown Source)
    atweblogic.management.configuration.ApplicationManagerMBean_CachingStub
    start(ApplicationManagerMBean_CachingStub.java:480)
    atweblogic.management.Admin.startApplicationManager(Admin.java:1180)
    at weblogic.management.Admin.finish(Admin.java:590)
    at weblogic.t3.srvr.T3Srvr.start(T3Srvr.java:518)
    at weblogic.t3.srvr.T3Srvr.run(T3Srvr.java:203)
    at weblogic.Server.main(Server.java:35)
    >
    <Jan 21, 2003 2:28:14 AM PST> <Notice> <Management> <Application Pollerstarted
    for development server.>
    <Jan 21, 2003 2:28:19 AM PST> <Notice> <WebLogicServer> <ListenThreadlistening
    on port 7001>
    <Jan 21, 2003 2:28:19 AM PST> <Notice> <WebLogicServer> <SSLListenThreadlisteni
    ng on port 7002>
    <Jan 21, 2003 2:28:20 AM PST> <Notice> <Management> <Starting discoveryof
    Manag
    ed Server... This feature is on by default, you may turn this off bypassing -Dw
    eblogic.management.discover=false>
    <Jan 21, 2003 2:28:20 AM PST> <Notice> <WebLogicServer> <Started WebLogicAdmin
    Server "examplesServer" for domain "examples" running in DevelopmentMode>

  • Could not create pool connection with MySql

    When starting weblogic server I obtain the following error message when the conection
    pool for a MySql database should be established. What's the mistake I am doing? #The
    examples in the weblogic.properties put a "server=DEMO to the props. What is this
    server related to the MySql RDBMS? Is it mandatory? After the error message produced
    by Weblogic you'll find some information about the MySql setup (my.ini) I have made.
    Mi Mai 01 01:33:50 CEST 2002:<I> <WebLogicServer> Invoking main-style startup weblogic.jdbc.common.internal.JdbcStartup
    weblogic.jdbc.common.internal.JdbcStartup
    Mi Mai 01 01:33:50 CEST 2002:<I> <JDBC Pool> Creating connection pool ejbTestPool
    with:
    {aclName=weblogic.jdbc.connectionPool.ejbTestPool, maxCapacity=2, initialCapacity=1,
    url=jdbc:mysql://Blizzard:3306/ejbTest, props=user=du-it;password=du-it;server=3.23.4
    9-nt, capacityIncrement=1, driver=org.gjt.mm.mysql.Driver, poolName=ejbTestPool}
    Mi Mai 01 01:33:50 CEST 2002:<I> <JDBC Pool> Sleeping in createResource()
    Mi Mai 01 01:33:51 CEST 2002:<E> <JDBC Pool> Failed to create connection pool "ejbTes
    tPool"
    weblogic.common.ResourceException: weblogic.common.ResourceException:
    Could not create pool connection. The DBMS driver exception was:
    java.sql.SQLException: Invalid authorization specification: Access denied for user:
    du-it@blizzard' (Using password: YES)
    at org.gjt.mm.mysql.MysqlIO.init(MysqlIO.java:278)
    at org.gjt.mm.mysql.Connection.<init>(Connection.java:230)
    at org.gjt.mm.mysql.Driver.connect(Driver.java:126)
    at weblogic.jdbc.common.internal.ConnectionEnvFactory.makeConnection(Connecti
    onEnvFactory.java:146)
    at weblogic.jdbc.common.internal.ConnectionEnvFactory.createResource(Connecti
    onEnvFactory.java:108)
    at weblogic.common.internal.ResourceAllocator.makeResources(ResourceAllocator
    .java:771)
    at weblogic.common.internal.ResourceAllocator.<init>(ResourceAllocator.java:4
    16)
    at weblogic.jdbc.common.internal.ConnectionPool.startup(ConnectionPool.java:3
    30)
    at weblogic.jdbc.common.internal.JdbcInfo.initPools(JdbcInfo.java:117)
    at weblogic.jdbc.common.internal.JdbcInfo.startup(JdbcInfo.java:200)
    at weblogic.jdbc.common.internal.JdbcStartup.main(JdbcStartup.java:11)
    at java.lang.reflect.Method.invoke(Native Method)
    at weblogic.t3.srvr.StartupThread.runMain(StartupThread.java:219)
    at weblogic.t3.srvr.StartupThread.doWork(StartupThread.java:109)
    at weblogic.t3.srvr.PropertyExecuteThread.run(PropertyExecuteThread.java:62)
    at weblogic.jdbc.common.internal.ConnectionEnvFactory.makeConnection(Connecti
    onEnvFactory.java:154)
    at weblogic.jdbc.common.internal.ConnectionEnvFactory.createResource(Connecti
    onEnvFactory.java:108)
    at weblogic.common.internal.ResourceAllocator.makeResources(ResourceAllocator
    .java:771)
    at weblogic.common.internal.ResourceAllocator.<init>(ResourceAllocator.java:4
    16)
    at weblogic.jdbc.common.internal.ConnectionPool.startup(ConnectionPool.java:3
    30)
    at weblogic.jdbc.common.internal.JdbcInfo.initPools(JdbcInfo.java:117)
    at weblogic.jdbc.common.internal.JdbcInfo.startup(JdbcInfo.java:200)
    at weblogic.jdbc.common.internal.JdbcStartup.main(JdbcStartup.java:11)
    at java.lang.reflect.Method.invoke(Native Method)
    at weblogic.t3.srvr.StartupThread.runMain(StartupThread.java:219)
    at weblogic.t3.srvr.StartupThread.doWork(StartupThread.java:109)
    at weblogic.t3.srvr.PropertyExecuteThread.run(PropertyExecuteThread.java:62)
    at weblogic.jdbc.common.internal.ConnectionEnvFactory.createResource(Connecti
    onEnvFactory.java:124)
    at weblogic.common.internal.ResourceAllocator.makeResources(ResourceAllocator
    .java:771)
    at weblogic.common.internal.ResourceAllocator.<init>(ResourceAllocator.java:4
    16)
    at weblogic.jdbc.common.internal.ConnectionPool.startup(ConnectionPool.java:3
    30)
    at weblogic.jdbc.common.internal.JdbcInfo.initPools(JdbcInfo.java:117)
    at weblogic.jdbc.common.internal.JdbcInfo.startup(JdbcInfo.java:200)
    at weblogic.jdbc.common.internal.JdbcStartup.main(JdbcStartup.java:11)
    at java.lang.reflect.Method.invoke(Native Method)
    at weblogic.t3.srvr.StartupThread.runMain(StartupThread.java:219)
    at weblogic.t3.srvr.StartupThread.doWork(StartupThread.java:109)
    at weblogic.t3.srvr.PropertyExecuteThread.run(PropertyExecuteThread.java:62)
    MySql:
    #This File was made using the WinMySQLAdmin 1.4 Tool
    #29.04.2002 14:46:57
    #Uncomment or Add only the keys that you know how works.
    #Read the MySQL Manual for instructions
    [mysqld]
    basedir=D:/db/mysql
    #bind-address=169.254.102.136
    datadir=D:/db/mysql/data
    #anguage=D:/db/mysql/share/german
    #slow query log#=
    #tmpdir#=
    port=3306
    #set-variable=key_buffer=16M
    [WinMySQLadmin]
    Server=D:/db/mysql/bin/mysqld-nt.exe
    user=du-it
    password=du-it

    When starting weblogic server I obtain the following error message when the conection
    pool for a MySql database should be established. What's the mistake I am doing? #The
    examples in the weblogic.properties put a "server=DEMO to the props. What is this
    server related to the MySql RDBMS? Is it mandatory? After the error message produced
    by Weblogic you'll find some information about the MySql setup (my.ini) I have made.
    Mi Mai 01 01:33:50 CEST 2002:<I> <WebLogicServer> Invoking main-style startup weblogic.jdbc.common.internal.JdbcStartup
    weblogic.jdbc.common.internal.JdbcStartup
    Mi Mai 01 01:33:50 CEST 2002:<I> <JDBC Pool> Creating connection pool ejbTestPool
    with:
    {aclName=weblogic.jdbc.connectionPool.ejbTestPool, maxCapacity=2, initialCapacity=1,
    url=jdbc:mysql://Blizzard:3306/ejbTest, props=user=du-it;password=du-it;server=3.23.4
    9-nt, capacityIncrement=1, driver=org.gjt.mm.mysql.Driver, poolName=ejbTestPool}
    Mi Mai 01 01:33:50 CEST 2002:<I> <JDBC Pool> Sleeping in createResource()
    Mi Mai 01 01:33:51 CEST 2002:<E> <JDBC Pool> Failed to create connection pool "ejbTes
    tPool"
    weblogic.common.ResourceException: weblogic.common.ResourceException:
    Could not create pool connection. The DBMS driver exception was:
    java.sql.SQLException: Invalid authorization specification: Access denied for user:
    du-it@blizzard' (Using password: YES)
    at org.gjt.mm.mysql.MysqlIO.init(MysqlIO.java:278)
    at org.gjt.mm.mysql.Connection.<init>(Connection.java:230)
    at org.gjt.mm.mysql.Driver.connect(Driver.java:126)
    at weblogic.jdbc.common.internal.ConnectionEnvFactory.makeConnection(Connecti
    onEnvFactory.java:146)
    at weblogic.jdbc.common.internal.ConnectionEnvFactory.createResource(Connecti
    onEnvFactory.java:108)
    at weblogic.common.internal.ResourceAllocator.makeResources(ResourceAllocator
    .java:771)
    at weblogic.common.internal.ResourceAllocator.<init>(ResourceAllocator.java:4
    16)
    at weblogic.jdbc.common.internal.ConnectionPool.startup(ConnectionPool.java:3
    30)
    at weblogic.jdbc.common.internal.JdbcInfo.initPools(JdbcInfo.java:117)
    at weblogic.jdbc.common.internal.JdbcInfo.startup(JdbcInfo.java:200)
    at weblogic.jdbc.common.internal.JdbcStartup.main(JdbcStartup.java:11)
    at java.lang.reflect.Method.invoke(Native Method)
    at weblogic.t3.srvr.StartupThread.runMain(StartupThread.java:219)
    at weblogic.t3.srvr.StartupThread.doWork(StartupThread.java:109)
    at weblogic.t3.srvr.PropertyExecuteThread.run(PropertyExecuteThread.java:62)
    at weblogic.jdbc.common.internal.ConnectionEnvFactory.makeConnection(Connecti
    onEnvFactory.java:154)
    at weblogic.jdbc.common.internal.ConnectionEnvFactory.createResource(Connecti
    onEnvFactory.java:108)
    at weblogic.common.internal.ResourceAllocator.makeResources(ResourceAllocator
    .java:771)
    at weblogic.common.internal.ResourceAllocator.<init>(ResourceAllocator.java:4
    16)
    at weblogic.jdbc.common.internal.ConnectionPool.startup(ConnectionPool.java:3
    30)
    at weblogic.jdbc.common.internal.JdbcInfo.initPools(JdbcInfo.java:117)
    at weblogic.jdbc.common.internal.JdbcInfo.startup(JdbcInfo.java:200)
    at weblogic.jdbc.common.internal.JdbcStartup.main(JdbcStartup.java:11)
    at java.lang.reflect.Method.invoke(Native Method)
    at weblogic.t3.srvr.StartupThread.runMain(StartupThread.java:219)
    at weblogic.t3.srvr.StartupThread.doWork(StartupThread.java:109)
    at weblogic.t3.srvr.PropertyExecuteThread.run(PropertyExecuteThread.java:62)
    at weblogic.jdbc.common.internal.ConnectionEnvFactory.createResource(Connecti
    onEnvFactory.java:124)
    at weblogic.common.internal.ResourceAllocator.makeResources(ResourceAllocator
    .java:771)
    at weblogic.common.internal.ResourceAllocator.<init>(ResourceAllocator.java:4
    16)
    at weblogic.jdbc.common.internal.ConnectionPool.startup(ConnectionPool.java:3
    30)
    at weblogic.jdbc.common.internal.JdbcInfo.initPools(JdbcInfo.java:117)
    at weblogic.jdbc.common.internal.JdbcInfo.startup(JdbcInfo.java:200)
    at weblogic.jdbc.common.internal.JdbcStartup.main(JdbcStartup.java:11)
    at java.lang.reflect.Method.invoke(Native Method)
    at weblogic.t3.srvr.StartupThread.runMain(StartupThread.java:219)
    at weblogic.t3.srvr.StartupThread.doWork(StartupThread.java:109)
    at weblogic.t3.srvr.PropertyExecuteThread.run(PropertyExecuteThread.java:62)
    MySql:
    #This File was made using the WinMySQLAdmin 1.4 Tool
    #29.04.2002 14:46:57
    #Uncomment or Add only the keys that you know how works.
    #Read the MySQL Manual for instructions
    [mysqld]
    basedir=D:/db/mysql
    #bind-address=169.254.102.136
    datadir=D:/db/mysql/data
    #anguage=D:/db/mysql/share/german
    #slow query log#=
    #tmpdir#=
    port=3306
    #set-variable=key_buffer=16M
    [WinMySQLadmin]
    Server=D:/db/mysql/bin/mysqld-nt.exe
    user=du-it
    password=du-it

  • ERROR Could not create DOM from control.xml

    Hi All,
    I am installaing 4.7EE on Sun Solaris 5.9 SPARC with Oracle and JDK version is 1.4.2_08. When i am running sapinst, sapinst GUI opens and after when i am selecting the Central installtion and i click on Next it giving error message that
    WARNING Could not read file control.xml. Please make sure that you called SAPinst with the correct control file (the control file is given to SAPinst as its first command line parameter or as value of the command line property SAPINST_CONTROL_URL)
    ERROR Could not create DOM from control.xml
    How to solve this error. I have searched in SDN but i am unable to get the solution.
    Mahesh C

    Hi Kiran,
    I have given all permissions to the control file. But these control files are in different places /SAPINST/UNIX/SUNOS_64/PATCOL640/WEBAS630 and ORA, DB2, DB6, IND, INF, ADA in these folders i can c the Control.xml files. But i have given all read write and execute permissions but still its getting the same error. I have downloaded the same IM for 3 times and tried.. But the result is the same.
    Is there any other way of work around for this...
    Thanks
    Mahesh C

  • Ora-12154 Could not resolve the connect Identifier specified

    I am facing problem for communicating to Microsoft SQL Server through Oracle GateWay.
    *1*. In installed Oracle Gateway 11.2 @D:\product\11.2.0\tg
    *2. D:\product\11.2.0\tg\dg4msql\admin\initdg4msql.ora* is as:
    HS_FDS_CONNECT_INFO=dba.Insignia
    HS_FDS_TRACE_LEVEL=OFF
    HS_FDS_RECOVERY_ACCOUNT=RECOVER
    HS_FDS_RECOVERY_PWD=RECOVER
    *3. listener.ora is as (D:\product\11.2.0\tg\NETWORK\ADMIN\tnsnames.ora)*
    LISTENER =
    (DESCRIPTION_LIST =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = TCP)(HOST = dba)(PORT = 1521))
    (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC1521))
    ADR_BASE_LISTENER = D:\product\11.2.0\tg
    SID_LIST_LISTENER =
    (SID_LIST =
    (SID_DESC =
    (SID_NAME = dg4dmssqldb)
    (PROGRAM = D:\product\11.2.0\tg\bin\dg4msql)
    SUBSCRIBE_FOR_NODE_DOWN_EVENT_LISTENER=OFF
    *4. tnsnames.ora is as (D:\product\11.2.0\tg\NETWORK\ADMIN\listener.ora)*
    PROD=
    (DESCRIPTION=
    (ADDRESS=(PROTOCOL=tcp)(HOST=192.168.0.230)(PORT=1521))
    (CONNECT_DATA=(SID=PROD))
    msql1=
    (DESCRIPTION=
    (ADDRESS_LIST=
    (ADDRESS=(PROTOCOL=TCP)(HOST=dba)(PORT=1521))
    (CONNECT_DATA=
    (SID=dg4dmssqldb) )
    (HS=OK)
    *5. Oracle Database Link (its working well)*
    create database link apps connect to dba identified by dba using 'prod';
    *6. Microsoft Sql server Database Link*
    create database link msql1 connect to "sa" identified by "angal" using 'msql1' ;
    When i try to select data through microsoft sql server database link its show following error;
    Ora-12154 Could not resolve the connect Identifier specified
    Wher i wrong......

    Hello,
    I have not used Oracle Gateway for a long time, but did you try to rename the file D:\product\11.2.0\tg\dg4msql\admin\initdg4msql.ora into D:\product\11.2.0\tg\dg4msql\admin\initdg4dmssqldb.ora ?
    initdg4msql.ora is the default name, and should be changed if you do not use dg4msql as gateway SID:
    http://download.oracle.com/docs/cd/E11882_01/gateways.112/e12013/configsql.htm#autoId2
    Hope it will help.
    Regards,
    Sylvie

  • FPN Could not create remote delta link

    Hi everybody,
    I am trying to create a Remote Delta Link from producer content (EP Version 7.0 SP11) to consumer (EP Version 7.0 SP14).
    I have achieved the following FPN settings/configuration:
    SSO Connection in both direction
    Connection test is done successfully
    Producer registration done successfully
    The user is existing in both portals (Producer and Consumer)
    But unfortunately I am receiving the following RDL copy and paste error message:
    *Could not create remote delta link
    Could not connect to producer portal. Please check that the producer portal is running, there are no network problems, and your consumer settings for the producer are configured properly.*
    The producer is running.
    There are no network problem
    and the setting are correct.
    Any replay is welcome.
    Kind regards,
    Rashid
    Edited by: Rashid Salem on Aug 25, 2008 4:35 PM
    Edited by: Rashid Salem on Aug 25, 2008 4:37 PM

    Hi Sascha,
    no, there was no changes on the P4 Ports.
    The producer and consumer P4 Ports are configured as default ports. Producer P4 Port: 50004 and Consumer P4 Port: 51004.
    And if the P4 ports have been changed there is a possibility to enter the P4 Ports values in both Producer and consumer portals:
    System Administration > System Configuration > Service Configuration >Applications > ProducerInformationService > Alias To Ports
    I tried also this way/possibility without any success ;-(
    Any idea how to solve the issue?
    Kind regards,
    Rashid
    Edited by: Rashid Salem on Aug 25, 2008 5:00 PM

  • ORA-12154 Could not to resolve service name

    I need some help. We have installed Oracle 8.1.6 for Windows NT on my PC one year ago. I also have Forms 5.0 on my PC that had connection service to Oracle database on Unix mashine. Now we don't have this database on Unix mashine so I desided to create a new small database on my PC in order to run some existing Forms. Using Oracle Net8 easy to config I created new service datamart/datamart@orc0 (It was possible only using IPC(local process) not TCP/IP). Now I can access my database using SQL*PLUS but I cannot to connect to this database using Forms. I have error message:
    ORA-12154 Could not to resolve service name. Any Ideas?
    Thanks in advance,
    Galia

    configure tnsnames.ora of home of developer.
    Atul

  • Install of SAP HANA Studio Dev Ed v1.00.80 fails with "Could not create the Java Virtual Machine"

    Hello,
    Scope: JVM error during initial install of SAP HANA Studio Developer Edition v1.00.80, Win86/32bit
    Source: installation files pulled from HANA Studio tab at https://hanadeveditionsapicl.hana.ondemand.com/hanadevedition/, which is a link from the main HANA site of http://scn.sap.com/community/developer-center/hana.  zip folder: "sap_hana_win32_studio_rev80"
    Targeted O/S: Windows 7, 32-bit, local Java is SE 7, update 67.   Java environment has been confirmed via checks provided at http://www.java.com/en/download/manual.jsp
    Actions taken:
    Attempted to update the installation's eclipse.ini file by reducing the -Xmx value; see details below.
    Read thru postings such as http://scn.sap.com/thread/3390626 and the threads it recommended.
    Checked OSS (ie Note 1859686 - HANA Studio does not start)
    Description of installation error:
    Shortly after executing "hdbinst", it fails with the error "Could not create the Java Virtual Machine".  I've verified that there is nearly 3G of memory free.  What I did notice, as shown in the attached files, is that Eclipse is part of this installation and it's pre-loaded with the "eclipse.ini".  I firmly believe the solution could be to reduce parameter "-Xmx1024m" to "-Xmx512m" but it's a catch-22 because even after updating eclipse.ini (in installation folder C:\Program Files\SAP\hdbstudio\tmp_p2director2014.08.13_13.36.44\director), the install program requires that the "hdbstudio" folder to be empty upon restarting it.
    Since the installation is basically a package with a lot of .jar files, there is no eclipse.ini file available in the source install folder; otherwise, updating it there would be the easiest solution if that option were available. The file is only available in the targeted deployment folder above.
    If you have encountered this same error and were able to resolve it, I would be grateful to know of your solution.  Thanks very much.
    FYI: the HANA Client installed with no issues.
    Jim Cleek
    FYI: the images below reflect the sequence of images produced during the installation.
    after clicking OK above, the screen below gets updated (see the "is not empty" msg).
    Below is the eclipse.ini file located in the deployed/target folder:
    Message was edited by: Jim Cleek
    FYI: Using information from the SAP HANA Database - Studio Installation and Update Guide, I tried to override the installation's use of its eclipse.ini file by passing my own modified version (with "-Xmx512m") of that file that was placed in a separate folder.  The cmd used via DOS window was "hdbsetup.exe -a studio --configfile=C:\Users\Admin\Downloads\eclipse.ini" and even though it successfully launched the SAP HANA Lifecycle Management gui, it failed on the first step with the same JVM create error as above because it appears to have used its own eclipse.ini file, which has "-Xmx1024m".

    Update: a message was opened with SAP but unfortunately they could not provide a resolution for this particular scenario.  They admitted that the eclipse.ini file cannot be updated since it is bundled as part of the installation package.  One point to make that I did not make before was that this was being attempted on an Oracle VirtualBox (4.3.10); the SAP HANA contact said he assumed that SAP has not tested this particular scenario, thus it could not be supported.
    Resolution: the end result was to abort trying to install SAP HANA Client and Studio on the Oracle VirtualBox but to install it locally on my own desktop, which runs on Windows 7 Enterprise 64-bit with 8G of memory.  The SAP HANA files below were downloaded, extracted and installed successfully in the order shown.
    FYI: the Studio installation detected that a 64-bit version of Java was not installed so I installed that and then adjusted the User environmental variable JAVA_HOME to point to that new path, leaving the System variable still pointing to the pre-existing 32-bit Java path.
    SAPCAR 7.20 -> Windows on x64 64bit:  SAPCAR_315-20010453.EXE
    IMDB_CLIENT100_80_0-10009664.SAR   Revision 80 for SAP HANA CLIENT 1.00
    Support Package SAP HANA CLIENT 1.00 Windows on x64 64bit
    IMC_STUDIO100_80_0-20007647.SAR   Revision 80 for SAP HANA STUDIO 1.00
    Support Package SAP HANA STUDIO 1.00 Windows on x64 64bit
    jre-7u67-windows-x64.exe - http://www.oracle.com/technetwork/java/javase/downloads/jre7-downloads-1880261.html
    Jim Cleek
    HP Enterprise Services

  • Could not create listener

    My listener was working fine but suddenly stopped working
    and I can't create a new one with the Net Configuration Assistant (ERROR: Could not create listener)
    Any ideas?
    Thank u

    Maybe better approach would be to try to start old one, not just create new?
    Try this:
    C:\>lsnrctl
    LSNRCTL for 32-bit Windows: Version 9.2.0.7.0 - Production on 30-MAR-2006 01:35:27
    Copyright (c) 1991, 2002, Oracle Corporation. All rights reserved.
    LSNRCTL> start
    Starting tnslsnr: please wait...
    TNSLSNR for 32-bit Windows: Version 9.2.0.7.0 - Production
    System parameter file is C:\oracle\ora92\network\admin\listener.ora
    If your old listener was named differently than LISTENER, before start command.
    LSNRCTL> set current_listener my_listener
    Current Listener is my_listener
    Best Regards
    Krystian Zieja / mob

  • IDM's config.sh failed on "Could not create the Java virtual machine"

    I have OL5.7 32bit(Oracle Linux) set 2.5GB RAM. Installed rcu11.1.1.5's schemas, wls10.3.5, idm11.1.1.2.0 and patched to tdm11.1.1.5.0
    I tried to configure IDM's components OID, OVD and ODSM and to create the domain for these.
    ORACLE_HOME=/u01/app/oracle/FM/Oracle_IDM1
    <ORACLE_HOME>/bin/config.sh
    error msg:
    >
    [oracle@buoel57 bin]$ ./config.sh
    Starting Fusion Middleware Configuration Wizard
    ORACLE_HOME set as /u01/app/oracle/FM/Oracle_IDM1
    PATH set as /u01/app/oracle/FM/Oracle_IDM1/bin:/usr/kerberos/bin:/usr/local/bin:/bin:/usr/bin:/home/oracle/bin:/home/oracle/bin
    LD_LIBRARY_PATH set as /u01/app/oracle/FM/Oracle_IDM1/lib
    Starting Oracle Universal Installer...
    Checking swap space: must be greater than 500 MB. Actual 4191 MB Passed
    Checking monitor: must be configured to display at least 256 colors. Actual 65536 Passed
    Preparing to launch Oracle Universal Installer from /tmp/OraInstall2011-11-24_10-07-38AM. Please wait ...[oracle@buoel57 bin]$
    Error occurred during initialization of VM
    Could not reserve enough space for object heap
    Could not create the Java virtual machine.
    [oracle@buoel57 bin]$
    >
    Java info
    >
    [oracle@buoel57 bin]$ which java
    /u01/app/oracle/FM/jdk160_24/bin/java
    [oracle@buoel57 bin]$ java -version
    java version "1.6.0_24"
    Java(TM) SE Runtime Environment (build 1.6.0_24-b50)
    Java HotSpot(TM) Client VM (build 19.1-b02, mixed mode)
    [oracle@buoel57 bin]$
    >
    Where should I start to look?
    The log as follow, no much info
    >
    [oracle@buoel57 logs]$ more installActions2011-11-24_12-04-36PM.log
    The file oraparam.ini could not be found at /u01/app/oracle/FM/Oracle_IDM1/bin/../oui/bin/oraparam.ini
    Using paramFile: /u01/app/oracle/FM/Oracle_IDM1/oui/oraparam.ini
    Checking swap space: must be greater than 500 MB. Actual 4191 MB Passed
    Checking monitor: must be configured to display at least 256 colors. Actual 65536 Passed
    The number of files bootstrapped for the jre is 699.
    The number of files bootstrapped for the oui is 100.
    Using the umask value '027' available from oraparam.ini
    Execvp of the child jre : the cmdline is /tmp/OraInstall2011-11-24_12-04-36PM/jre/bin/java, and the argv is
    /tmp/OraInstall2011-11-24_12-04-36PM/jre/bin/java
    -Doracle.installer.library_loc=/tmp/OraInstall2011-11-24_12-04-36PM/oui/lib/linux
    -Doracle.installer.oui_loc=/tmp/OraInstall2011-11-24_12-04-36PM/oui
    -Doracle.installer.bootstrap=TRUE
    -Doracle.installer.startup_location=/u01/app/oracle/FM/Oracle_IDM1/oui/bin
    -Doracle.installer.jre_loc=../../jre
    -Doracle.installer.nlsEnabled="TRUE"
    -Doracle.installer.prereqConfigLoc=/tmp/OraInstall2011-11-24_12-04-36PM/prereq
    -Doracle.installer.unixVersion=2.6.32-200.13.1.el5uek
    -mx1024m
    -XX:MaxPermSize=1024m
    -cp
    /tmp/OraInstall2011-11-24_12-04-36PM::/tmp/OraInstall2011-11-24_12-04-36PM/ext/jlib/enginehelp.jar:/tmp/OraInstall2011-11-24_12-04-3
    6PM/ext/jlib/dms.jar:/tmp/OraInstall2011-11-24_12-04-36PM/ext/jlib/commonutils.jar:/tmp/OraInstall2011-11-24_12-04-36PM/ext/jlib/mes
    sage.jar:/tmp/OraInstall2011-11-24_12-04-36PM/ext/jlib/glassfish.jaxb.xjc_1.2.0.0_2-1-7.jar:/tmp/OraInstall2011-11-24_12-04-36PM/ext
    lib/ojmisc.jar:/tmp/OraInstall2011-11-24_12-04-36PM/oui/jlib/xml.jar:/tmp/OraInstall2011-11-24_12-04-36PM/oui/jlib/srvm.jar:/tmp/Ora
    Install2011-11-24_12-04-36PM/oui/jlib/classes12.jar
    oracle.sysman.oio.oioc.OiocOneClickInstaller
    UnixGroups="{oinstall,dba,}"
    -scratchPath
    /tmp/OraInstall2011-11-24_12-04-36PM
    -sourceType
    network
    -timestamp
    2011-11-24_12-04-36PM
    -weblogicConfig
    ORACLE_HOME=/u01/app/oracle/FM/Oracle_IDM1
    -invPtrLoc
    /u01/app/oracle/FM/Oracle_IDM1/oraInst.loc
    -oneclick
    -Doracle.config.mode=true
    [oracle@buoel57 logs]$
    [oracle@buoel57 logs]$

    Looks like you do not have enough free memory to create the 1GB Java VM you are trying to create. Have you checked that the server has enough free RAM?

  • Could not create HR schema - Oracle 10gR2

    Dear all,
    I am running Oracle database 10.2.0.2.0 on Sun Solaris for x86.
    In the installation process, I created a template database named "orcl". Both the installation of software and database creation are completed successfully.
    Now I want to create the HR schema in my database, however this could not be done successfully. Please refer to ouputs below:
    bash-3.00$ sqlplus /nolog
    SQLPlus: Release 10.2.0.2.0 - Production on Mon May 17 10:29:43 2010*
    Copyright (c) 1982, 2005, Oracle.  All Rights Reserved.
    SQL> connect sys/oracle@orcl as sysdba
    Connected.
    SQL> alter user hr account unlock identified by hr;
    User altered.
    SQL> @?/demo/schema/human_resources/hr_code.sql
    Procedure created.
    BEFORE INSERT OR UPDATE OR DELETE ON employees
    ERROR at line 2:
    ORA-00942: table or view does not exist
    ALTER TRIGGER secure_employees DISABLE
    ERROR at line 1:
    ORA-04080: trigger 'SECURE_EMPLOYEES' does not exist
    Warning: Procedure created with compilation errors.
    AFTER UPDATE OF job_id, department_id ON employees
    ERROR at line 2:
    ORA-00942: table or view does not exist
    Commit complete.
    Please help me to find out why I could not create this schema and guide me how to do this.
    Any suggestion from you is appreciated.
    Thanks so much.
    HuyNQ.
    Edited by: user8723822 on May 16, 2010 8:47 PM

    Dear all,
    Sorry for my mistake. Actually, after executing some SQL command, I see that the HR schema already applied into my system. For example:
    With these commands:
    select * from HR.countries;
    select * from hr.regions;
    select * from HR.departments;
    the output are:
    COUNTRY_ID COUNTRY_NAME                             REGION_ID
    AR         Argentina                                2
    AU         Australia                                3
    BE         Belgium                                  1
    BR         Brazil                                   2
    CA         Canada                                   2
    CH         Switzerland                              1
    CN         China                                    3
    DE         Germany                                  1
    DK         Denmark                                  1
    EG         Egypt                                    4
    FR         France                                   1
    HK         HongKong                                 3
    IL         Israel                                   4
    IN         India                                    3
    IT         Italy                                    1
    JP         Japan                                    3
    KW         Kuwait                                   4
    MX         Mexico                                   2
    NG         Nigeria                                  4
    NL         Netherlands                              1
    SG         Singapore                                3
    UK         United Kingdom                           1
    US         United States of America                 2
    ZM         Zambia                                   4
    ZW         Zimbabwe                                 4
    *25 rows selected*
    REGION_ID              REGION_NAME
    *1 Europe*
    *2 Americas*
    *3 Asia*
    *4 Middle East and Africa*
    DEPARTMENT_ID          DEPARTMENT_NAME                MANAGER_ID             LOCATION_ID
    *10 Administration 200 1700*
    *20 Marketing 201 1800*
    *30 Purchasing 114 1700*
    *40 Human Resources 203 2400*
    *50 Shipping 121 1500*
    *60 IT 103 1400*
    *70 Public Relations 204 2700*
    *80 Sales 145 2500*
    *90 Executive 100 1700*
    *100 Finance 108 1700*
    *110 Accounting 205 1700*
    *120 Treasury 1700*
    *130 Corporate Tax 1700*
    *140 Control And Credit 1700*
    *150 Shareholder Services 1700*
    *160 Benefits 1700*
    *170 Manufacturing 1700*
    *180 Construction 1700*
    *190 Contracting 1700*
    *200 Operations 1700*
    *210 IT Support 1700*
    *220 NOC 1700*
    *230 IT Helpdesk 1700*
    *240 Government Sales 1700*
    *250 Retail Sales 1700*
    *260 Recruiting 1700*
    *270 Payroll 1700*
    *27 rows selected*
    My actual problem now is that I cannot connect to the database using HR user
    SQL> connect hr/oracle@orcl as sysdba
    ERROR:
    ORA-01031: insufficient privileges
    Warning: You are no longer connected to ORACLE.
    SQL> connect hr/oracle@orcl
    ERROR:
    ORA-01017: invalid username/password; logon denied
    I don't know how to connect to my database using this user and what is its password.
    Please help me in this case...
    Thanks so much for all of your replies because it really helped me to find out the problem and what actually i am facing to now.
    HuyNQ.

  • Could not create task file

    We are installing SAP R3 4.7 sr1 on Linux SuSE SLES9, 32/bit.
    Problem: During the installation of DI, phase Database Load (Pst Processing), installation stopped , and in the log file said
    Could not create task file tmp/sapinst_instdir/.../SAPREPOS.TSK
    Anyone with the similar problem? Solution?
    Best regards,
    Igor Kokai

    Hello:
    I do not know exactly what of the following elements contributed to fix the problem, but
    following is the list of changes we did in a 3rd try to install R/3 on Sun Solaris.
    1.  Get latest SAPINST.
    2.  Use a different installation directory, which is permitted by the use os a new SAPINST.  We used something outside /tmp, which is used by default by the SAPINST that comes with the CDs.
    3.  Delete the whole installation and start again, because by just using SAPINST in the middle of the installation, the problem was not fixed.
    4.  Change the SID from DEN to DE1.
    5.  There was an answer in sdn about the problem telling a linux user to use another environment variable that was for HP-UX, but since it was suggested for them, we took it, just in case. That was also done in the middle of the installation when the problem was happening, but did not fix the problem.
    6. We did not install the oracle patch 9.2.0.7 because the patch is the one that looks for a bunch of sun patches, that although we already had them, since the error we were getting was oracle related, it was decided not to do that for now.
    7.  Smile and go ahead without desperation.
    Regards,
    Juan

Maybe you are looking for

  • Mac 2.0 Mini, 1GB, only 1280x800 with ACD 30"???

    I know it technically isn't supported, but the head genius at Regent Street was sure it would work at the reduced resolution of 1920x1200 with my ACD. As it turns out, the highest resolution that the Mini reports is 1280x800 regardless of how many co

  • Portal integration with CRM system

    Hi all, i am using portal through which i have to integrate CRM system . this CRM system contain 3 different clients let suppose  001,002,003 . can i access 3 different client with my portal by using 3 different System object how ? here any technical

  • MDG - S Workflow issue

    Hi, I have configured the MDG for Supplier where I am using the standard workflow template for Supplier Create - WS53100044. I have a couple of questions here where I need your expert help. 1.I create a CR, it goes for approval. When I run validation

  • Formatting messages

    Hi, Was wondering if anyone knew a StringBuffer-like utility for Flex/AS3? I have an issue where I display error messages on my popup window and these messages vary in length. If they're long, it stretches the width of my popup. I would like to contr

  • Can not update my IOS ... Please Help

    HI i added extra storage and i can not update my IOS and phone says i have 16.7GB avail. help please