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

Similar Messages

  • Need ACES attention - connection pooling in oracle 10g rel 1

    I am using TOMCAT 5.0.19 Webserver and ORACLE 10g REL 1 as the database server. I have to restart the TOMCAT Webserver in order to establish connection atleast twice or thrice in a weak. Why I am unable to see the connection pooling in oracle 10g rel 1. How to revive or establish the setup. My objective is to have a centralised oracle 10g rel 1 database server and the applications of java are run thru centralised Webserver Tomcat 5.0.19.
    Can anyone please help me out optimizing the design setup.
    Regards
    Vijay Kumar

    by putting 'Need ACES' in your post title, you might have actually reduced the number of people reading your post, in other words someone >who might have suggested Thanks John for your reply. I changed the subject of the thread after not getting any reply for past 10 days. Last two days I have been updating with plea for attention to my problem. Finally I thought pulling attention of ACES, then only I edited the subject.
    Now, problem I am facing is not in oracle database but in application server. Actually we are running web applications thru Tomcat accessing Oracle 10g rel 1. I am often losing connection with web server. The users are unable to login in the web application. I was told to check oracle database server. I just checked alert log and found no errors. I just asked them to shutdown and restart the web server Tomcat 5.0. It then worked fine. This is temporary. I need to ensure where the problem is. Could you please guide me in checking various parameters or files to be checked to optimise connection pooling.
    Regards
    Vijay Kumar

  • MIgration of Progress Open Edge ver. 9.1 to Oracle 10g rel. 3

    I'm planning for a DB migration project. The application is MFG Pro EB2 and the database is Progress Open Edge 9.1. Can anyone help me confirm the version compatibility of Progress 9.1 with Oracle 10g, so far i've only i've only confirmed ver. 7. Need all the tech documents i can find to use as part of my justification. thanks in advance

    ... to Oracle 10g rel. 3It doesn't exist, afaik, the last is 10g release 2.
    Nicolas;

  • Cannot install Oracle 10g rel. 2 on Win Server 2003 SB

    Hello,
    I cannot install Oracle 10g rel. 2 on Win Server 2003 SB, because when the the configuration assistant installer try to copy the db files, it stop with the following errors:
    ORA-24324 Service Handle not Initialized
    ORA-24323 Value not authorized
    ORA-28547 Connection to Server failed probable Oracle NET ADMIN errorRegards
    Siyavuş

    You should be connected as a local administrator to perform the install process.
    Try to perfom a software only install, then once you make sure the installation was successful, launch the dbca. It is important for you to use a local account to perform the installation and db setup process, otherwise, if you have authentication problems, even if you comment the authentication line at the sqlnet.ora file you will be facing issues that will make fail the assistant, since it is designed to work assuming the user is OS authenticated.
    ~ Madrid
    http://hrivera99.blogspot.com/

  • AlertfileErr: ORA-02097 and ORA-00439 on Oracle 10g Rel 2 Stdrd Instances

    Hello,
    I need some help for the following alert file erros, that I get periodically on every database instance.
    ORA-02097: parameter cannot be modified because specified value is invalid
    ORA-00439: feature not enabled: Database resource manager
    I red in another newsforum, that this ist a bug, cause Oracle Standard Edition uses functionality of the Enterprise Edition(=DB Resource manager). Is there any workaround for this? I don't have access to the Oracle metalink section.
    Database Resource Manager isn't installed in my environment.
    Environment:
    Windows 2003 SP1
    Oracle Database 10g Rel 2 (10.2.0.1) Standard Edition
    Hope anybody can help me.
    Thanks in advance,
    Zigi

    Yes,
    and That's exactly my problem. I haven't installed the resource manager. And I don't know which process, session, jobs or what ever tries to use the resource manager.
    I only created round about 50 Tables and views in the database, no stored procedures or anything special, no jobs.... only simple SQL Statements.
    and I'll get this message nearly every 6 hours. so what is going on there.
    The only thing, that i found was this:
    http://ora-02097.ora-code.com/msg/49049.html
    I don't have access to metalink so I don't know how to solve this problem.
    Can anybody help?

  • Oracle 10g Rel 2  - Proxy connection authentication with SAP User ID

    Dear Experts,
    We are currently doing some research and planning to upgrade SAP R/3 4.6C to ECC 6 and upgrading Oracle from version 9.2 to 10.2
    In upgrading to Oracle vers. 10g Rel 2, we got advised that Oracle has apparently introduced a new proxy connection authentication, in which the SAP user ID is given limited privileges (create session only) ??
    If you have any information on this or known any impact about this issue, please advise us.
    Thanks in advance.

    Thanks for your help, Kaushal.
    I also found the SAP Note 834917 (Oracle Database 10g: New database role SAPCONN and it seems to be on a right direction to cope with that problem.
    - For Oracle releases earlier than 10gR2, the CONNECT role includes extensive database authorizations and the more restrictive CONNECT as of 10gR2.
    - To overcome this restriction, SAP need to find a way to compensate this, so does it come SAPCONN.
    - SAPCONN is the new SAP-specific database role, which is defined to support the normal SAP applications operations (CONNECT, RESOURCE and SELECT_CATALOG_ROLE).
    Once again, thanks.

  • 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.

  • 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

  • ~~[DONE]~~ Installing Oracle 10g Rel. 2 on linux distros...

    Hello guys,
    I wanted to ask if anyone of you tried to install oracle 10g release 2 for personal use on any linux distro (free distros).
    If yes which linux did you try?
    Message was edited by:
    sysdba

    Choose the Linux distribution that makes you feel most comfortable. At the Linux level, there is very little difference between fedora core 4 and SUSE linux 9.2 (if there is, they are not allowed to use the label Linux). At the 'other stuff thrown in' level, which makes it a distro, you need to decide which is going to make you happiest.
    In any case, installing Oracle in Linux means you need to have the prerequisites set up. That means a specific version of the kernel, a specific set of libraries and a specific set of installed applications. If you have those, you follow a specific set of steps to install.
    Werner Puschitz helps you figure out the specific prerequisites at ttp://www.puschitz.com ... if you can not understand the prereqs and steps, then you might want to spend more time learning Linux basic admin until you are more comfortable otherwise you will get into some trouble down the road.
    Message was edited by:
    forbrich
    Message was edited by:
    forbrich

  • Oracle 10g Rel 2 On Windows 7

    Hi all,
    can any one tell me that ,Is it possible to install the oracle 10g rel2 on the windows 7 ultimate 32bit.
    I saw on the oracle download page but it is only available for vista.
    Reading a article about windows 7 ,it says that many of the vista or xp applications can easily run on the windows 7?
    Thanks
    Best Regards

    user573892 wrote:
    Hi all,
    can any one tell me that ,Is it possible to install the oracle 10g rel2 on the windows 7 ultimate 32bit.
    I saw on the oracle download page but it is only available for vista.
    Reading a article about windows 7 ,it says that many of the vista or xp applications can easily run on the windows 7?
    It's a long leap from Microsoft touting their latest and greatest by saying that "many" applications can easily run on 7, to expecting any particular non-MS product to run on it. Especially when the vendor of said non-MS product specifically says the product is not certified for Win7.
    Thanks
    Best RegardsI would second what the others said. If this is for you own study ...
    1) install VMPlayer (free)
    2) in VMplayer ,create a virtual linux box, using Oracle Enterprise LInux (free)
    3) on that virtual linux box, install Oracle (free)
    Edited by: EdStevens on Apr 7, 2010 12:57 PM

  • Enter prise Manager Oracle 10g Rel 2 ON HP-Unix - Errors

    Hi all
    I am using Oracle 10g Release 1002000100 on HP-Unix,
    When i am trying to login the Enterprise manager it is Throwing the ERROR
    java.lang.Exception: UnknownHostException sending request :: testdisc And Enter prise manager page is being Opened
    But
    when i am clicking the Performance or Administration tabs it is comming to Login page with the Follows Error message
    Io exception: The Network Adapter could not establish the connection
    cud u any one advise about this Problem
    many thanks
    - Khaja

    Check the metalink note, *273758.1* for the same.
    HTH
    Aman....

  • 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

  • Error in installing oracle 10g Rel 2

    Hi,
    When i install Oracle 10.2.0.1 in linux i get the below error,
    Error in invoking target 'client_sharedlib' of makefile '/u01/app/oracle/product/10.2.0/network/lib/ins_net_client.mk'.
    Details of my server:
    [oracle@mail ~]$ echo $ORACLE_HOME
    /u01/app/oracle/product/10.2.0/db_1
    [oracle@mail ~]$ uname -a
    Linux mail.redhat.com 2.6.9-5.EL #1 Wed Jan 5 19:22:18 EST 2005 i686 i686 i386 GNU/Linux
    [oracle@mail ~]$ tail -15 /u01/app/oracle/product/10.2.0/db_1/install/make.log
    /u01/app/oracle/product/10.2.0/db_1/lib32//libnls10.a(lxecg2l.o)(.text+0x13f): In function `lxecg2l':
    : undefined reference to `ldxnbeg'
    /u01/app/oracle/product/10.2.0/db_1/lib32//libnls10.a(lxecg2l.o)(.text+0x16f): In function `lxecg2l':
    : undefined reference to `ldxdtd'
    /u01/app/oracle/product/10.2.0/db_1/lib32//libnls10.a(lxecg2l.o)(.text+0x48b): In function `lxecg2l':
    : undefined reference to `ldxnbeg'
    /u01/app/oracle/product/10.2.0/db_1/lib32//libnls10.a(lxecg2l.o)(.text+0x4b7): In function `lxecg2l':
    : undefined reference to `ldxdfd'
    /u01/app/oracle/product/10.2.0/db_1/lib32//libunls10.a(lxu4tstc.o)(.text+0x8b4): In function `lxu4TstClsXMLPubidChar0':
    : undefined reference to `lxpTstClsXMLPubidCharTbl'
    /u01/app/oracle/product/10.2.0/db_1/lib32//libunls10.a(lxu4dec.o)(.text+0x18b): In function `lxu4Decomposition':
    : undefined reference to `lxujmd'
    collect2: ld returned 1 exit status
    make[1]: *** [u01/app/oracle/product/10.2.0/db_1/sysman/lib/e2eme] Error 1
    make: *** [e2eme] Error 2
    Can anyone help me out.

    What is the linux version ?
    Try to help you with the reading of http://www.puschitz.com/
    Nicolas.

  • Installin Oracle 10g rel 2 on windows 2003 server

    Hi
    I am trying to install oracle10g on windows 2003 server standard edition SP1. When i run the OUI i get the following error.
    OUI-10133:Invalid staging area. There are no top
    level components for Windows Nt or Windows 2000 area. And i am not able to install.
    Can somebody help in this.
    Thanks

    This is a problem with the media.
    I suggest copying all the files to a local hard disk and running the installer from there. I don't have good luck installing from CD with Oracle's databases - not sure why. I never have a problem (and it's WAY faster) installing from disk. You can erase the 800 MB of files after the install if you need the space.

  • Freeze - Oracle 10g rel. 2 in windows 2003 server R2 with SP2

    My oracle freeze some times, i need resolve this?
    Thanks,
    Miguel Jimenez

    Hi,
    >>My oracle freeze some times, i need resolve this?
    Well, I have noticed that you didn't provide much information. First of all you need to take a look at alert log file and trace files in order to get more information.
    Cheers
    Legatti

Maybe you are looking for

  • Forms--Reader users unable to fill in "enabled" form.

    I created and enabled several PDF fill-in forms in Acrobat X. Just recently associates are telling me that they're getting the following error message: "This document enabled extended features in Adobe Reader. The document has been changed since it w

  • Help please guy's

    I am trying to redeem a voucher in Itunes on my laptop running Windows 7. However, when I go into the store there are no quicklinks showing on the right hand side and when I click on help I just get a blank page. All I want to do is buy some music. H

  • Query output in Excel

    Hi ,     I have a job with number of queries. I need that output of the query in an excel format to a location whenever that job runs. Help me out.

  • P2055 randomly runs a Print Page before a job, and randomly when computer is on

    Before many print jobs, the P2055dn prints a page that is blank except for the follwing at the top of the page:  GET /DevMgmt/DiscoveryTree.xml  HTTP/1.1 Host: 127.0.0.1:8080 How can I make this stop?  I have the latest print drivers.  Running Win 7

  • Block unwanted text messages in "Messages"

    How do I block unwanted text messages in "Messages" under Maveriks?  I can do it on the iPhone but not on the iMac (which is pointless).