Bug on Oracle 11.2.0.1 on Windows x86 32bit

Hello,
I have a very strange behavior on a database Oracle 11.2.0.1 on a Windows x86 32bit machine.
I have 2 simple query on a small table with different condition.
If I run the 2 query separately, they extract 2 data correcty, but if I run a unique query with the 2 previous condition in OR, the result is the same as if I run the query with AND operator.
Here is the example from DOS :
     C:\Users\bianchi>sqlplus zcssysman/****@sm11
     SQL*Plus: Release 11.2.0.1.0 Production on Lun Nov 8 10:58:00 2010
     Copyright (c) 1982, 2010, Oracle. All rights reserved.
     Connesso a:
     Oracle Database 11g Release 11.2.0.1.0 - Production
     SQL> --
     SQL> -- Crea tabella di test
     SQL> --
     SQL> create table SARBI
     2 (
     3 PP CHAR(10),
     4 DFIN DATE
     5 );
     Tabella creata.
     SQL> --
     SQL> -- Aggiunge records
     SQL> --
     SQL> insert into SARBI (PP, DFIN)
     2 values ('0 ', to_date('17-11-2009', 'dd-mm-yyyy'));
     Creata 1 riga.
     SQL> insert into SARBI (PP, DFIN)
     2 values ('1 ', to_date('17-11-2009', 'dd-mm-yyyy'));
     Creata 1 riga.
     SQL> insert into SARBI (PP, DFIN)
     2 values ('2 ', to_date('17-11-2009', 'dd-mm-yyyy'));
     Creata 1 riga.
     SQL> insert into SARBI (PP, DFIN)
     2 values ('3 ', to_date('31-12-2010', 'dd-mm-yyyy'));
     Creata 1 riga.
     SQL> insert into SARBI (PP, DFIN)
     2 values ('4 ', to_date('31-12-2008', 'dd-mm-yyyy'));
     Creata 1 riga.
     SQL> commit;
     Commit completato.
     SQL> --
     SQL> -- Data maggiore/uguale di sysdate
     SQL> --
     SQL> SELECT a.rowid, a.*
     2 FROM SARBI a WHERE
     3 ( DFIN >= SYSDATE );
     ROWID PP DFIN
     AAAlEYAAEAAFlZ7AAD 3 31-DIC-10
     SQL> --
     SQL> -- Data uguale a 17/11/2009
     SQL> --
     SQL> SELECT a.rowid, a.*
     2 FROM SARBI A WHERE
     3 ( DFIN = TO_DATE('20091117','YYYYMMDD'));
     ROWID PP DFIN
     AAAlEYAAEAAFlZ7AAA 0 17-NOV-09
     AAAlEYAAEAAFlZ7AAB 1 17-NOV-09
     AAAlEYAAEAAFlZ7AAC 2 17-NOV-09
     SQL> --
     SQL> -- Entrambe le condizioni in OR
     SQL> --
     SQL> SELECT a.rowid, a.*
     2 FROM SARBI A WHERE
     3 ( DFIN >= SYSDATE OR
     4 DFIN = TO_DATE('20091117','YYYYMMDD'));
     ROWID PP DFIN
     AAAlEYAAEAAFlZ7AAD 3 31-DIC-10
     SQL>
Here is the same query on a DB Oracle 10.2.example from DOS :
     C:\Users\bianchi>sqlplus zcssysman/******@sm10
     SQL*Plus: Release 11.2.0.1.0 Production on Lun Nov 8 11:00:45 2010
     Copyright (c) 1982, 2010, Oracle. All rights reserved.
     Connesso a:
     Oracle Database 10g Release 10.2.0.4.0 - Production
     SQL> --
     SQL> -- Crea tabella di test
     SQL> --
     SQL> create table SARBI
     2 (
     3 PP CHAR(10),
     4 DFIN DATE
     5 );
     Tabella creata.
     SQL> --
     SQL> -- Aggiunge records
     SQL> --
     SQL> insert into SARBI (PP, DFIN)
     2 values ('0 ', to_date('17-11-2009', 'dd-mm-yyyy'));
     Creata 1 riga.
     SQL> insert into SARBI (PP, DFIN)
     2 values ('1 ', to_date('17-11-2009', 'dd-mm-yyyy'));
     Creata 1 riga.
     SQL> insert into SARBI (PP, DFIN)
     2 values ('2 ', to_date('17-11-2009', 'dd-mm-yyyy'));
     Creata 1 riga.
     SQL> insert into SARBI (PP, DFIN)
     2 values ('3 ', to_date('31-12-2010', 'dd-mm-yyyy'));
     Creata 1 riga.
     SQL> insert into SARBI (PP, DFIN)
     2 values ('4 ', to_date('31-12-2008', 'dd-mm-yyyy'));
     Creata 1 riga.
     SQL> commit;
     Commit completato.
     SQL> --
     SQL> -- Data maggiore/uguale di sysdate
     SQL> --
     SQL> SELECT a.rowid, a.*
     2 FROM SARBI a WHERE
     3 ( DFIN >= SYSDATE );
     ROWID PP DFIN
     AAAlC6AAIAACneNAAD 3 31-DIC-10
     SQL> --
     SQL> -- Data uguale a 17/11/2009
     SQL> --
     SQL> SELECT a.rowid, a.*
     2 FROM SARBI A WHERE
     3 ( DFIN = TO_DATE('20091117','YYYYMMDD'));
     ROWID PP DFIN
     AAAlC6AAIAACneNAAA 0 17-NOV-09
     AAAlC6AAIAACneNAAB 1 17-NOV-09
     AAAlC6AAIAACneNAAC 2 17-NOV-09
     SQL> --
     SQL> -- Entrambe le condizioni in OR
     SQL> --
     SQL> SELECT a.rowid, a.*
     2 FROM SARBI A WHERE
     3 ( DFIN >= SYSDATE OR
     4 DFIN = TO_DATE('20091117','YYYYMMDD'));
     ROWID PP DFIN
     AAAlC6AAIAACneNAAA 0 17-NOV-09
     AAAlC6AAIAACneNAAB 1 17-NOV-09
     AAAlC6AAIAACneNAAC 2 17-NOV-09
     AAAlC6AAIAACneNAAD 3 31-DIC-10
     SQL>
Can you help me ? I look for 11.2.0.2 patch set, but it seems that was not yet avaliable ...
Thanks to all

Doesn't happen with VARCHAR column :
SQL> connect hemant
Enter password:
Connected.
SQL> create table X (col_1  number, col_2 varchar2(5));
Table created.
SQL> insert into X values (1,'A');
1 row created.
SQL> insert into X values (2,'J');
1 row created.
SQL> insert into X values (3,'P');
1 row created.
SQL> insert into X values (4,'T');
1 row created.
SQL> insert into X values (5,'Z');
1 row created.
SQL> commit;
Commit complete.
SQL> select col_1, col_2 from X where col_2 > 'Q';
     COL_1 COL_2
         4 T
         5 Z
SQL> select col_1, col_2 from X where col_2 = 'P';
     COL_1 COL_2
         3 P
SQL> select col_1, col_2 from X where
  2  (col_2 > 'Q' OR col_2 = 'P');
     COL_1 COL_2
         3 P
         4 T
         5 Z
SQL> show parameter optimizer_featu
NAME                                 TYPE        VALUE
optimizer_features_enable            string      11.2.0.1
SQL>
SQL> select * from v$version;
BANNER
Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit Production
PL/SQL Release 11.2.0.1.0 - ProductionIs it the SYSDATE ?
SQL> create table y (col_1 number,  col_2 date);
Table created.
SQL> insert into y values (1, to_date('01-JAN-2000','DD-MON-YYYY');
insert into y values (1, to_date('01-JAN-2000','DD-MON-YYYY')
ERROR at line 1:
ORA-00917: missing comma
SQL> insert into y values (1,to_date('01-JAN-2000','DD-MON-YYYY'));
1 row created.
SQL> insert into y values (2,to_date('01-JAN-2001','DD-MON-YYYY'));
1 row created.
SQL> insert into y values (3,to_date('01-JUL-2003','DD-MON-YYYY'));
1 row created.
SQL> insert into y values (4,to_date('15-NOV-2010','DD-MON-YYYY'));
1 row created.
SQL> insert into y values (5,to_date('12-MAR-2015','DD-MON-YYYY'));
1 row created.
SQL> commit;
Commit complete.
SQL> select col_1, col_2 from y where col_2=to_date('15-NOV-2010','DD-MON-YYYY');
     COL_1 COL_2
         4 15-NOV-10
SQL> select col_1, col_2  from y where col_2 > to_date('01-APR-2010','DD-MON-YYYY');
     COL_1 COL_2
         4 15-NOV-10
         5 12-MAR-15
SQL> select  col_1, col_2 from y where col_2=to_date('01-JUL-2003','DD-MON-YYYY');
     COL_1 COL_2
         3 01-JUL-03
SQL> select col_1, col_2 from y where
  2  (col_2 > to_date('01-APR-2010','DD-MON-YYYY') OR col_2 = to_date('01-JUL-2003','DD-MON-YYYY'));
     COL_1 COL_2
         3 01-JUL-03
         4 15-NOV-10
         5 12-MAR-15
SQL> select col_1, col_2 from y where
  2  (col_2 > sysdate OR col_2 = to_date('01-JUL-2003','DD-MON-YYYY'));
     COL_1 COL_2
         4 15-NOV-10
         5 12-MAR-15
SQL>
SQL> select col_1, col_2 from y where
  2  (col_2 > sysdate);
     COL_1 COL_2
         4 15-NOV-10
         5 12-MAR-15
SQL> select col_1, col_2 from y where
  2  col_2 = to_date('01-JUL-2003','DD-MON-YYYY');
     COL_1 COL_2
         3 01-JUL-03
SQL> select col_1, col_2 from y where
  2  (col_2 = to_date('01-JUL-2003','DD-MON-YYYY') OR col_2 > sysdate);
     COL_1 COL_2
         3 01-JUL-03
         4 15-NOV-10
         5 12-MAR-15
SQL>Hemant K Chitale
http://hemantoracledba.blogspot.com
Edited by: Hemant K Chitale on Nov 9, 2010 10:50 PM

Similar Messages

  • Any Oracle database personal edition certified for Windows 7/32bit?

    Is any Oracle database Personal edition certified for Windows 7/32bit? I spent an hour at least searching for this but no chance.
    Thank you.

    Currently, only 11gR2 and 10.2.0.5 are certified on Win 7 Professional or higher - Home versions are not supported.
    HTH
    Srini

  • Creating instance oracle 10.2.0.4 on Windows 2008 32bit

    Hello,
    I'm trying to install oracle database (10.2.0.3 with patch 10.2.0.4) on Windows 2008 32bit.
    I first installed the Oracle software, and then started to create the instance. But the dbca gives me following error:
    ora-12560:TNS:protocol adapter
    and instance creations fails. Also trying to create the service via the oradim fails.
    Then I found this:
    Install Oracle 10.2.0.3 (Vista/2008 version) on Windows 2008 Active Directory Controller.
    When trying to create the database, around 2% completion, the error ORA-12560 will occur.
    This Problem does NOT reproduce on a Member server. Only the Active Directory Controller.
    Cause
    This is currently logged as Bug 7263061.
    Solution
    Currently, the only workaround is to Install the software on a Non-Controller machine.
    You can try demoting the Controller machine to a Member machine.
    Perform the install, create the database.
    When everything is setup correctly, you can promote the machine back to a Controller.
    However, be aware you may have to go through these steps whenever you create a new DB.
    DIM-00019: create service error
    O/S-Error: (OS 1388) A new member could not be added to a local group because
    the member has the wrong account type.
    WORKAROUND:
    None
    so workaround none? or you make that controller machine to a non-controller, but this doesn't seem to be a good solution if that server is already in production???
    Is there possible another solutions to get around this?
    This means that I can't install Oracle on a Windows 2008? Customers will be happy, maybe I can switch them all to Linux? ;)

    I care about low-budget shops, too. It's one reason you won't find me extolling the virtues of (for example) solid state hard disks, which are still not cheap enough for mass deployment.
    But come on! A shop that can ONLY afford one server and one Windows license? And yet they want to install Oracle?? Really??!
    I think instead of banging your head against an installation brick wall, you should help your clients and customers cut their cloth according to their means. If they want to run Oracle, then they should resource accordingly. For about AU$2500 or less, they could purchase an additional, quite capable server, install Linux on it (OEL for $99 per year, or Centos (say) for absolutely nothing), and have themselves a dedicated Oracle server running perfectly fine in a mostly-Windows environment. (The OS the database runs on is irrelevant to anyone making use of the database's capabilities, after all). If they can't spring for even that sort of money, encourage them to adjust their standard to be more realistic: a cheap desktop PC can be purchased for mere hundreds of dollars, have a free OS, and have Oracle installed (unsupported) on top of that. If even that is a step to far, I'd suggest using MySQL or Postgres instead of Oracle.
    So whilst I'm certain you're not the only one encountering the problems of working in low budget environments, I'd say this is going to extremes. If someone wants to run Oracle, and if they've stumped up the several thousand dollars necessary to purchase it, it seems utter madness not to come up with a few hundred dollars more to get it running on a dedicated machine. It would be like me being able to afford the Ferrari, but not the cost of the petrol to run it on!
    A suggestion I made to a lawyer friend of mine recently: purchase an Asus EEE Desktop (cost: AU$499, for 1GB RAM and 120GB HDD), replace its Windows Home Os with Ubuntu, install Oracle XE (cost: $0), attach 1TB USB drive as backup mechanism (cost: AU$210). He now runs a dedicated Oracle database server for less than US$500. I wouldn't exactly recommend that sort of thing for mission-critical environments, but it will do the job he needs it to do! The point, though, is that you just have to be realistic about it, and create an environment that matches your requirements -without picking a fight from the get-go with the installer!

  • Install oracle 10.2.0.5 on windows 7 32 bits

    Hi all ,
    I want to install oracle 10.2.0.5 on windows 7 (32bits) but in the websit I found <B>"Oracle Database 10g Release 2 (10.2.0.5) Enterprise/Standard Edition for Microsoft Windows (64-bit Itanium)" [http://www.oracle.com/technetwork/database/10201winsoft64-090455.html] </B>, and in the documentation I found : <B>"Oracle Database and Oracle Database Client 10g Release 2 (10.2.0.5 or later) are supported on Windows 7 (32-bit and x64)."</B>.
    Could you please tell me whether this oracle client for win 7 32bits or give me the link wher I can download oracle for win 7 32bits.
    Many thanks,

    10.2.0.5 is a patchset that you will need to download from My Oracle Support. You will need a valid CSI with Oracle for you to download the patch. I suggest you to install the 11gR2 Client on Windows 7.
    Can you please tell me which version of Oracle Server will you be interacting with using the 10.2.0.5 Client.

  • Bug in Oracle 8.1.6.0.0

    Did any one come accrossed with the bug no 1328999 in oracle 8.1.6.0.0 on solaries. If any one please reply me.
    Actually my problem is i am getting too many deadlocks in my application i am using MTS (Microsoft Transaction server as application server ) and database is 8.1.6.0.0. of oracle in solaries.
    Did any one has similar problems please reply me.
    If so
    How could you confirm that the problem u are getting is because of a bug in oracle 8.1.6.0.0
    Please some one reply me

    Hi kawollek,
    Thanks for the reply.
    But when i tried with the example provided. I am unable to connect to oracle. it gives the error 0ra-03114 not connected to oracle.
    How do i give the host string in oracle or dsn in the programe to connect to the database.
    If u have tried please help me.....
    Thanks & regards
    Rama Raju D.S

  • Bug in Oracle JDBC Pooling Classes - Deadlock

    We are utilizing Oracle's connection caching (drivers 10.2.0.1) and have found a deadlock situation. I reviewed the code for the (drivers 10.2.0.3) and I see the same problem could happen.
    I searched and have not found this problem identified anywhere. Is this something I should post to Oracle in some way (i.e. Metalink?) or is there a better forum to get this resolved?
    We are utilizing an OCI driver with the following setup in the server.xml
    <ResourceParams name="cmf_toolbox">
    <parameter>
    <name>factory</name>
    <value>oracle.jdbc.pool.OracleDataSourceFactory</value>
    </parameter>
    <parameter>
    <name>driverClassName</name>
    <value>oracle.jdbc.driver.OracleDriver</value>
    </parameter>
    <parameter>
    <name>user</name>
    <value>hidden</value>
    </parameter>
    <parameter>
    <name>password</name>
    <value>hidden</value>
    </parameter>
    <parameter>
    <name>url</name>
    <value>jdbc:oracle:oci:@PTB2</value>
    </parameter>
    <parameter>
    <name>connectionCachingEnabled</name>
    <value>true</value>
    </parameter>
    <parameter>
    <name>connectionCacheProperties</name>
    <value>(InitialLimit=5,MinLimit=15,MaxLimit=75,ConnectionWaitTimeout=30,InactivityTimeout=300,AbandonedConnectionTimeout=300,ValidateConnection=false)</value>
    </parameter>
    </ResourceParams>
    We get a deadlock situation between two threads and the exact steps are this:
    1) thread1 - The OracleImplicitConnectionClassThread class is executing the runAbandonedTimeout method which will lock the OracleImplicitConnectionCache class with a synchronized block. It will then go thru additional steps and finally try to call the LogicalConnection.close method which is already locked by thread2
    2) thread2 - This thread is doing a standard .close() on the Logical Connection and when it does this it obtains a lock on the LogicalConnection class. This thread then goes through additional steps till it gets to a point in the OracleImplicitConnectionCache class where it executes the reusePooledConnection method. This method is synchronized.
    Actual steps that cause deadlock:
    1) thread1 locks OracleImplicitConnectionClass in runAbandonedTimeout method
    2) thread2 locks LogicalConnection class in close function.
    3) thread1 tries to lock the LogicalConnection and is unable to do this, waits for lock
    4) thread2 tries to lock the OracleImplicitConnectionClass and waits for lock.
    ***DEADLOCK***
    Thread Dumps from two threads listed above
    thread1
    Thread Name : Thread-1 State : Deadlock/Waiting on monitor Owns Monitor Lock on 0x30267fe8 Waiting for Monitor Lock on 0x509190d8 Java Stack at oracle.jdbc.driver.LogicalConnection.close(LogicalConnection.java:214) - waiting to lock 0x509190d8> (a oracle.jdbc.driver.LogicalConnection) at oracle.jdbc.pool.OracleImplicitConnectionCache.closeCheckedOutConnection(OracleImplicitConnectionCache.java:1330) at oracle.jdbc.pool.OracleImplicitConnectionCacheThread.runAbandonedTimeout(OracleImplicitConnectionCacheThread.java:261) - locked 0x30267fe8> (a oracle.jdbc.pool.OracleImplicitConnectionCache) at oracle.jdbc.pool.OracleImplicitConnectionCacheThread.run(OracleImplicitConnectionCacheThread.java:81)
    thread2
    Thread Name : http-7320-Processor83 State : Deadlock/Waiting on monitor Owns Monitor Lock on 0x509190d8 Waiting for Monitor Lock on 0x30267fe8 Java Stack at oracle.jdbc.pool.OracleImplicitConnectionCache.reusePooledConnection(OracleImplicitConnectionCache.java:1608) - waiting to lock 0x30267fe8> (a oracle.jdbc.pool.OracleImplicitConnectionCache) at oracle.jdbc.pool.OracleConnectionCacheEventListener.connectionClosed(OracleConnectionCacheEventListener.java:71) - locked 0x34d514f8> (a oracle.jdbc.pool.OracleConnectionCacheEventListener) at oracle.jdbc.pool.OraclePooledConnection.callImplicitCacheListener(OraclePooledConnection.java:544) at oracle.jdbc.pool.OraclePooledConnection.logicalCloseForImplicitConnectionCache(OraclePooledConnection.java:459) at oracle.jdbc.pool.OraclePooledConnection.logicalClose(OraclePooledConnection.java:475) at oracle.jdbc.driver.LogicalConnection.closeInternal(LogicalConnection.java:243) at oracle.jdbc.driver.LogicalConnection.close(LogicalConnection.java:214) - locked 0x509190d8> (a oracle.jdbc.driver.LogicalConnection) at com.schoolspecialty.cmf.yantra.OrderDB.updateOrder(OrderDB.java:2022) at com.schoolspecialty.cmf.yantra.OrderFactoryImpl.saveOrder(OrderFactoryImpl.java:119) at com.schoolspecialty.cmf.yantra.OrderFactoryImpl.saveOrder(OrderFactoryImpl.java:67) at com.schoolspecialty.ecommerce.beans.ECommerceUtil.saveOrder(Unknown Source) at com.schoolspecialty.ecommerce.beans.ECommerceUtil.saveOrder(Unknown Source) at com.schoolspecialty.ecommerce.beans.UpdateCartAction.perform(Unknown Source) at com.schoolspecialty.mvc2.ActionServlet.doPost(ActionServlet.java:112) at com.schoolspecialty.ecommerce.servlets.ECServlet.doPostOrGet(Unknown Source) at com.schoolspecialty.ecommerce.servlets.ECServlet.doPost(Unknown Source) at javax.servlet.http.HttpServlet.service(HttpServlet.java:709) at javax.servlet.http.HttpServlet.service(HttpServlet.java:802) at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:237) at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:157) at com.schoolspecialty.ecommerce.servlets.filters.EcommerceURLFilter.doFilter(Unknown Source) at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:186) at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:157) at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:214) at org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:104) at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:520) at org.apache.catalina.core.StandardContextValve.invokeInternal(StandardContextValve.java:198) at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:152) at org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:104) at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:462) at org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:102) at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:520) at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:137) at org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:104) at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:118) at org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:102) at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:520) at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) at org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:104) at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:520) at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:929) at org.apache.coyote.tomcat5.CoyoteAdapter.service(CoyoteAdapter.java:160) at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:799) at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.processConnection(Http11Protocol.java:705) at org.apache.tomcat.util.net.TcpWorkerThread.runIt(PoolTcpEndpoint.java:577) at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:683) at java.lang.Thread.run(Thread.java:534)

    We used a documented option to abandon connects in the case of an unforeseen error. The consequence of using this option was not a graceful degradation in performance but a complete lockup of the application. The scenario in which we created a moderate number of abandoned connections was a rare error scenario but a valid test.
    How could this not be a bug in the Oracle driver? Is dead-lock a desireable outcome of using an option? Is dead-lock ever an acceptable consequence of using a feature as documented?
    Turns out other Oracle options to recover from an unexpected error also incur a similar deadlock (TimeToLiveTimeout).
    I did a code review of the decompiled drivers and it clearly shows the issue, confirming the original report of this issue. Perhaps you have evidence to the contrary or better evidence to support your statement "not a bug in Oracle"?
    Perhaps you are one of the very few people who have not experience problems with Oracle drivers? I've been using Oracle since 7.3.4 and it seems that I have always been working around Oracle JDBC driver problems.
    We are using Tomcat with the OracleDataSourceFactory.

  • Bug in Oracle JDBC thin driver (parameter order)

    [ I'd preferably send this to some Oracle support email but I
    can't find any on both www.oracle.com and www.technet.com. ]
    The following program illustrates bug I found in JDBC Oracle thin
    driver.
    * Synopsis:
    The parameters of prepared statement (I tested SELECT's and
    UPDATE's) are bound in the reverse order.
    If one do:
    PreparedStatement p = connection.prepareStatement(
    "SELECT field FROM table WHERE first = ? and second = ?");
    and then bind parameter 1 to "a" and parameter to "b":
    p.setString(1, "a");
    p.setString(2, "b");
    then executing p yields the same results as executing
    SELECT field FROM table WHERE first = "b" and second = "a"
    although it should be equivalent to
    SELECT field FROM table WHERE first = "a" and second = "b"
    The bug is present only in "thin" Oracle JDBC driver. Changing
    driver to "oci8" solves the problem.
    * Version and platform info:
    I detected the bug using Oracle 8.0.5 server for Linux.
    According to $ORACLE_HOME/jdbc/README.doc that is
    Oracle JDBC Drivers release 8.0.5.0.0 (Production Release)
    * The program below:
    The program below illustrates the bug by creating dummy two
    column table, inserting the row into it and then selecting
    the contents using prepared statement. Those operations
    are performed on both good (oci8) and bad (thin) connections,
    the results can be compared.
    You may need to change SID, listener port and account data
    in getConnecton calls.
    Sample program output:
    $ javac ShowBug.java; java ShowBug
    Output for both connections should be the same
    --------------- thin Driver ---------------
    [ Non parametrized query: ]
    aaa
    [ The same - parametrized (should give one row): ]
    [ The same - with buggy reversed order (should give no answers):
    aaa
    --------------- oci8 driver ---------------
    [ Non parametrized query: ]
    aaa
    [ The same - parametrized (should give one row): ]
    aaa
    [ The same - with buggy reversed order (should give no answers):
    --------------- The end ---------------
    * The program itself
    import java.sql.*;
    class ShowBug
    public static void main (String args [])
    throws SQLException
    // Load the Oracle JDBC driver
    DriverManager.registerDriver(new
    oracle.jdbc.driver.OracleDriver());
    System.out.println("Output for both connections should be the
    same");
    Connection buggyConnection
    = DriverManager.getConnection
    ("jdbc:oracle:thin:@localhost:1521:ORACLE",
    "scott", "tiger");
    process("thin Driver", buggyConnection);
    Connection goodConnection
    = DriverManager.getConnection ("jdbc:oracle:oci8:",
    "scott", "tiger");
    process("oci8 driver", goodConnection);
    System.out.println("--------------- The end ---------------");
    public static void process(String title, Connection conn)
    throws SQLException
    System.out.println("--------------- " + title + "
    Statement stmt = conn.createStatement ();
    stmt.execute(
    "CREATE TABLE bug (id VARCHAR(10), val VARCHAR(10))");
    stmt.executeUpdate(
    "INSERT INTO bug VALUES('aaa', 'bbb')");
    System.out.println("[ Non parametrized query: ]");
    ResultSet rset = stmt.executeQuery(
    "select id from bug where id = 'aaa' and val = 'bbb'");
    while (rset.next ())
    System.out.println (rset.getString (1));
    System.out.println("[ The same - parametrized (should give one
    row): ]");
    PreparedStatement prep = conn.prepareStatement(
    "select id from bug where id = ? and val = ?");
    prep.setString(1, "aaa");
    prep.setString(2, "bbb");
    rset = prep.executeQuery();
    while (rset.next ())
    System.out.println (rset.getString (1));
    System.out.println("[ The same - with buggy reversed order
    (should give no answers): ]");
    prep = conn.prepareStatement(
    "select id from bug where id = ? and val = ?");
    prep.setString(1, "bbb");
    prep.setString(2, "aaa");
    rset = prep.executeQuery();
    while (rset.next ())
    System.out.println (rset.getString (1));
    stmt.execute("DROP TABLE bug");
    null

    Horea
    In the ejb-jar.xml, in the method a cursor is closed, set <trans-attribute>
    to "Never".
    <assembly-descriptor>
    <container-transaction>
    <method>
    <ejb-name></ejb-name>
    <method-name></method-name>
    </method>
    <trans-attribute>Never</trans-attribute>
    </container-transaction>
    </assembly-descriptor>
    Deepak
    Horea Raducan wrote:
    Is there a known bug in Oracle JDBC thin driver version 8.1.6 that would
    prevent it from closing the open cursors ?
    Thank you,
    Horea

  • Bug in oracle portal: problem in pl/sql item type

    I created a pl/sql item type... based on a stored proc... whenever I make a change to the store proc I have to readd the item based on this item type since the result on the item type is not updated is this some bug in oracle portal

    I created a pl/sql item type... based on a stored proc... whenever I make a change to the store proc I have to readd the item based on this item type since the result on the item type is not updated is this some bug in oracle portal

  • Bug in Oracle

    Sir,i know it very clearly that ,primary key column ,can not be null.
    But the bug in oracle is that,
    when first time ,i tried to ALTER the primary key column in the table,to accept NULL,
    oracle shows the message that ,"TABLE ALTERED."
    But when i queried the USER_TAB_COLUMNS,data dictionary ,i found that the primary column,is actually NOT ALTERED AT ALL,TO ACCEPT NULL VALUES.
    Although oracle is enforcing the rule that,PRIMARY KEY COLUMN CAN NOT BE NULL ,but how ORACLE GENERATED THE FALSE MESSAGE THAT -"Table Altered".
    where as the DDL operation was not successful.
    But when second time ,i tried to ALTER the primary key column,to accept NULL,
    oracle shows the message that ,
    ORA-01451: column to be modified to NULL cannot be modified to NULL
    So what i am saying is that,why oracle show me the correct ,message ,
    "ORA-01451: column to be modified to NULL cannot be modified to NULL",
    at the second time DDL operation ,rather than showing me at the first time DDL operation.
    And how even if ,at the first time, the DLL operation was not successful,
    how oracle shows the false message that "Table Altered".
    Please go through the steps as i have mentioned below ,to ALTER TABLE,then you can find the problem.
    I have gone through steps like this.
    -->Suppose in a Employee table,EMP_ID column is primary key
    -->I tried to alter EMP_ID column to accept NULL values,
    but it generates error
    ALTER TABLE EMPLOYEE
    MODIFY (EMP_ID NULL);
    ORA-01451: column to be modified to NULL cannot be modified to NULL
    -->So i tried ,to alter EMP_ID column to NOT NULL,
    and i got message ,Table altered.
    ALTER TABLE EMPLOYEE
    MODIFY (EMP_ID NOT NULL);
    -->Then i tried to alter EMP_ID column to accept NULL values,
    but THIS TIME IT DOES NOT GENERATES ANY ERROR,
    and i got message ,Table altered.
    ALTER TABLE EMPLOYEE
    MODIFY (EMP_ID NULL);
    But when again ,i run the same statement again,it generates error
    ORA-01451: column to be modified to NULL cannot be modified to NULL

    Please don't post duplicate threads.
    {thread:id=1100939}

  • Bug in Oracle 10.2.0.1.0-10.2.0.3.0: Sorted Hash Cluster

    I found another bug in Oracle:
    SQL> create cluster tfsys_cluster
    2 (
    3 name varchar2(30),
    4 cdp number(6),
    5 stime number(6) sort)
    6 hashkeys 1000
    7 size 100;
    SQL> create table tfsys(
    2 name varchar2(30) not null,
    3 cdp number(6) not null,
    4 stime number(6) not null,
    5 data number(10,2))
    6 cluster tfsys_cluster(name, cdp, stime);
    SQL> alter table tfsys add constraint tfsys_pk primary key(name, cdp, stime);
    SQL> begin
    2 for i in 1..5 loop
    3 insert into tfsys values('IANC', 1, i, 15.25 + i);
    4 end loop;
    5 end;
    6 /
    SQL> commit;
    SQL> select * from tfsys where name='IANC' and cdp=1 and stime <= 3;
    NAME CDP STIME DATA
    IANC 1 1 16,25
    IANC 1 2 17,25
    IANC 1 3 18,25
    SQL> select * from tfsys where name='IANC' and cdp=1 and stime < 3;
    NAME CDP STIME DATA
    IANC 1 1 16,25
    IANC 1 2 17,25
    IANC 1 3 18,25
    SQL> select * from tfsys where name='IANC' and cdp=1 and trunc(stime) < 3;
    NAME CDP STIME DATA
    IANC 1 1 16,25
    IANC 1 2 17,25
    This bug exists in Oracle 10.2.0.1.0-10.2.0.3.0 for Windows installation, for example in Oracle 10.1.0.3.1 for Red Hat 3 this query work right.

    FWIW I have not been able to reproduce your problem on Windows.
    I am getting the same results in Windows and Linux.
    You should check if the execution plan is different in both cases

  • Bug in oracle embedded http listener

    Hi there,
    I've discovered a bug in the Oracle embedded http listener for our Oracle on RHEL database version 11.1.0.6 where it will return HTTP-400 bad request errors if a cookie is created with a bare comma in the cookie value. To see for yourself, simply create an apex application with an open door authentication and enter a username with a comma in it - page 101 writes the username to a cookie, and then you get HTTP-400 errors.
    I'll raise this as a bug at Oracle, but in the meantime I'm frantically trying to figure out a workaround. We have a production site using a standard Apache frontend that we link to Apex applications using mod_rewrite. There are other applications on the site (invision powerboard) which create cookies with bare commas, so we have no control over the creation of these maligned cookies. My thinking is that we might be able to use mod_rewrite rules to weed out the offending cookies and encode the commas so that things continue to work.
    Can anyone assist with a workaround?
    Many thanks,
    Mike

    Hi Mike,
    perhaps you can try to modify the cookies on the client?
    http://scripts.franciscocharrua.com/javascript-cookies.php
    Or is it already too late so that you cannot even run the first procedure to inject the javascript code into the first page?
    Or, you could configure the DAD to run a stored procedure before anything else:
    PlsqlBeforeProcedure
    http://download-uk.oracle.com/docs/cd/B19306_01/appdev.102/b14258/d_epg.htm
    If this is already too late, your only option seems to be to use an Apache as a proxy and modify the cookie value there.
    Regards,
    ~Dietmar.

  • Bug in Oracle JDBC thin driver 8.1.6 ?

    Is there a known bug in Oracle JDBC thin driver version 8.1.6 that would
    prevent it from closing the open cursors ?
    Thank you,
    Horea

    Horea
    In the ejb-jar.xml, in the method a cursor is closed, set <trans-attribute>
    to "Never".
    <assembly-descriptor>
    <container-transaction>
    <method>
    <ejb-name></ejb-name>
    <method-name></method-name>
    </method>
    <trans-attribute>Never</trans-attribute>
    </container-transaction>
    </assembly-descriptor>
    Deepak
    Horea Raducan wrote:
    Is there a known bug in Oracle JDBC thin driver version 8.1.6 that would
    prevent it from closing the open cursors ?
    Thank you,
    Horea

  • Bug in Oracle UpdatableResultSet? (insert, updateString requires non-empty ResultSet?

    As far as I can determine from the documentation and posts in other newsgroups
    the following example should work to produce an updatable but "empty" ResultSet which can be used to insert rows.
    But it doesn't work in a JDK 1.2.2 and JDK 1.3.0_01 application using Oracle 8i (8.1.7) thin JDBC
    driver against an Oracle 8.1.5 database I get the following error
    SQLException: java.sql.SQLException: Invalid argument(s) in call: setRowBufferAt
    However, if I change it to so the target (ie insert) ResultSet is initialized to contain one or more
    rows, it works just fine.
    ResultSet rset2 = stmt2.executeQuery ( "select Context.* from Context where ContextCd = '0' " );
    Is this a bug in Oracle's JDBC driver (more specifically, the UpdatableResultSet implimentation)?
    Does an updatabable ResultSet have to return rows to be valid and useable for insert operations?
    If it does, is there another way to create an updatable ResultSet that does not depend upon
    "hard-coding" some known data value into the query?
    try
    // conn is a working, tested connection to an Oracle database via 8.1.7 thin JDBC driver.
    // source statement
    Statement stmt = conn.createStatement (
    ResultSet.TYPE_SCROLL_INSENSITIVE, ResultSet.CONCUR_READ_ONLY );
    System.out.println("source rset");
    rset = stmt.executeQuery ( "select Context.* from Context" );
    // target Statement
    Statement stmt2 = conn.createStatement (
    ResultSet.TYPE_SCROLL_SENSITIVE, ResultSet.CONCUR_UPDATABLE );
    ResultSet rset2 =
    stmt2.executeQuery ( "select Context.* from Context where ContextCd = NULL" );
    System.out.println(
    "see if rset2 looks good even though empty (bcs primarykey = null)");
    ResultSetMetaData rsmd2 = rset2.getMetaData();
    int numColumns = rsmd2.getColumnCount();
    for( int i = 0; i <= numColumns; i++ )
    env.msg.println ( "(" + i + ") " + rsmd2.getColumnLabel(i) );
    // test results showed the correct columns even though no row returned.
    // quess we can use this trick to create an "empty" insert ResultSet.
    System.out.println("interate through rset and insert using rset2");
    if(rset.next())
    System.out.println("move to insert row");
    rset2.moveToInsertRow();
    System.out.println("insert values");
    rset2.updateString( "ContextCd", rset.getString("ContextCd") + "-test" );
    rset2.updateString( "Descrip", "test" );
    rset2.updateString( "Notes", "test" );
    System.out.println("insert row into db (but not committed)");
    rset2.insertRow();
    catch( ... ) ...
    Thanks
    R.Parr
    Temporal Arts

    I have noticed the same problem, actually it doens't matter if there is no data in your resultset. If you have a result with data and suppose you were to analyze the data by moving through all of the rows, the cursor is now after the last row. If you call insertRow, the same exception is thrown. Kinda strange, I didn't get any response as to why this is happening and that was a few weeks ago. I hope someone responds, at this point I am just re-writing some of my code to not use updateable resultsets.
    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by Randall Parr ([email protected]):
    As far as I can determine from the documentation and posts in other newsgroups
    the following example should work to produce an updatable but "empty" ResultSet which can be used to insert rows.
    But it doesn't work in a JDK 1.2.2 and JDK 1.3.0_01 application using Oracle 8i (8.1.7) thin JDBC
    driver against an Oracle 8.1.5 database I get the following error<HR></BLOCKQUOTE>
    null

  • BUG in Oracle SQL Developer 3.0.04 on the "generating DLL" with comments?

    I'm newbie on oracle, but I think that I found out a bug in Oracle SQL Developer version 3.0.04 on the "generating DLL" tool using "comments".
    I will describe the steps that I gave:
    I created a view, but after I test it I had to change my “where” condition, so I comment the old code and then I wrote the new “where” condition below. After I done that I tried to look at the sql code of my view using “generating DLL” tool, but oracle sql developer only shown me half of the code, a lot of code were missing. Then I began with some test trying to understand what happen and I notice that if I put an invalid sql code in my comment the generating DLL start working with no problems, for example(pseudo-code):
    (COMMENT WITH VALID SQL CODE the "Generating SQL" don't work:)
    CREATE OR REPLACE VIEW <user>.<view_name> ( <column1>,<column2> )
    AS
    SELECT column1, column2
    FROM table1
    INNER JOIN
    (SELECT
    FROM table2
    INNER JOIN .....
    INNER JOIN ....
    --where time_stamp = (select max(time_stamp) from .....)
    WHERE time_stamp >= TRUNC(sysdate)
    ) t1 ON t1.ID = ....
    AND ..... >= TRUNC(sysdate)
    ORDER BY ....
    Generating DLL returns this(when the error occurs):
    CREATE OR REPLACE VIEW <user>.<view_name> ( <column1>,<column2> )
    AS
    (COMMENT WITH VALID SQL CODE the "Generating SQL" work with no problems:)
    CREATE OR REPLACE VIEW <user>.<view_name> ( <column1>,<column2> )
    AS
    SELECT column1, column2
    FROM table1
    INNER JOIN
    (SELECT
    FROM table2
    INNER JOIN .....
    INNER JOIN ....
    --where
    WHERE time_stamp >= TRUNC(sysdate)
    ) t1 ON t1.ID = ....
    AND ..... >= TRUNC(sysdate)
    ORDER BY ....
    I believe that "Generating DLL" tool have some problem with the comments, I also used /*...*/ to comment but the problem is still active.
    I notice as well that if I started to add some more comments along the code, the conditions migth change, so I think the problem is related with "comments" code.
    Would you mind telling me if this is a real bug or if I'm doing anything wrong.
    Thank you in advance,
    Rodrigo Campos
    Edited by: 894886 on 3/Nov/2011 5:29

    Hi Rodrigo,
    Thank you for reporting this. The only bug I see currently logged on a comment affecting the generated View DDL involves ending the last line of the definition with a comment, which treats the ending semi-colon (even if on a different line) as part of the comment. That is actually related to a low-priority bug against an Oracle database API.
    Unfortunately, your pseudo-code is a bit complex. Trying a few quick, simpler tests against the standard HR schema did not reproduce the issue. I tried INNER JOIN, and nested SELECTs. It would help greatly if you could provide a test case compilable against one of the standard schema, like HR or SCOTT.
    Regards,
    Gary
    SQL Developer Team

  • Bug in Oracle's handling of transaction isolation levels?

    Hello,
    I think there is a bug in Oracle 9i database related to serializable transaction isolation level.
    Here is the information about the server:
    Operating System:     Microsoft Windows 2000 Server Version 5.0.2195 Service Pack 2 Build 2195
    System type:          Single CPU x86 Family 6 Model 8 Stepping 10 GenuineIntel ~866 MHz
    BIOS-Version:          Award Medallion BIOS v6.0
    Locale:               German
    Here is my information about the client computer:
    Operaing system:     Microsoft Windows XP
    System type:          IBM ThinkPad
    Language for DB access: Java
    Database information:
    Oracle9i Enterprise Edition Release 9.2.0.1.0 - Production
    With the Partitioning, OLAP and Oracle Data Mining options
    JServer Release 9.2.0.1.0 - Production
    The database has been set up using the default settings and nothing has been changed.
    To reproduce the bug, follow these steps:
    1. Create a user in 9i database called 'kaon' with password 'kaon'
    2. Using SQL Worksheet create the following table:
    CREATE TABLE OIModel (
    modelID int NOT NULL,
    logicalURI varchar (255) NOT NULL,
    CONSTRAINT pk_OIModel PRIMARY KEY (modelID),
    CONSTRAINT logicalURI_OIModel UNIQUE (logicalURI)
    3. Run the following program:
    package test;
    import java.sql.*;
    public class Test {
    public static void main(String[] args) throws Exception {
    java.util.Locale.setDefault(java.util.Locale.US);
    Class.forName("oracle.jdbc.OracleDriver");
    Connection connection=DriverManager.getConnection("jdbc:oracle:thin:@schlange:1521:ORCL","kaon","kaon");
    DatabaseMetaData dmd=connection.getMetaData();
    System.out.println("Product version:");
    System.out.println(dmd.getDatabaseProductVersion());
    System.out.println();
    connection.setAutoCommit(false);
    connection.setTransactionIsolation(Connection.TRANSACTION_SERIALIZABLE);
    int batches=0;
    int counter=2000;
    for (int outer=0;outer<50;outer++) {
    for (int i=0;i<200;i++) {
    executeUpdate(connection,"INSERT INTO OIModel (modelID,logicalURI) VALUES ("+counter+",'start"+counter+"')");
    executeUpdate(connection,"UPDATE OIModel SET logicalURI='next"+counter+"' WHERE modelID="+counter);
    counter++;
    connection.commit();
    System.out.println("Batch "+batches+" done");
    batches++;
    protected static void executeUpdate(Connection conn,String sql) throws Exception {
    Statement s=conn.createStatement();
    try {
    int result=s.executeUpdate(sql);
    if (result!=1)
    throw new Exception("Should update one row, but updated "+result+" rows, query is "+sql);
    finally {
    s.close();
    The program prints the following output:
    Product version:
    Oracle9i Enterprise Edition Release 9.2.0.1.0 - Production
    With the Partitioning, OLAP and Oracle Data Mining options
    JServer Release 9.2.0.1.0 - Production
    Batch 0 done
    Batch 1 done
    java.lang.Exception: Should update one row, but updated 0 rows, query is UPDATE OIModel SET logicalURI='next2571' WHERE modelID=2571
         at test.Test.executeUpdate(Test.java:35)
         at test.Test.main(Test.java:22)
    That is, after several iterations, the executeUpdate() method returns 0, rather than 1. This is clearly an error.
    4. Leave the database as is. Replace the line
    int counter=2000;
    with line
    int counter=4000;
    and restart the program. The following output is generated:
    Product version:
    Oracle9i Enterprise Edition Release 9.2.0.1.0 - Production
    With the Partitioning, OLAP and Oracle Data Mining options
    JServer Release 9.2.0.1.0 - Production
    Batch 0 done
    Batch 1 done
    java.sql.SQLException: ORA-08177: can't serialize access for this transaction
         at oracle.jdbc.dbaccess.DBError.throwSqlException(DBError.java:134)
         at oracle.jdbc.ttc7.TTIoer.processError(TTIoer.java:289)
         at oracle.jdbc.ttc7.Oall7.receive(Oall7.java:573)
         at oracle.jdbc.ttc7.TTC7Protocol.doOall7(TTC7Protocol.java:1891)
         at oracle.jdbc.ttc7.TTC7Protocol.parseExecuteFetch(TTC7Protocol.java:1093)
         at oracle.jdbc.driver.OracleStatement.executeNonQuery(OracleStatement.java:2047)
         at oracle.jdbc.driver.OracleStatement.doExecuteOther(OracleStatement.java:1940)
         at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:2709)
         at oracle.jdbc.driver.OracleStatement.executeUpdate(OracleStatement.java:796)
         at test.Test.executeUpdate(Test.java:33)
         at test.Test.main(Test.java:22)
    This is clearly an error - only one transaction is being active at the time, so there is no need for serialization of transactions.
    5. You can restart the program as many times you wish (by chaging the initial counter value first). The same error (can't serialize access for this transaction) will be generated.
    6. The error doesn't occur if the transaction isolation level isn't changed.
    7. The error doesn't occur if the UPDATE statement is commented out.
    Sincerely yours
         Boris Motik

    I have a similar problem
    I'm using Oracle and serializable isolation level.
    Transaction inserts 4000 objects and then updates about 1000 of these objects.
    Transactions sees inserted objects but cant update them (row not found or can't serialize access for this transaction are thrown).
    On 3 tries for this transaction 1 succeds and 2 fails with one of above errors.
    No other transactions run concurently.
    In read commited isolation error doesn't arise.
    I'm using plain JDBC.
    Similar or even much bigger serializable transaction works perfectly on the same database as plsql procedure.
    I've tried oci and thin (Oracle) drivers and oranxo demo (i-net) driver.
    And this problems arises on all of this drivers.
    This problem confused me so much :(.
    Maby one of Oracle users, developers nows cause of this strange behaviour.
    Thanx for all answers.

Maybe you are looking for

  • Deletion of customer

    Hi all, I'd like to know how it is possible to check if a customer numebr has been delete in sap? thanks for your help

  • Aperture 3.03 Adjustment bricks suddenly disappear

    In full screen mode I will see a histogram, but the space under adjustments is blank. So far I have been able to return to view mode. The space is still blank, no bricks showing, but I can pull down adjustments and click on any brush. The adjustment

  • Sqlplus copy command

    Am trying to use copy command (copy data from table in old db to table in new db); am coming up with ERROR: ORA--3929306: Message -3929306 not found; product=RDBMS; facility=ORA and I cannot find any information on this error. The search function in

  • TV signal gone after reset HELP please..

    Since we got that major update on BT vision 3-4 months ago my vision has been near on useless. it freezes when watching freeview channels, wouldnt even load the catch up menus half the time, when I called and complained I was told it was because the

  • I have Evernote web clipper. It does not appear on Firefox menu. What to do?

    Evernote web clipper is properly installed. The version is exactly for Firefox. The icon does not appear as promised on a toolbar, so I can not webclip my Mozilla pages. Regards, Andris Ozols