DBMS bug in Oracle 10g Relese 2

It seems some bug appeared in Oracle 10g Release 2.
We have a single installation of that release on a Linux system.
Therefore we don't know if the bug also exists on Windows or Mac platforms.
It will be appreciated if someone can give some advice or test the issue on windows.
Here are the steps of reproducing the bug..
-- 1. Create a table with statement.
create table spreaded
( grp NUMBER,
p1 NUMBER,
p2 NUMBER,
p3 NUMBER,
p4 NUMBER
--2. Populate the table with the following PL/SQL block (or otherwise)
declare
begin
for k in 1..400000 loop -- depends on installation's memory parameters
insert into spreaded values (k, 1, NULL, NULL, NULL);
insert into spreaded values (k, NULL, 2, NULL, NULL);
insert into spreaded values (k, NULL, NULL, 3, NULL);
insert into spreaded values (k, NULL, NULL, NULL, 4);
end loop;
end;
--3. Execute the following query
select grp,
count(grp) fake,
avg(p1) prop_1,
avg(p2) prop_2,
avg(p3) prop_3,
avg(p4) prop_4
from spreaded
group by (grp) order by fake;
-- The expected first line of correct result is
GRP FAKE PROP_1 PROP_2 PROP_3 PROP_4
*** 4 1 2 3 4
where *** is some integer
-- The buggy case shows
GRP FAKE PROP_1 PROP_2 PROP_3 PROP_4
*** 1 4
FAKE is not 4 and there are NULL values.
This is against the way of handling nulls by aggregate functions.
If you get correct results, please, add new lines to table through executing PL/SQL
block with modified loop (for k in 400001..800000 loop) to double the row count and then execute select statement from 3.

Some bugs appears, some others go away, but if you think have found a bug, raise a support request to the metalink website.
Nicolas.

Similar Messages

  • Validation with DTD: Bug in Oracle 10g?

    Hi
    The following example works with Oracle 11g, but not with Oracle 10g.
    I have a XML-document (familie.xml) and a DTD-Document (familie.dtd). The XML-document is not valide, because I changed the tag "Vater" into "Dad". Within
    the DTD the "Vater"-element is described as follow: <!ELEMENT Familie (Vater, Mutter, Kind) >. If I validate the document, I get in Oracle 11g this exception:
    Unexpected Error: ORA-31011: XML-Parsing not succesful
    LPX-00104: Warning: Element "Dad" is not declared in the DTD.
    Error at line 3 occured.
    This Error is right!! But if I try the SAME example in Oracle 10g, I don't get a Exception!!!! But I should become one.
    Have anyone tested DTD-Validation in Oracle 10g or is it a bug?
    <?xml version='1.0' encoding='ISO-8859-15' ?>
    <!-- Dokument beschreibt eine Familie -->
    <Familie>
         <Dad>
              <Name>Meier</Name>
    <Vorname>David</Vorname>
         </Dad>
         <Mutter>
              <Name>Baumann</Name>
              <Vorname>Charlotte</Vorname>
         </Mutter>
         <Kind>
              <Name>Slota</Name>
              <Vorname>Kaharina</Vorname>
         </Kind>
    </Familie>
    <!ELEMENT Familie (Vater, Mutter, Kind) >
    <!ELEMENT Vater (Name, Vorname)>
    <!ELEMENT Mutter (Name, Vorname)>
    <!ELEMENT Kind (Name, Vorname) >
    <!ELEMENT Name (#PCDATA) >
    <!ELEMENT Vorname (#PCDATA) >
    set directory TEST_DIR as '....';
    DECLARE
    v_parser xmlparser.parser;
    v_document xmldom.DOMDocument;
    v_nodeList xmldom.DOMNodeList;
    v_number NUMBER;
    v_xmlDatei VARCHAR2(32);
    v_dtdDatei varchar2(32);
    parserError EXCEPTION;
    PRAGMA EXCEPTION_INIT(parserError, -20100);
    BEGIN
    v_xmlDatei := 'familie.xml';
    v_dtdDatei := 'familie.dtd';
    v_parser := xmlparser.newParser();
    DBMS_XMLPARSER.setBaseDir(v_parser, 'TEST_DIR');
    xmlparser.setValidationMode(v_parser, TRUE);
    xmlparser.parseDTD(v_parser, v_dtdDatei, 'Familie');
    xmlparser.parse(v_parser, v_xmlDatei);
    v_document:=xmlparser.getDocument(v_parser);
    xmlparser.freeParser(v_parser);
    xmldom.freeDocument(v_document);
    EXCEPTION
    WHEN parserError THEN
    xmlparser.freeParser(v_parser);
    dbms_output.put_line('Fehler beim Parsen: ' || SQLERRM);
    WHEN OTHERS THEN
    dbms_output.put_line('Unerwarteter Fehler: ' || ' ' || SQLERRM);
    END;
    null
    Message was edited by:
    user638576

    Do your sequence and column have the same name? In your code sample, it looks like they do:
    INSERT INTO LSTKPI (KPIIDD, PRMNME, KPISUP, TEMIDD1)
    VALUES (KPIIDD.NEXTVAL, NEXTPRM.PRMNME, NEXTSTA.STANAM, PDRTEM_PKG_1.rids(i));
    Maybe that has confused the parser.
    As Oracle moves forward, you can expect more object-oriented functionality. That could mean that columns could have their own attributes or methods. If so, how is the parser to know whether in this code the value KPIIDD.NEXTVAL refers to the (external) sequence or a column attribute?
    As a suggestion, try renaming the sequence.
    create sequence KPIIDD_SEQ start with ... ;
    INSERT INTO LSTKPI (KPIIDD, PRMNME, KPISUP, TEMIDD1)
    VALUES (KPIIDD_SEQ.NEXTVAL, NEXTPRM.PRMNME, NEXTSTA.STANAM, PDRTEM_PKG_1.rids(i));
    HTH,
    - Doug

  • Is it a bug in Oracle 10g rel 1

    I have server installed in Oracle 10g rel 1 and I have client installed as oracle10grel2. I am unable to export data from client machine. It is giving me a error. Can anyone help me out.
    Regards
    Vijay Kumar

    You need exp from 10gR1.
    Oracle works in downwards compatibility mode.
    This means lower version clients can connect to higher versions server, not necessarily the other way around.
    exp is a specific case as exp has sql statements hardcoded in the tool.
    Those statements are version specific.
    (One would wish Oracle would change exp to bail out immediately when connected to a lower version database)Due to this only, I need the URL for client of version 10g rel 1 for the server 10g rel 1.
    Regards
    Vijay Kumar

  • PeopleSoft HRMS 8.3 with Oracle 9i DBMS upgrading to Oracle 10g DBMS?

    Has anybody else gone down this path? We are testing under Oracle 10g, and experiencing performance issues. Thanks,
    Rich
    [email protected]

    We successfully followed the same path upgrade recently, no particular issue (except some tunning has to be done), you should absolutely read the red paper on MOS :
    PeopleSoft Enterprise Performance on Oracle 10g Database ID 747254.1+
    Nicolas.

  • Is this a bug in Oracle 10g ?

    I've been trying to port my SQL from 9.2.0.6 to 10g recently and noticed a problem using the sequence operator NEXTVAL from within a trigger, when inserting rows into another tables.
    For example, the following code works ok on 9.2.0.6 but when run on 10g the KPIIDD.NEXTVAL is inserted as NULL.
    << This is part of a Trigger on PDRTEM table >>
    INSERT INTO LSTKPI (KPIIDD, PRMNME, KPISUP, TEMIDD1)
    VALUES (KPIIDD.NEXTVAL, NEXTPRM.PRMNME, NEXTSTA.STANAM, PDRTEM_PKG_1.rids(i));
    In order to fix the problem i had to add a +0 to the NEXTVAL clause, as demonstrated in the following example which works in 9.2.0.6 and 10g
    INSERT INTO LSTKPI (KPIIDD, PRMNME, KPISUP, TEMIDD1)
    VALUES (KPIIDD.NEXTVAL+0, NEXTPRM.PRMNME, NEXTSTA.STANAM, PDRTEM_PKG_1.rids(i));
    NOTE: If the insert is outside of a Trigger then it's fine - just when within the Trigger it's a problem.

    Do your sequence and column have the same name? In your code sample, it looks like they do:
    INSERT INTO LSTKPI (KPIIDD, PRMNME, KPISUP, TEMIDD1)
    VALUES (KPIIDD.NEXTVAL, NEXTPRM.PRMNME, NEXTSTA.STANAM, PDRTEM_PKG_1.rids(i));
    Maybe that has confused the parser.
    As Oracle moves forward, you can expect more object-oriented functionality. That could mean that columns could have their own attributes or methods. If so, how is the parser to know whether in this code the value KPIIDD.NEXTVAL refers to the (external) sequence or a column attribute?
    As a suggestion, try renaming the sequence.
    create sequence KPIIDD_SEQ start with ... ;
    INSERT INTO LSTKPI (KPIIDD, PRMNME, KPISUP, TEMIDD1)
    VALUES (KPIIDD_SEQ.NEXTVAL, NEXTPRM.PRMNME, NEXTSTA.STANAM, PDRTEM_PKG_1.rids(i));
    HTH,
    - Doug

  • ORA-01722: invalid number error coming in Oracle 10g.

    Hi,
    We are getting the error "ORA-01722: invalid number" while opening a cursor using CURSOR FOR LOOP.
    This error has started coming only after we have migrated to Oracle 10g from Oracle 9i. Earlier the same code used to work properly. And also on Oracle 10g, its not happening every time. Sometimes it gives error while sometimes it works.
    Does anybody know about any such bug in Oracle 10g. Our cursor is a parametrized cursor accepting a VARCHAR2 parameter and the value we are passing to it is also character.
    Our database is Oracle 10g Enterprise Edition Release 10.2.0.3.0 - 64bit Production and is running on UNIX server.

    And also on Oracle 10g, its not happening every time. Sometimes it gives error while sometimes it works. This is typically due to
    a) environment settings that differ from session to session
    b) or more often, data
    The actual error means that Oracle expects a number and is unable to obtain a number from the input (data or SQL or bind variables) supplied. I agree with William that it looks a lot like an implicit TO_NUMBER() conversion failing.
    Why not add a debug exception handler to the code? When that exception occurs, dump the PL/SQL call stack and values of all variables and parameters to a debug/logging table (using an autonomous transaction).

  • Oracle 10g Enterprise Manager Console bug?

    I think I have come across a bug in the Oracle 10g Enterprise Manager Console. If I go into my database, then into the schema, select your schema from the list, then tables. Now once your in your tables, find one that you know of and know fairly well, right click it, and select the show dependencies. A small window will open with just that table and its tablespace and user. Select user, database name, profile, then default. If you right click on the "default" and select "show dependencies" a blank blinking window will open and stay stuck in an infinite loop until you kill the application window. I think that this is a cumbersome tablespace issue. Any thoughts?

    Hi Ugonic
    Sorry both are same, it's spelling mistake it's " WCMMISLINK". Acutally, my database is getting updated but this alert log is getting generated in enterprise manager console of 10g.
    The sql statement is
    CREATE MATERIALIZED VIEW ADASNAP REFRESH FAST START WITH SYSDATE NEXT SYSDATE+1 AS
    SELECT * FROM ADA@WCMMISLINK;
    CREATE MATERIALIZED VIEW BGTABSNAP REFRESH FAST START WITH SYSDATE NEXT SYSDATE+1 AS
    SELECT * FROM BGTAB@WCMMISLINK;
    The above query is sheduled to run every day .
    and i get the following Alert log in 10g enterprise manager console
    Generic Alert log ORA-12012: error on auto execute of job 54
    ORA-04052: error occured when looking up remote object WCMM.SYS@WCMMSERVERLINK
    ORA-00604: error occured at recursive SQL level 3
    ORA-12514: tns no listener
    ORA-06512: AT "SYS.DBMS_SNAPSHOT" line 1883
    can you guid me why the above error are occuring
    Regards
    Niranjan

  • OracleAS 10g R2 bug?

    I have a test server with this configuration:
    Win2K Advanced Server
    1 CPU
    2 gig ram
    2 gig swap
    I had OracleAS 10g R1 v9.0.4.1 on it. I un-installed everything per note 124353.1. I then installed the Infrastructure and Middle Tier on this server. Oh, I'm using the Portal and Wireless installer.
    No problems at all and everything appears to be working.
    Going to the server http://server_name I see everything in a foreign language (index.html). View source shows this tag at the top <html LANG="en.US"> so it should be in English but it is not.
    I then try the Suite link (WNIntro.htm) and it is also in a foreign language.
    Then the demos page (ASDemos.htm) is in English though.
    I have been using IE 6.0 on a Windows 2000 Desktop with all of the latest patches installed.
    Just for fun, I then tried bypassing Web Cache. http://server_name:7777 and now in IE everything is showing in English. With Firefox, everything is in a foreign language still even when going straight to Apache.
    With R1, I never saw anything like this. We have several servers running 9.0.4.1 and no Apache pages have ever come across in a foreign language.
    Example:
    Oracle Application Server 10g version 2 (10.1.2) est la plate-forme applicative intégrée la plus rapide et la plus complète du marché. Grâce à Oracle Application Server, vous pouvez :
    Améliorer la capacité de votre organisation à prévoir les changements et à y réagir
    Oracle Application Server vous permet de développer et de mettre en production de nouveaux services rapidement, de moderniser vos systèmes et applications propriétaires et d'optimiser vos processus d'entreprise en réponse à l'évolution du marché

    Jon,
    Looks like a bug to me. Try this workaround: copy all of the *html.html files found under $ORACLE_HOME/Apache/Apache/htdocs to files with the same name but with the html.en extension.  so for example, copy index.html.html to index.html.en.
    BTW, what is your browser language setting? Is it "en" or "en-US' as its default langauge?
    Pavna

  • Not a GROUP BY expression - Oracle 10g bug?

    Hi,
    I am geting 00979. 00000 - "not a GROUP BY expression" error on Oracle 10g 10.2.0.4.0 - 64bit Production.
    To illustrate my problem I created following example.
    Let think I have some shop with clothes. Everytime I sell something, I store this information in the database - storing actual time, clothes type (trousers, socks, ...) and the size of the piece (M, L, XL, ...).
    Now, system counts statistics every hour. So it goes thrue the table with sold pieces and counts the number of pieces per clothes type and per size from the beginning of the day. It is important to realize that it is from the beginning of the day. Because of that, the number of sold pieces in the statistical table grows every hour (or is at least on the same value as in previous hour).
    Now, from this statistical table I need to make new statistic. I want a statistic how many pieces per size I sold every hour.
    I created this query for that:
    SELECT TIME, xSIZE, (SOLD  - NVL((SELECT SUM(S1.SOLD)
                                      FROM STATISTICS S1
                                      WHERE S1.xSIZE = S.xSIZE
                                        AND TRUNC(S1.TIME, 'HH24') + 1/24 = S.TIME
                                        AND TO_CHAR(S1.TIME, 'HH24') != '23'
                                        AND S1.xSIZE IS NOT NULL
                                      GROUP BY TRUNC(S1.TIME, 'HH24'), S1.xSIZE),0)) SOLD
    FROM(
    SELECT TRUNC(S.TIME, 'HH24') TIME, S.xSIZE, SUM(S.SOLD) SOLD
    FROM STATISTICS S
    WHERE S.xSIZE IS NOT NULL
    GROUP BY TRUNC(S.TIME, 'HH24'), S.xSIZE
    --ORDER BY 1 DESC
    ) S
    ORDER BY TIME DESC, xSIZE ASCFirst I select number of sold pieces per hour per size. To get number of sold pieces for particular hour, I need to substract from this value number of sold pieces from previous hour. I decided to do this with parameter query...
    Running the query like this I get "not a GROUP BY expression" error. However if I uncomment the "ORDER BY 1 DESC" statement, the query works. I am pretty sure it has to do something with this line:
    AND TRUNC(S1.TIME, 'HH24') + 1/24 = S.TIME
    If you modify this query like this:
    SELECT TIME, xSIZE, (SOLD  - NVL((SELECT SUM(S1.SOLD)
                                      FROM STATISTICS S1
                                      WHERE S1.xSIZE = S.xSIZE
                                        --AND TRUNC(S1.TIME, 'HH24') + 1/24 = S.TIME
                                        AND TO_CHAR(S1.TIME, 'HH24') != '23'
                                        AND S1.xSIZE IS NOT NULL
                                      GROUP BY  S1.xSIZE),0)) SOLD
    FROM(
    SELECT TRUNC(S.TIME, 'HH24') TIME, S.xSIZE, SUM(S.SOLD) SOLD
    FROM STATISTICS S
    WHERE S.xSIZE IS NOT NULL
    GROUP BY TRUNC(S.TIME, 'HH24'), S.xSIZE
    --ORDER BY 1 DESC
    ) S
    ORDER BY TIME DESC, xSIZE ASCRemoved joining the tables on truncated time and grouping by the truncated time -> The query does not fail...
    And now the best...if you run the first query on Oracle 11g (Release 11.1.0.6.0 - 64bit Production), it works.
    Does anybody know why is the first query not working on 10g? Is there some bug or limitation for this server version?
    Please don't say me to rewrite the query in another way, I already did it, so it works on 10g as well. I am just curious why it doesn't work on 10g.
    Finally here are some data for testing.
    CREATE TABLE STATISTICS(
      TIME DATE DEFAULT SYSDATE,
      TYPE VARCHAR2(20),
      xSIZE VARCHAR2(2),
      SOLD NUMBER(5,0) DEFAULT 0
    INSERT INTO STATISTICS(TIME, TYPE, xSIZE, SOLD) VALUES(SYSDATE - 2/24, 'T-Shirt', 'M', 10);
    INSERT INTO STATISTICS(TIME, TYPE, xSIZE, SOLD) VALUES(SYSDATE - 2/24, 'Socks', 'M', 3);
    INSERT INTO STATISTICS(TIME, TYPE, xSIZE, SOLD) VALUES(SYSDATE - 2/24, 'T-Shirt', 'L', 1);
    INSERT INTO STATISTICS(TIME, TYPE, xSIZE, SOLD) VALUES(SYSDATE - 2/24, 'Socks', 'L', 50);
    INSERT INTO STATISTICS(TIME, TYPE, xSIZE, SOLD) VALUES(SYSDATE - 2/24, 'Trousers', 'XL', 7);
    INSERT INTO STATISTICS(TIME, TYPE, xSIZE, SOLD) VALUES(SYSDATE - 2/24, 'Socks', 'XL', 3);
    INSERT INTO STATISTICS(TIME, TYPE, xSIZE, SOLD) VALUES(SYSDATE - 1/24, 'T-Shirt', 'M', 13);
    INSERT INTO STATISTICS(TIME, TYPE, xSIZE, SOLD) VALUES(SYSDATE - 1/24, 'Socks', 'L', 60);
    INSERT INTO STATISTICS(TIME, TYPE, xSIZE, SOLD) VALUES(SYSDATE - 1/24, 'Trousers', 'XL', 15);
    INSERT INTO STATISTICS(TIME, TYPE, xSIZE, SOLD) VALUES(SYSDATE - 1/24, 'Socks', 'XL', 6);Edited by: user12047225 on 20.9.2011 23:12
    Edited by: user12047225 on 20.9.2011 23:45

    It is a known issue when optimizer decides to expand in-line view. You can add something (besides ORDER BY you already used) to in-line view to prevent optimizer from expanding it. For example:
    SQL> SELECT  TIME,
      2          xSIZE,
      3          (SOLD - NVL(
      4                      (
      5                       SELECT  SUM(S1.SOLD)
      6                         FROM  STATISTICS S1
      7                         WHERE S1.xSIZE = S.xSIZE
      8                           AND TRUNC(S1.TIME, 'HH24') + 1/24 = S.TIME
      9                           AND TO_CHAR(S1.TIME, 'HH24') != '23'
    10                           AND S1.xSIZE IS NOT NULL
    11                           GROUP BY TRUNC(S1.TIME, 'HH24'),
    12                                    S1.xSIZE
    13                      ),
    14                      0
    15                     )
    16          ) SOLD
    17    FROM  (
    18           SELECT  TRUNC(S.TIME, 'HH24') TIME,
    19                   S.xSIZE,
    20                   SUM(S.SOLD) SOLD
    21             FROM  STATISTICS S
    22             WHERE S.xSIZE IS NOT NULL
    23             GROUP BY TRUNC(S.TIME, 'HH24'),
    24                      S.xSIZE
    25           --ORDER BY 1 DESC
    26          ) S
    27    ORDER BY TIME DESC,
    28             xSIZE ASC
    29  /
             SELECT  TRUNC(S.TIME, 'HH24') TIME,
    ERROR at line 18:
    ORA-00979: not a GROUP BY expression
    SQL> SELECT  TIME,
      2          xSIZE,
      3          (SOLD - NVL(
      4                      (
      5                       SELECT  SUM(S1.SOLD)
      6                         FROM  STATISTICS S1
      7                         WHERE S1.xSIZE = S.xSIZE
      8                           AND TRUNC(S1.TIME, 'HH24') + 1/24 = S.TIME
      9                           AND TO_CHAR(S1.TIME, 'HH24') != '23'
    10                           AND S1.xSIZE IS NOT NULL
    11                           GROUP BY TRUNC(S1.TIME, 'HH24'),
    12                                    S1.xSIZE
    13                      ),
    14                      0
    15                     )
    16          ) SOLD
    17    FROM  (
    18           SELECT  TRUNC(S.TIME, 'HH24') TIME,
    19                   S.xSIZE,
    20                   SUM(S.SOLD) SOLD,
    21                   ROW_NUMBER() OVER(ORDER BY SUM(S.SOLD)) RN
    22             FROM  STATISTICS S
    23             WHERE S.xSIZE IS NOT NULL
    24             GROUP BY TRUNC(S.TIME, 'HH24'),
    25                      S.xSIZE
    26           --ORDER BY 1 DESC
    27          ) S
    28    ORDER BY TIME DESC,
    29             xSIZE ASC
    30  /
    TIME      XS       SOLD
    20-SEP-11 L           9
    20-SEP-11 M           0
    20-SEP-11 XL         11
    20-SEP-11 L          51
    20-SEP-11 M          13
    20-SEP-11 XL         10
    6 rows selected.
    SQL> Or use subquery factoring (WITH clause) + undocumented hint MATERIALIZE:
    SQL> WITH S AS (
      2             SELECT  /*+ MATERIALIZE */ TRUNC(S.TIME, 'HH24') TIME,
      3                     S.xSIZE,
      4                     SUM(S.SOLD) SOLD
      5               FROM  STATISTICS S
      6               WHERE S.xSIZE IS NOT NULL
      7               GROUP BY TRUNC(S.TIME, 'HH24'),
      8                        S.xSIZE
      9             --ORDER BY 1 DESC
    10            )
    11  SELECT  TIME,
    12          xSIZE,
    13          (SOLD - NVL(
    14                      (
    15                       SELECT  SUM(S1.SOLD)
    16                         FROM  STATISTICS S1
    17                         WHERE S1.xSIZE = S.xSIZE
    18                           AND TRUNC(S1.TIME, 'HH24') + 1/24 = S.TIME
    19                           AND TO_CHAR(S1.TIME, 'HH24') != '23'
    20                           AND S1.xSIZE IS NOT NULL
    21                           GROUP BY TRUNC(S1.TIME, 'HH24'),
    22                                    S1.xSIZE
    23                      ),
    24                      0
    25                     )
    26          ) SOLD
    27    FROM  S
    28    ORDER BY TIME DESC,
    29             xSIZE ASC
    30  /
    TIME      XS       SOLD
    20-SEP-11 L           9
    20-SEP-11 M           0
    20-SEP-11 XL         11
    20-SEP-11 L          51
    20-SEP-11 M          13
    20-SEP-11 XL         10
    6 rows selected.
    SQL> SY.

  • Avoid Bug 7146375 ORA-4030 MEMORY LEAK IN (Xml generation) in oracle 10g

    Hi All,
    I have to generate an xml from database which contains around 4 lac records. I had written a query using XmlSerialize and XmlElement.
    It does run properly for records less than 2 lacs.
    But when the record count goes above 2 lacs..it is throwing the following error -
    { ORA-04030: out of process memory when trying to allocate 1032 bytes (qmxlu subheap,qmemNextBuf:alloc)
    ORA-06512: at "SYS.XMLTYPE", line 111!}
    For the above error - I have tried increasing pga from 480M to 800M, but still we are getting the same error.
    After researching i found out -
    Cause
    This is caused by the following bug:
    Bug 7146375 ORA-4030 AND MEMORY LEAK IN SESSION HEAP: "KOH DUR HEAP D"
    Solution
    Bug 7146375 is fixed in 11.2
    So i tried out the query in another a db which has 11g installed and my query runs perfectly fine for records of upto 4 lacs.
    But since we have oracle 10g on our clients machine, are there other ways to achieve this XML generation other than this?
    Thanks.

    913389 wrote:
    After researching i found out -
    Cause
    This is caused by the following bug:
    Bug 7146375 ORA-4030 AND MEMORY LEAK IN SESSION HEAP: "KOH DUR HEAP D"
    Solution
    Bug 7146375 is fixed in 11.2
    So i tried out the query in another a db which has 11g installed and my query runs perfectly fine for records of upto 4 lacs.
    But since we have oracle 10g on our clients machine, are there other ways to achieve this XML generation other than this?I doubt it. If Oracle have investigated and created a bug report that says the solution is to upgrade to 11.2, then that's the answer, otherwise they would indicate that a particular 10g patch set can also be used.

  • Weblogic 81sp5 Spring Oracle 10G Hibernate 3.0 server crash windows xp

    I was using weblogic 81sp5, Spring, hibernate 3 and Oracle 9i and everything was fine. I upgraded to Oracle 10G, and now with the execution of the second SQL statement my server is crashing with the following error. Any help would be appreciated.
    An unexpected exception has been detected in native code outside the VM.
    Unexpected Signal : EXCEPTION_ACCESS_VIOLATION (0xc0000005) occurred at PC=0x61D4894C
    Function=xaolog+0x6294
    Library=c:\ora10g\bin\OraClient10.Dll
    Current Java thread:
    at oracle.jdbc.driver.T2CStatement.t2cParseExecuteDescribe(Native Method)
    at oracle.jdbc.driver.T2CPreparedStatement.executeForDescribe(T2CPreparedStatement.java:518)
    at oracle.jdbc.driver.OracleStatement.executeMaybeDescribe(OracleStatement.java:1037)
    at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:1132)
    at oracle.jdbc.driver.OraclePreparedStatement.executeInternal(OraclePreparedStatement.java:3316)
    at oracle.jdbc.driver.OraclePreparedStatement.executeQuery(OraclePreparedStatement.java:3361)
    - locked <0x101ae1d8> (a oracle.jdbc.driver.T2CPreparedStatement)
    - locked <0x113fe928> (a oracle.jdbc.driver.T2CConnection)
    at weblogic.jdbc.wrapper.PreparedStatement.executeQuery(PreparedStatement.java:124)
    at org.hibernate.jdbc.AbstractBatcher.getResultSet(AbstractBatcher.java:139)
    at org.hibernate.loader.Loader.getResultSet(Loader.java:1669)
    at org.hibernate.loader.Loader.doQuery(Loader.java:662)
    at org.hibernate.loader.Loader.doQueryAndInitializeNonLazyCollections(Loader.java:224)
    at org.hibernate.loader.Loader.loadEntity(Loader.java:1785)
    at org.hibernate.loader.entity.AbstractEntityLoader.load(AbstractEntityLoader.java:93)
    at org.hibernate.loader.entity.AbstractEntityLoader.load(AbstractEntityLoader.java:81)
    at org.hibernate.persister.entity.AbstractEntityPersister.load(AbstractEntityPersister.java:2730)
    at org.hibernate.event.def.DefaultLoadEventListener.loadFromDatasource(DefaultLoadEventListener.java:365)
    at org.hibernate.event.def.DefaultLoadEventListener.doLoad(DefaultLoadEventListener.java:346)
    at org.hibernate.event.def.DefaultLoadEventListener.load(DefaultLoadEventListener.java:123)
    at org.hibernate.event.def.DefaultLoadEventListener.onLoad(DefaultLoadEventListener.java:82)
    at org.hibernate.impl.SessionImpl.fireLoad(SessionImpl.java:891)
    at org.hibernate.impl.SessionImpl.immediateLoad(SessionImpl.java:849)
    at org.hibernate.proxy.AbstractLazyInitializer.initialize(AbstractLazyInitializer.java:62)
    at org.hibernate.proxy.AbstractLazyInitializer.getImplementation(AbstractLazyInitializer.java:98)
    at org.hibernate.proxy.CGLIBLazyInitializer.intercept(CGLIBLazyInitializer.java:158)
    at com.erac.vaa.vincent.domain.poc.Manufacturer$$EnhancerByCGLIB$$bbc19d25.toString(<generated>)
    at org.springframework.beans.BeanUtils.copyProperties(BeanUtils.java:461)
    at org.springframework.beans.BeanUtils.copyProperties(BeanUtils.java:399)
    at com.erac.vaa.vincent.services.poc.ManufacturerServiceImpl.toManufacturerDto(ManufacturerServiceImpl.java:75)
    at com.erac.vaa.vincent.services.poc.ManufacturerServiceImpl.load(ManufacturerServiceImpl.java:35)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:324)
    at org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:287)
    at org.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:181)
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:148)
    at org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:96)
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:170)
    at org.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:176)
    at $Proxy9.load(Unknown Source)
    at com.erac.vaa.vincent.view.controllers.poc.ManufacturerController.displayOne(ManufacturerController.java:107)
    at com.erac.vaa.vincent.view.controllers.poc.ManufacturerController.handleGet(ManufacturerController.java:144)
    at com.erac.vaa.vincent.view.controllers.poc.ManufacturerController.execute(ManufacturerController.java:63)
    at com.erac.riskmgmt.arch.struts.action.AbstractBindingAction.processInvoke(AbstractBindingAction.java:861)
    at com.erac.riskmgmt.arch.struts.action.AbstractBindingAction.execute(AbstractBindingAction.java:484)
    at org.apache.struts.action.RequestProcessor.processActionPerform(RequestProcessor.java:419)
    at org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:224)
    at org.apache.struts.action.ActionServlet.process(ActionServlet.java:1194)
    at org.apache.struts.action.ActionServlet.doGet(ActionServlet.java:414)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:740)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at weblogic.servlet.internal.ServletStubImpl$ServletInvocationAction.run(ServletStubImpl.java:1072)
    at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:465)
    at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:28)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:27)
    at com.erac.vaa.vincent.view.filters.OpenSessionInViewFilter.doFilterInternal(OpenSessionInViewFilter.java:104)
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:77)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:27)
    at com.erac.vaa.vincent.view.filters.AuthenticationFilter.doFilterInternal(AuthenticationFilter.java:92)
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:77)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:27)
    at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:6987)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
    at weblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppServletContext.java:3892)
    at weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestImpl.java:2766)
    at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:224)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:183)
    Dynamic libraries:
    0x00400000 - 0x0040B000 C:\bea81sp5\jdk142_08\bin\javaw.exe
    0x7C900000 - 0x7C9B0000 C:\WINDOWS\system32\ntdll.dll
    0x7C800000 - 0x7C8F4000 C:\WINDOWS\system32\kernel32.dll
    0x77DD0000 - 0x77E6B000 C:\WINDOWS\system32\ADVAPI32.dll
    0x77E70000 - 0x77F01000 C:\WINDOWS\system32\RPCRT4.dll
    0x7E410000 - 0x7E4A0000 C:\WINDOWS\system32\USER32.dll
    0x77F10000 - 0x77F57000 C:\WINDOWS\system32\GDI32.dll
    0x77C10000 - 0x77C68000 C:\WINDOWS\system32\MSVCRT.dll
    0x08000000 - 0x08138000 C:\bea81sp5\jdk142_08\jre\bin\client\jvm.dll
    0x76B40000 - 0x76B6D000 C:\WINDOWS\system32\WINMM.dll
    0x10000000 - 0x10007000 C:\bea81sp5\jdk142_08\jre\bin\hpi.dll
    0x00830000 - 0x0083E000 C:\bea81sp5\jdk142_08\jre\bin\verify.dll
    0x00840000 - 0x00859000 C:\bea81sp5\jdk142_08\jre\bin\java.dll
    0x00860000 - 0x0086E000 C:\bea81sp5\jdk142_08\jre\bin\zip.dll
    0x02B60000 - 0x02B7C000 C:\bea81sp5\jdk142_08\jre\bin\jdwp.dll
    0x00940000 - 0x00945000 C:\bea81sp5\jdk142_08\jre\bin\dt_socket.dll
    0x71AB0000 - 0x71AC7000 C:\WINDOWS\system32\ws2_32.dll
    0x71AA0000 - 0x71AA8000 C:\WINDOWS\system32\WS2HELP.dll
    0x55600000 - 0x55631000 C:\Program Files\Microsoft Firewall Client 2004\FwcWsp.dll
    0x77120000 - 0x771AC000 C:\WINDOWS\system32\OLEAUT32.dll
    0x774E0000 - 0x7761D000 C:\WINDOWS\system32\ole32.dll
    0x71A50000 - 0x71A8F000 C:\WINDOWS\System32\mswsock.dll
    0x76F20000 - 0x76F47000 C:\WINDOWS\system32\DNSAPI.dll
    0x76FB0000 - 0x76FB8000 C:\WINDOWS\System32\winrnr.dll
    0x76F60000 - 0x76F8C000 C:\WINDOWS\system32\WLDAP32.dll
    0x662B0000 - 0x66308000 C:\WINDOWS\system32\hnetcfg.dll
    0x71A90000 - 0x71A98000 C:\WINDOWS\System32\wshtcpip.dll
    0x77F60000 - 0x77FD6000 C:\WINDOWS\system32\SHLWAPI.dll
    0x773D0000 - 0x774D3000 C:\WINDOWS\WinSxS\x86_Microsoft.Windows.Common-Controls_6595b64144ccf1df_6.0.2600.2982_x-ww_ac3f9c03\comctl32.dll
    0x5D090000 - 0x5D12A000 C:\WINDOWS\system32\comctl32.dll
    0x76FC0000 - 0x76FC6000 C:\WINDOWS\system32\rasadhlp.dll
    0x071A0000 - 0x071AF000 C:\bea81sp5\jdk142_08\jre\bin\net.dll
    0x07540000 - 0x07548000 C:\bea81sp5\jdk142_08\jre\bin\nio.dll
    0x07550000 - 0x07556000 C:\bea81sp5\jdk142_08\jre\bin\ioser12.dll
    0x62F00000 - 0x62F13000 C:\ora10g\BIN\ocijdbc10.dll
    0x07D30000 - 0x07D88000 c:\ora10g\bin\OCI.dll
    0x7C340000 - 0x7C396000 C:\WINDOWS\system32\MSVCR71.dll
    0x76BF0000 - 0x76BFB000 C:\WINDOWS\system32\PSAPI.DLL
    0x61C20000 - 0x61E76000 c:\ora10g\bin\OraClient10.Dll
    0x60870000 - 0x60957000 c:\ora10g\bin\oracore10.dll
    0x60A80000 - 0x60B46000 c:\ora10g\bin\oranls10.dll
    0x63690000 - 0x636A8000 c:\ora10g\bin\oraunls10.dll
    0x60EB0000 - 0x60EB7000 c:\ora10g\bin\orauts.dll
    0x636B0000 - 0x636B6000 c:\ora10g\bin\oravsn10.dll
    0x60FA0000 - 0x61092000 c:\ora10g\bin\oracommon10.dll
    0x08940000 - 0x08FA2000 c:\ora10g\bin\orageneric10.dll
    0x63430000 - 0x63457000 c:\ora10g\bin\orasnls10.dll
    0x63750000 - 0x638BF000 c:\ora10g\bin\oraxml10.dll
    0x07DA0000 - 0x07DB1000 C:\WINDOWS\system32\MSVCIRT.dll
    0x60960000 - 0x60A7E000 c:\ora10g\bin\oran10.dll
    0x62740000 - 0x6277D000 c:\ora10g\bin\oranl10.dll
    0x62790000 - 0x627A6000 c:\ora10g\bin\oranldap10.dll
    0x627F0000 - 0x628FC000 c:\ora10g\bin\orannzsbb10.dll
    0x62530000 - 0x625A3000 c:\ora10g\bin\oraldapclnt10.dll
    0x62670000 - 0x6268B000 c:\ora10g\bin\orancrypt10.dll
    0x71AD0000 - 0x71AD9000 C:\WINDOWS\system32\WSOCK32.dll
    0x76D60000 - 0x76D79000 C:\WINDOWS\system32\iphlpapi.dll
    0x62920000 - 0x6296D000 c:\ora10g\bin\oranro10.dll
    0x626B0000 - 0x626B7000 c:\ora10g\bin\oranhost10.dll
    0x62660000 - 0x62666000 c:\ora10g\bin\orancds10.dll
    0x629C0000 - 0x629C8000 c:\ora10g\bin\orantns10.dll
    0x60B50000 - 0x60EA8000 c:\ora10g\bin\orapls10.dll
    0x07DC0000 - 0x07DC9000 c:\ora10g\bin\oraslax10.dll
    0x63080000 - 0x63284000 c:\ora10g\bin\oraplp10.dll
    0x61ED0000 - 0x61F67000 c:\ora10g\bin\orahasgen10.dll
    0x62AB0000 - 0x62B1E000 c:\ora10g\bin\oraocr10.dll
    0x62B20000 - 0x62B63000 c:\ora10g\bin\oraocrb10.dll
    0x5B860000 - 0x5B8B4000 C:\WINDOWS\system32\NETAPI32.dll
    0x62980000 - 0x62990000 c:\ora10g\bin\orantcp10.dll
    0x63520000 - 0x635BA000 c:\ora10g\bin\orasql10.dll
    0x77FE0000 - 0x77FF1000 C:\WINDOWS\system32\Secur32.dll
    0x5AD70000 - 0x5ADA8000 C:\WINDOWS\system32\uxtheme.dll
    0x74720000 - 0x7476B000 C:\WINDOWS\system32\MSCTF.dll
    0x09300000 - 0x09305000 C:\bea81sp5\weblogic81\server\bin\stackdump.dll
    0x09310000 - 0x09315000 C:\bea81sp5\weblogic81\server\bin\wlntio.dll
    0x76C90000 - 0x76CB8000 C:\WINDOWS\system32\imagehlp.dll
    0x59A60000 - 0x59B01000 C:\WINDOWS\system32\DBGHELP.dll
    0x77C00000 - 0x77C08000 C:\WINDOWS\system32\VERSION.dll
    Heap at VM Abort:
    Heap
    def new generation total 2496K, used 1836K [0x10010000, 0x102c0000, 0x104f0000)
    eden space 2240K, 74% used [0x10010000, 0x101b1d48, 0x10240000)
    from space 256K, 64% used [0x10240000, 0x10269300, 0x10280000)
    to space 256K, 0% used [0x10280000, 0x10280000, 0x102c0000)
    tenured generation total 32188K, used 18578K [0x104f0000, 0x1245f000, 0x14010000)
    the space 32188K, 57% used [0x104f0000, 0x11714890, 0x11714a00, 0x1245f000)
    compacting perm gen total 31744K, used 31580K [0x14010000, 0x15f10000, 0x18010000)
    the space 31744K, 99% used [0x14010000, 0x15ee7008, 0x15ee7200, 0x15f10000)
    Local Time = Fri Apr 20 12:43:16 2007
    Elapsed Time = 941
    # The exception above was detected in native code outside the VM
    # Java VM: Java HotSpot(TM) Client VM (1.4.2_08-b03 mixed mode)
    # An error report file has been saved as hs_err_pid3592.log.
    # Please refer to the file for further information.

    F Hesser wrote:
    I was using weblogic 81sp5, Spring, hibernate 3 and Oracle 9i and everything was fine. I upgraded to Oracle 10G, and now with the execution of the second SQL statement my server is crashing with the following error. Any help would be appreciated.
    An unexpected exception has been detected in native code outside the VM.
    Unexpected Signal : EXCEPTION_ACCESS_VIOLATION (0xc0000005) occurred at PC=0x61D4894C
    Function=xaolog+0x6294
    Library=c:\ora10g\bin\OraClient10.DllHi. The final one-time solution to this otherwise eternal risk, is
    to stop using the oracle driver in the type-2 OCI mode. The reason
    we all go to java is because native code sucks. It will kill a
    whole JVM dead as you see. If you use the Oracle driver in the
    thin mode, it is much more reliable. Please refer to the latest
    Oracle driver docs. You can tell the thin driver to use the
    tnsnames.ora file, so you retain that central DBMS config, but
    you can get away from the Oracle native code bugs that have been
    sporadically killing application servers since the mid 1990's.
    Joe Weinstein.
    >
    Current Java thread:
    at oracle.jdbc.driver.T2CStatement.t2cParseExecuteDescribe(Native Method)
    at oracle.jdbc.driver.T2CPreparedStatement.executeForDescribe(T2CPreparedStatement.java:518)
    at oracle.jdbc.driver.OracleStatement.executeMaybeDescribe(OracleStatement.java:1037)
    at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:1132)
    at oracle.jdbc.driver.OraclePreparedStatement.executeInternal(OraclePreparedStatement.java:3316)
    at oracle.jdbc.driver.OraclePreparedStatement.executeQuery(OraclePreparedStatement.java:3361)
    - locked <0x101ae1d8> (a oracle.jdbc.driver.T2CPreparedStatement)
    - locked <0x113fe928> (a oracle.jdbc.driver.T2CConnection)
    at weblogic.jdbc.wrapper.PreparedStatement.executeQuery(PreparedStatement.java:124)
    at org.hibernate.jdbc.AbstractBatcher.getResultSet(AbstractBatcher.java:139)
    at org.hibernate.loader.Loader.getResultSet(Loader.java:1669)
    at org.hibernate.loader.Loader.doQuery(Loader.java:662)
    at org.hibernate.loader.Loader.doQueryAndInitializeNonLazyCollections(Loader.java:224)
    at org.hibernate.loader.Loader.loadEntity(Loader.java:1785)
    at org.hibernate.loader.entity.AbstractEntityLoader.load(AbstractEntityLoader.java:93)
    at org.hibernate.loader.entity.AbstractEntityLoader.load(AbstractEntityLoader.java:81)
    at org.hibernate.persister.entity.AbstractEntityPersister.load(AbstractEntityPersister.java:2730)
    at org.hibernate.event.def.DefaultLoadEventListener.loadFromDatasource(DefaultLoadEventListener.java:365)
    at org.hibernate.event.def.DefaultLoadEventListener.doLoad(DefaultLoadEventListener.java:346)
    at org.hibernate.event.def.DefaultLoadEventListener.load(DefaultLoadEventListener.java:123)
    at org.hibernate.event.def.DefaultLoadEventListener.onLoad(DefaultLoadEventListener.java:82)
    at org.hibernate.impl.SessionImpl.fireLoad(SessionImpl.java:891)
    at org.hibernate.impl.SessionImpl.immediateLoad(SessionImpl.java:849)
    at org.hibernate.proxy.AbstractLazyInitializer.initialize(AbstractLazyInitializer.java:62)
    at org.hibernate.proxy.AbstractLazyInitializer.getImplementation(AbstractLazyInitializer.java:98)
    at org.hibernate.proxy.CGLIBLazyInitializer.intercept(CGLIBLazyInitializer.java:158)
    at com.erac.vaa.vincent.domain.poc.Manufacturer$$EnhancerByCGLIB$$bbc19d25.toString(<generated>)
    at org.springframework.beans.BeanUtils.copyProperties(BeanUtils.java:461)
    at org.springframework.beans.BeanUtils.copyProperties(BeanUtils.java:399)
    at com.erac.vaa.vincent.services.poc.ManufacturerServiceImpl.toManufacturerDto(ManufacturerServiceImpl.java:75)
    at com.erac.vaa.vincent.services.poc.ManufacturerServiceImpl.load(ManufacturerServiceImpl.java:35)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:324)
    at org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:287)
    at org.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:181)
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:148)
    at org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:96)
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:170)
    at org.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:176)
    at $Proxy9.load(Unknown Source)
    at com.erac.vaa.vincent.view.controllers.poc.ManufacturerController.displayOne(ManufacturerController.java:107)
    at com.erac.vaa.vincent.view.controllers.poc.ManufacturerController.handleGet(ManufacturerController.java:144)
    at com.erac.vaa.vincent.view.controllers.poc.ManufacturerController.execute(ManufacturerController.java:63)
    at com.erac.riskmgmt.arch.struts.action.AbstractBindingAction.processInvoke(AbstractBindingAction.java:861)
    at com.erac.riskmgmt.arch.struts.action.AbstractBindingAction.execute(AbstractBindingAction.java:484)
    at org.apache.struts.action.RequestProcessor.processActionPerform(RequestProcessor.java:419)
    at org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:224)
    at org.apache.struts.action.ActionServlet.process(ActionServlet.java:1194)
    at org.apache.struts.action.ActionServlet.doGet(ActionServlet.java:414)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:740)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at weblogic.servlet.internal.ServletStubImpl$ServletInvocationAction.run(ServletStubImpl.java:1072)
    at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:465)
    at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:28)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:27)
    at com.erac.vaa.vincent.view.filters.OpenSessionInViewFilter.doFilterInternal(OpenSessionInViewFilter.java:104)
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:77)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:27)
    at com.erac.vaa.vincent.view.filters.AuthenticationFilter.doFilterInternal(AuthenticationFilter.java:92)
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:77)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:27)
    at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:6987)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
    at weblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppServletContext.java:3892)
    at weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestImpl.java:2766)
    at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:224)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:183)
    Dynamic libraries:
    0x00400000 - 0x0040B000 C:\bea81sp5\jdk142_08\bin\javaw.exe
    0x7C900000 - 0x7C9B0000 C:\WINDOWS\system32\ntdll.dll
    0x7C800000 - 0x7C8F4000 C:\WINDOWS\system32\kernel32.dll
    0x77DD0000 - 0x77E6B000 C:\WINDOWS\system32\ADVAPI32.dll
    0x77E70000 - 0x77F01000 C:\WINDOWS\system32\RPCRT4.dll
    0x7E410000 - 0x7E4A0000 C:\WINDOWS\system32\USER32.dll
    0x77F10000 - 0x77F57000 C:\WINDOWS\system32\GDI32.dll
    0x77C10000 - 0x77C68000 C:\WINDOWS\system32\MSVCRT.dll
    0x08000000 - 0x08138000 C:\bea81sp5\jdk142_08\jre\bin\client\jvm.dll
    0x76B40000 - 0x76B6D000 C:\WINDOWS\system32\WINMM.dll
    0x10000000 - 0x10007000 C:\bea81sp5\jdk142_08\jre\bin\hpi.dll
    0x00830000 - 0x0083E000 C:\bea81sp5\jdk142_08\jre\bin\verify.dll
    0x00840000 - 0x00859000 C:\bea81sp5\jdk142_08\jre\bin\java.dll
    0x00860000 - 0x0086E000 C:\bea81sp5\jdk142_08\jre\bin\zip.dll
    0x02B60000 - 0x02B7C000 C:\bea81sp5\jdk142_08\jre\bin\jdwp.dll
    0x00940000 - 0x00945000 C:\bea81sp5\jdk142_08\jre\bin\dt_socket.dll
    0x71AB0000 - 0x71AC7000 C:\WINDOWS\system32\ws2_32.dll
    0x71AA0000 - 0x71AA8000 C:\WINDOWS\system32\WS2HELP.dll
    0x55600000 - 0x55631000 C:\Program Files\Microsoft Firewall Client 2004\FwcWsp.dll
    0x77120000 - 0x771AC000 C:\WINDOWS\system32\OLEAUT32.dll
    0x774E0000 - 0x7761D000 C:\WINDOWS\system32\ole32.dll
    0x71A50000 - 0x71A8F000 C:\WINDOWS\System32\mswsock.dll
    0x76F20000 - 0x76F47000 C:\WINDOWS\system32\DNSAPI.dll
    0x76FB0000 - 0x76FB8000 C:\WINDOWS\System32\winrnr.dll
    0x76F60000 - 0x76F8C000 C:\WINDOWS\system32\WLDAP32.dll
    0x662B0000 - 0x66308000 C:\WINDOWS\system32\hnetcfg.dll
    0x71A90000 - 0x71A98000 C:\WINDOWS\System32\wshtcpip.dll
    0x77F60000 - 0x77FD6000 C:\WINDOWS\system32\SHLWAPI.dll
    0x773D0000 - 0x774D3000 C:\WINDOWS\WinSxS\x86_Microsoft.Windows.Common-Controls_6595b64144ccf1df_6.0.2600.2982_x-ww_ac3f9c03\comctl32.dll
    0x5D090000 - 0x5D12A000 C:\WINDOWS\system32\comctl32.dll
    0x76FC0000 - 0x76FC6000 C:\WINDOWS\system32\rasadhlp.dll
    0x071A0000 - 0x071AF000 C:\bea81sp5\jdk142_08\jre\bin\net.dll
    0x07540000 - 0x07548000 C:\bea81sp5\jdk142_08\jre\bin\nio.dll
    0x07550000 - 0x07556000 C:\bea81sp5\jdk142_08\jre\bin\ioser12.dll
    0x62F00000 - 0x62F13000 C:\ora10g\BIN\ocijdbc10.dll
    0x07D30000 - 0x07D88000 c:\ora10g\bin\OCI.dll
    0x7C340000 - 0x7C396000 C:\WINDOWS\system32\MSVCR71.dll
    0x76BF0000 - 0x76BFB000 C:\WINDOWS\system32\PSAPI.DLL
    0x61C20000 - 0x61E76000 c:\ora10g\bin\OraClient10.Dll
    0x60870000 - 0x60957000 c:\ora10g\bin\oracore10.dll
    0x60A80000 - 0x60B46000 c:\ora10g\bin\oranls10.dll
    0x63690000 - 0x636A8000 c:\ora10g\bin\oraunls10.dll
    0x60EB0000 - 0x60EB7000 c:\ora10g\bin\orauts.dll
    0x636B0000 - 0x636B6000 c:\ora10g\bin\oravsn10.dll
    0x60FA0000 - 0x61092000 c:\ora10g\bin\oracommon10.dll
    0x08940000 - 0x08FA2000 c:\ora10g\bin\orageneric10.dll
    0x63430000 - 0x63457000 c:\ora10g\bin\orasnls10.dll
    0x63750000 - 0x638BF000 c:\ora10g\bin\oraxml10.dll
    0x07DA0000 - 0x07DB1000 C:\WINDOWS\system32\MSVCIRT.dll
    0x60960000 - 0x60A7E000 c:\ora10g\bin\oran10.dll
    0x62740000 - 0x6277D000 c:\ora10g\bin\oranl10.dll
    0x62790000 - 0x627A6000 c:\ora10g\bin\oranldap10.dll
    0x627F0000 - 0x628FC000 c:\ora10g\bin\orannzsbb10.dll
    0x62530000 - 0x625A3000 c:\ora10g\bin\oraldapclnt10.dll
    0x62670000 - 0x6268B000 c:\ora10g\bin\orancrypt10.dll
    0x71AD0000 - 0x71AD9000 C:\WINDOWS\system32\WSOCK32.dll
    0x76D60000 - 0x76D79000 C:\WINDOWS\system32\iphlpapi.dll
    0x62920000 - 0x6296D000 c:\ora10g\bin\oranro10.dll
    0x626B0000 - 0x626B7000 c:\ora10g\bin\oranhost10.dll
    0x62660000 - 0x62666000 c:\ora10g\bin\orancds10.dll
    0x629C0000 - 0x629C8000 c:\ora10g\bin\orantns10.dll
    0x60B50000 - 0x60EA8000 c:\ora10g\bin\orapls10.dll
    0x07DC0000 - 0x07DC9000 c:\ora10g\bin\oraslax10.dll
    0x63080000 - 0x63284000 c:\ora10g\bin\oraplp10.dll
    0x61ED0000 - 0x61F67000 c:\ora10g\bin\orahasgen10.dll
    0x62AB0000 - 0x62B1E000 c:\ora10g\bin\oraocr10.dll
    0x62B20000 - 0x62B63000 c:\ora10g\bin\oraocrb10.dll
    0x5B860000 - 0x5B8B4000 C:\WINDOWS\system32\NETAPI32.dll
    0x62980000 - 0x62990000 c:\ora10g\bin\orantcp10.dll
    0x63520000 - 0x635BA000 c:\ora10g\bin\orasql10.dll
    0x77FE0000 - 0x77FF1000 C:\WINDOWS\system32\Secur32.dll
    0x5AD70000 - 0x5ADA8000 C:\WINDOWS\system32\uxtheme.dll
    0x74720000 - 0x7476B000 C:\WINDOWS\system32\MSCTF.dll
    0x09300000 - 0x09305000 C:\bea81sp5\weblogic81\server\bin\stackdump.dll
    0x09310000 - 0x09315000 C:\bea81sp5\weblogic81\server\bin\wlntio.dll
    0x76C90000 - 0x76CB8000 C:\WINDOWS\system32\imagehlp.dll
    0x59A60000 - 0x59B01000 C:\WINDOWS\system32\DBGHELP.dll
    0x77C00000 - 0x77C08000 C:\WINDOWS\system32\VERSION.dll
    Heap at VM Abort:
    Heap
    def new generation total 2496K, used 1836K [0x10010000, 0x102c0000, 0x104f0000)
    eden space 2240K, 74% used [0x10010000, 0x101b1d48, 0x10240000)
    from space 256K, 64% used [0x10240000, 0x10269300, 0x10280000)
    to space 256K, 0% used [0x10280000, 0x10280000, 0x102c0000)
    tenured generation total 32188K, used 18578K [0x104f0000, 0x1245f000, 0x14010000)
    the space 32188K, 57% used [0x104f0000, 0x11714890, 0x11714a00, 0x1245f000)
    compacting perm gen total 31744K, used 31580K [0x14010000, 0x15f10000, 0x18010000)
    the space 31744K, 99% used [0x14010000, 0x15ee7008, 0x15ee7200, 0x15f10000)
    Local Time = Fri Apr 20 12:43:16 2007
    Elapsed Time = 941
    # The exception above was detected in native code outside the VM
    # Java VM: Java HotSpot(TM) Client VM (1.4.2_08-b03 mixed mode)
    # An error report file has been saved as hs_err_pid3592.log.
    # Please refer to the file for further information.

  • Error while sending a mail using UTP_MAIL package in Oracle 10g

    Hi,
    We are using UTP_MAIL package to send a mail from Oracle 10g.We have follwed the following steps ...
    SQL> connect sys/password as sysdba
    Connected.
    SQL> @$ORACLE_HOME/rdbms/admin/utlmail.sql
    Package created.
    Synonym created.
    SQL> @$ORACLE_HOME /rdbms/admin/prvtmail.plb
    Package body created.
    SQL > alter system set smtp_out_server = '<mail_server_ip:25>' scope =spfile;
    System altered..
    Now we try the code
    begin
    utl_mail.send(
    sender => 'sender's mail',
    recipients => 'receiver mail',
    CC => 'optional',
    subject => 'Testing utl_mail',
    message => 'Test Mail'
    end;
    But we get the following error...
    ERROR at line 1:
    ORA-29278: SMTP transient error: 421 Service not available
    ORA-06512: at "SYS.UTL_SMTP", line 21
    ORA-06512: at "SYS.UTL_SMTP", line 97
    ORA-06512: at "SYS.UTL_SMTP", line 139
    ORA-06512: at "SYS.UTL_MAIL", line 405
    ORA-06512: at "SYS.UTL_MAIL", line 594
    ORA-06512: at line 2
    We also tried connecting to the mail server through telnet .But it is not getting connected..
    Please help us to solve the issue.

    From your own posting you may have the clue, if you try to access your mail server through telnet and it is not successful, it means the service is down or there are networking issues.
    On pre 10gR2 versions there was a bug 4083461.8. It could affect you if you are on 10gR1
    "Bug 4083461 - UTL_SMTP.OPEN_CONNECTION in shared server fails with ORA-29278 Doc ID:      Note:4083461.8"
    This was fixed on 10gR2 base and on 9.2.0.8.0
    ~ Madrid

  • Error while installing oracle 10g grid on windows

    hi all,
    when i am installing oracle 10g grid i got the error that
    "Configuration assistant "OMS Configuration" failed "
    when i saw the log
    it has been mentioned the failed to create repos user.
    this is the out put of the log
    [14-02-2008 11:51:55] Enter SYS user's password :
    [14-02-2008 11:51:55]
    [14-02-2008 11:51:55] Enter repository user password :
    [14-02-2008 11:51:55]
    [14-02-2008 11:51:55] Enter MetaLink user password :
    [14-02-2008 11:51:55]
    [14-02-2008 11:51:55] Getting temporary tablespace from database...
    [14-02-2008 11:51:55] Found temporary tablespace: TEMP
    [14-02-2008 11:51:55] Checking SYS Credentials ...
    [14-02-2008 11:51:56] OK.
    [14-02-2008 11:51:56] Checking DB Init Parameters ...
    [14-02-2008 11:51:56] OK.
    [14-02-2008 11:51:56] Checking for Repos User ...
    [14-02-2008 11:51:56] Does not Exist.
    [14-02-2008 11:51:56] Loading necessary DB objects ...
    [14-02-2008 11:51:56] Checking DB Object (DBMS_SHARED_POOL , PACKAGE) ...
    [14-02-2008 11:51:56] Done Loading necessary DB objects
    [14-02-2008 11:51:56] Creating repos user ...
    DECLARE
    ERROR at line 1:
    ORA-01119: error in creating database file
    'E:\oraclegrid\oms10g\oradata\mgmt.dbf'
    ORA-27040: file create error, unable to create file
    OSD-04002: unable to open file
    O/S-Error: (OS 3) The system cannot find the path specified.
    ORA-06512: at line 44
    [14-02-2008 11:51:57] Failed.
    [14-02-2008 11:51:57] Repository Creation failed. Failed to create Repos User.
    all users and everyone has full permission on this folder, i don't know why it is giving,
    please any one help me out i am stuck in the middle of the installation
    oracle 10g grid version is 10.1
    please reply to this
    Regards,
    Veeresh S

    this is the output what i get in oui:configuration assistants
    Output generated from configuration assistant "OMS Configuration" (attempt 6):
    Command = oracle.sysman.emcp.oms.OmsPlugIn -configureOms
    Operation Stopping OPMN Processes is in progress.
    Operation EM Deploying is in progress.
    Operation Creating OMS Respository is in progress.
    Configuration assistant "OMS Configuration" failed
    The "E:\oraclegrid\agent10g\cfgtoollogs\configToolFailedCommands" script contains all commands that failed, were skipped or were cancelled. This file may be used to run these configuration assistants outside of OUI. Note that you may have to update this script with passwords (if any) before executing the same.-------------------------------------------------------------------------------
    when i saw this E:\oraclegrid\agent10g\cfgtoollogs\configToolFailedCommands file
    the below 2 lines was mentioned in that file.
    rem Copyright (c) 1999, 2006, Oracle. All rights reserved.
    oracle.sysman.emcp.agent.AgentPlugIn
    this below log i got in E:\oraclegrid\agent10g\cfgtoollogs\cfgfw\CfmLogger_2008-02-14_10-28-34-AM.log file
    i have pasted last lines of the files.
    INFO: oracle.sysman.top.oms:OmsPlugIn:Requested Configuration Step 0 have been completed with status=true
    INFO: oracle.sysman.top.oms:deployOms:Already deployed, skipped.
    INFO: oracle.sysman.top.oms:OmsPlugIn:Requested Configuration Step 1 have been completed with status=true
    INFO: oracle.sysman.top.oms:OmsPlugIn:Requested Configuration Step 2 have been completed with status=true
    INFO: oracle.sysman.top.oms:PerformSecureCommand:runCmd:Performing Command=E:\oraclegrid\oms10g\sysman\admin\emdrep\bin\RepManager.bat -connect (DESCRIPTION=(ADDRESS_LIST=(ADDRESS=(PROTOCOL=TCP)(HOST=A1MD04823)(PORT=1521)))(CONNECT_DATA=(SID=q))) -action drop -repos_user SYSMAN -output_file E:\oraclegrid\oms10g\sysman\log\emca_repos_drop12_19_36.log
    INFO: oracle.sysman.top.oms:PerformSecureCommand:drain:Spaced passwords by=100 ms
    INFO: oracle.sysman.top.oms:PerformSecureCommand:runCmd:E:\oraclegrid\oms10g\sysman\admin\emdrep\bin\RepManager.bat -connect (DESCRIPTION=(ADDRESS_LIST=(ADDRESS=(PROTOCOL=TCP)(HOST=A1MD04823)(PORT=1521)))(CONNECT_DATA=(SID=q))) -action drop -repos_user SYSMAN -output_file E:\oraclegrid\oms10g\sysman\log\emca_repos_drop12_19_36.log have completed with exitCode=0
    INFO: oracle.sysman.top.oms:PerformSecureCommand:runCmd:Command Output stdout:
    'Enter SYS user's password :
    Getting temporary tablespace from database...
    Found temporary tablespace: TEMP
    Checking SYS Credentials ... OK.
    Dropping the repository..
    Quiescing DB ... Done.
    Checking for Repos User ... Does not Exist.
    Repos User does not exist ... Continuing with cleanup ...
    Dropping Roles/Synonymns/Tablespaces ... Done.
    Unquiescing DB ... Done.
    Dropped Repository Successfully.
    INFO: oracle.sysman.top.oms:PerformSecureCommand:runCmd:Command Output stderr:
    ''stty' is not recognized as an internal or external command,
    operable program or batch file.
    'stty' is not recognized as an internal or external command,
    operable program or batch file.
    INFO: oracle.sysman.top.oms:PerformSecureCommand:runCmd:Performing Command=E:\oraclegrid\oms10g\sysman\admin\emdrep\bin\RepManager.bat -connect (DESCRIPTION=(ADDRESS_LIST=(ADDRESS=(PROTOCOL=TCP)(HOST=A1MD04823)(PORT=1521)))(CONNECT_DATA=(SID=q))) -action create -repos_user SYSMAN -metalink_username NOTAVAILABLE_ -output_file E:\oraclegrid\oms10g\sysman\log\emca_repos_create12_19_38.log -ecm_datafile E:\oraclegrid\oms10g\oradata\mgmt_ecm_depot1.dbf -datafile E:\oraclegrid\oms10g\oradata\mgmt.dbf
    INFO: oracle.sysman.top.oms:PerformSecureCommand:drain:Spaced passwords by=200 ms
    INFO: oracle.sysman.top.oms:RepManager Create Repository Error = E:\oraclegrid\oms10g\sysman\admin\emdrep\bin\RepManager.bat -connect (DESCRIPTION=(ADDRESS_LIST=(ADDRESS=(PROTOCOL=TCP)(HOST=A1MD04823)(PORT=1521)))(CONNECT_DATA=(SID=q))) -action create -repos_user SYSMAN -metalink_username NOTAVAILABLE_ -output_file E:\oraclegrid\oms10g\sysman\log\emca_repos_create12_19_38.log -ecm_datafile E:\oraclegrid\oms10g\oradata\mgmt_ecm_depot1.dbf -datafile E:\oraclegrid\oms10g\oradata\mgmt.dbf . Please check the log file at 12
    'Enter SYS user's password :
    Enter repository user password :
    Enter MetaLink user password :
    Getting temporary tablespace from database...
    Found temporary tablespace: TEMP
    Checking SYS Credentials ... OK.
    Checking DB Init Parameters ... OK.
    Checking for Repos User ... Does not Exist.
    Loading necessary DB objects ...
    Checking DB Object (DBMS_SHARED_POOL , PACKAGE) ... Exists.
    DBMS POOL package exists.
    Done Loading necessary DB objects
    Creating repos user ... Failed.
    Repository Creation failed. Failed to create Repos User.
    ''stty' is not recognized as an internal or external command,
    operable program or batch file.
    'stty' is not recognized as an internal or external command,
    operable program or batch file.
    'stty' is not recognized as an internal or external command,
    operable program or batch file.
    'stty' is not recognized as an internal or external command,
    operable program or batch file.
    'stty' is not recognized as an internal or external command,
    operable program or batch file.
    'stty' is not recognized as an internal or external command,
    operable program or batch file.
    INFO: oracle.sysman.top.oms:PerformSecureCommand:runCmd:E:\oraclegrid\oms10g\sysman\admin\emdrep\bin\RepManager.bat -connect (DESCRIPTION=(ADDRESS_LIST=(ADDRESS=(PROTOCOL=TCP)(HOST=A1MD04823)(PORT=1521)))(CONNECT_DATA=(SID=q))) -action create -repos_user SYSMAN -metalink_username NOTAVAILABLE_ -output_file E:\oraclegrid\oms10g\sysman\log\emca_repos_create12_19_38.log -ecm_datafile E:\oraclegrid\oms10g\oradata\mgmt_ecm_depot1.dbf -datafile E:\oraclegrid\oms10g\oradata\mgmt.dbf have completed with exitCode=12
    INFO: oracle.sysman.top.oms:PerformSecureCommand:runCmd:Command Output stdout:
    'Enter SYS user's password :
    Enter repository user password :
    Enter MetaLink user password :
    Getting temporary tablespace from database...
    Found temporary tablespace: TEMP
    Checking SYS Credentials ... OK.
    Checking DB Init Parameters ... OK.
    Checking for Repos User ... Does not Exist.
    Loading necessary DB objects ...
    Checking DB Object (DBMS_SHARED_POOL , PACKAGE) ... Exists.
    DBMS POOL package exists.
    Done Loading necessary DB objects
    Creating repos user ... Failed.
    Repository Creation failed. Failed to create Repos User.
    INFO: oracle.sysman.top.oms:PerformSecureCommand:runCmd:Command Output stderr:
    ''stty' is not recognized as an internal or external command,
    operable program or batch file.
    'stty' is not recognized as an internal or external command,
    operable program or batch file.
    'stty' is not recognized as an internal or external command,
    operable program or batch file.
    'stty' is not recognized as an internal or external command,
    operable program or batch file.
    'stty' is not recognized as an internal or external command,
    operable program or batch file.
    'stty' is not recognized as an internal or external command,
    operable program or batch file.
    INFO: oracle.sysman.top.oms:RepManager Create Repository Error = 12. Please check the log file at E:\oraclegrid\oms10g\sysman\log\emca_repos_create12_19_38.log
    WARNING: oracle.sysman.top.oms:EmcpPlug:startProcessing:Exception in runner=RepManager Create Repository Error = 12. Please check the log file at E:\oraclegrid\oms10g\sysman\log\emca_repos_create12_19_38.log
    INFO: oracle.sysman.top.oms:EmcpPlug:invoke:Completed EmcpPlug invoke method on an aggregate=oracle.sysman.top.oms for Action=configuration in step=2:microstep=0
    INFO: oracle.sysman.top.oms:Internal PlugIn for {Micro Step state:step:2:configuration in CfmAggregateInstance: oracle.sysman.top.oms:10.2.0.2.0:common:family=CFM:oh=E:\oraclegrid\oms10g:label=7} failed with an unhandled exception:
    java.lang.Exception: RepManager Create Repository Error = 12. Please check the log file at E:\oraclegrid\oms10g\sysman\log\emca_repos_create12_19_38.log
         at oracle.sysman.emcp.util.EmcpPlug.startProcessing(EmcpPlug.java:389)
         at oracle.sysman.emcp.util.EmcpPlug.invoke(EmcpPlug.java:360)
         at oracle.sysman.emCfg.core.PerformMicroStep.runJavaClass(PerformMicroStep.java:509)
         at oracle.sysman.emCfg.core.PerformMicroStep.executeMicroStep(PerformMicroStep.java:121)
         at oracle.sysman.emCfg.core.ActionPerformer.performMicroStep(ActionPerformer.java:917)
         at oracle.sysman.emCfg.core.ActionPerformer$Performer.run(ActionPerformer.java:1038)
    INFO: oracle.sysman.top.oms:The plug-in OMS Configuration has failed its perform method
    INFO: OuiConfigVariables:IAction.perform() was called on {Action state:OUICA in CfmAggregateInstance: OuiConfigVariables:1.0.0.0.0:common:family=CFM:oh=E:\oraclegrid\oms10g:label=7}
    INFO: Framework waiting for Action to complete at 12:19:41.469
    INFO: CfwProgressMonitor:actionProgress:About to perform Action=OUICA Status=is running with ActionStep=0 stepIndex=0 microStep=0
    INFO: OuiConfigVariables:About to execute plug-in OUI_CA
    INFO: OuiConfigVariables:The plug-in OUI_CA is running
    INFO: OuiConfigVariables:Launching CmdExec
    INFO: OuiConfigVariables:ExitCode=0
    INFO: OuiConfigVariables:The plug-in OUI_CA executed as attached=true in separate process with exitcode=0
    INFO: OuiConfigVariables:The plug-in OUI_CA has successfully been performed
    INFO: done waiting for Action from 12:19:41.469
    INFO: Cfm.save() was called
    INFO: Cfm.save(): 15 aggregate instances saved
    please anyone help, i have given all details, i want to install this grid as soon as possible

  • I am getting ORA-06512 On Oracle 10g AS wireless component Please Help

    the error is;
    oracle.panama.messaging.transport.impl.InternalTransportException: transport internal exception: java.sql.SQLException: ORA-01653: unable to extend table WIRELESS.TRANS_STORE by 8192 in tablespace IAS_META
    ORA-06512: at "WIRELESS.TRANSPORT", line 313
    ORA-06512: at "WIRELESS.TRANSPORT", line 681
    ORA-06512: at line 1
    Please let me know if some1 knows how to troubleshoot this...
    Thanks,
    Waheed

    Dear Waheed,
    Thee Error you have pasted is a Bug in Oracle AS Wireless 10g. You need a patch to do it right. Basically this is performance and maintenance issue.
    Its solution is new patch.
    Cheers,
    Saqib Sharif

  • Reg.SMTP Error while using UTL_MAIL in Oracle 10g

    Hi,
    I am getting the following SMTP error while trying to use the UTL.MAIL package of Oracle 10g. The query is as follows.
    begin
    utl_mail.send(
    sender => 'NAVEEN',
    recipients => '[email protected]',
    subject => 'Testing utl_mail',
    message => 'The receipt of this email means'|| ' that UTL_MAIL works'
    end;
    UTL_MAIL package is installesd and the port 25 is configured and firewall is changed.
    The same block was working fine before 5 days and now is giving the error as
    ORA-29279: SMTP permanent error: 501 badly formatted MAIL FROM user - no "<"
    ORA-06512: at "SYS.UTL_SMTP", line 21
    ORA-06512: at "SYS.UTL_SMTP", line 99
    ORA-06512: at "SYS.UTL_SMTP", line 222
    ORA-06512: at "SYS.UTL_MAIL", line 407
    ORA-06512: at "SYS.UTL_MAIL", line 594
    ORA-06512: at line 2
    Could you please help me out how to proceed???
    Regards,
    Naveen Kumar.

    Can you back that statement about an Oracle UTL_SMTP bug up with an actual bug number??
    From what you have posted, this is not a bug!! but expected and documented (RFC'ed) SMTP server behaviour.
    My proof:
    /home/billy> telnet mail 25
    Trying 165.143.128.26...
    Connected to mail
    Escape character is '^]'.
    220 CNTRRA20-GTW01 [CNTRRA20-GTW01] Thu, 06 Mar 2008 14:26:26 +0200
    HELO 10.251.93.58
    250 CNTRRA20-GTW01 Hello [10.251.93.58]
    MAIL FROM: naveen <[email protected]>
    501 naveen <[email protected]> : illegal character(s) in domain string
    MAIL FROM: NAVEEN
    501 NAVEEN : domain string is NULL.
    quit
    221 CNTRRA20-GTW01 closing connection. Goodbye!
    Connection closed by foreign host.
    /home/billy>
    As you can clearly see, the SMTP server expects a DOMAIN name as part of the MAIL FROM address. It also does not accept the alternative format suggested.
    Yes, not all SMTP servers are equal and some support additional formatting.
    But to imply that because the SMTP server does not accept your address formatted as string NAVEEN, it is a UTL_SMTP problem, sounds like a smelly one to me.

Maybe you are looking for

  • Installation echec of Shared technology

    I re instal Photoshop Elements 10 on me PC under Windows Vista After downloading and installation of Elements and Organizer, the processus uninstal Organizer and Elements and gives an error message : echec installation of shared technology Could you

  • Convert file from pdf to qbo file?

    How do I convert a pdf file to to qbo file? I have the information on a disc which I can only open in Adobe reader. How do i get this info adobe acrobat so I can convert the file?

  • FM11x-G5-C Dimension default value

    Hi All, Have just upgraded from 11.1.2 to 11.1.3 and registered the FM11x-G5-C adapter for HFM. FDM application has migrated from 11.1.2 w FM11x-G5-B adapter (via schema update followed by export import operation). Post migration configuration I have

  • Captivate 7 - SCORM 1.2 Publishing Issue to IE8

    When publishing my Captivate 7 files to SCORM 1.2 and loading into an LMS, when exiting the course file from the LMS, I am taken to a page that says "This page does not exist." I am only receiving this page error in Internet Explorer (8), not the Chr

  • Will there eventually be an update on the iPod Touch 4g that enables Siri?

    I don't have anything to say here