Does oracle support TRANSACTION_READ_UNCOMMITTED level?

I am using oc4j drivers with jdbc for oracle 9i
I could not set the transaction isolation level to TRANSACTION_READ_UNCOMMITTED.
Does oracle support this transaction level ?
(SQL Server support it)
Here is the stack trace of the error:
java.sql.SQLException: READ_COMMITTED et SERIALIZABLE sont les seuls niveaux de transaction valides
java.sql.SQLException: READ_COMMITTED et SERIALIZABLE sont les seuls niveaux de transaction valides
at oracle.jdbc.dbaccess.DBError.throwSqlException(DBError.java:134)
at oracle.jdbc.dbaccess.DBError.throwSqlException(DBError.java:179)
at oracle.jdbc.dbaccess.DBError.throwSqlException(DBError.java:269)
at oracle.jdbc.driver.OracleConnection.setTransactionIsolation(OracleConnection.java:1681)
Thanks for any help...

Mahmoud,
The error message, you have posted, seems very clear -- the only valid values are READ_COMMITTED and SERIALIZABLE. This is also documented in the "Oracle9i JDBC Developer’s Guide and Reference", chapter 19 [Coding Tips and Troubleshooting], in the section entitled "Transaction Isolation Levels and Access Modes". Here is an excerpt:
the Oracle server supports only the TRANSACTION_READ_
COMMITTED and TRANSACTION_SERIALIZABLE transaction isolation levels
As someone who moved from Oracle to Informix, I can tell you from my experience, that different RDBMS's have the same functions, but each works differently. So while you probably needed to use the TRANSACTION_READ_UNCOMMITTED isolation level with "SQL Server", you don't need it for Oracle.
What you need to do is forget how you do things with "SQL Server", and learn how to do things the Oracle way. As you have seen, trying to transfer "SQL Server" code to Oracle doesn't always work.
The Oracle documentation is available from
http://tahiti.oracle.com
Good Luck,
Avi.

Similar Messages

  • Does Oracle support this........

    Hi
    I want to select values in a object types in a table over the database link. like
    select name from [email protected]
    where name is of type varray(3) of varchar2(100) in the country table and db.com is database link.
    It is giving me error ORA-22804.
    Does Oracle supports this or not?
    Regds
    ~Sachin

    Your answer is in the message text - Oracle does not support object operations over a database link.
    null

  • What is native Sql data types and does oracle support this?

    what is native Sql data types
    Does oracle support this?

    http://download-east.oracle.com/docs/cd/B19306_01/server.102/b14220/datatype.htm#g31099

  • Does Oracle support "imported" XML schemas

    Hi,
    Does Oracle support XML schemas that import other XML schemas. If so, are there any known problems ?
    Thanks
    John

    I have the same problem:
    A huge and complex .xsd-schema with several include and import statements can't be registered (all referenced documents exist in the repository):
    DBMS_XMLSCHEMA.REGISTERSCHEMA(
    schemaURL => 'http://www.toxinfo.org/namespaces/2004/05/Rosetta#ProtocolEmil',
    schemaDoc => xdbURIType('/ProtocolEmil.xsd').getClob(),
    local => TRUE,
    genTypes => TRUE,
    genBean => FALSE,
    genTables => TRUE
    causes an Error at the first import:
    ERROR at line 1:
    ORA-31000: Resource 'RosettaSimpleTypeCollection.xsd' is not an XDB schema
    document
    ORA-06512: at "XDB.DBMS_XMLSCHEMA_INT", line 17
    ORA-06512: at "XDB.DBMS_XMLSCHEMA", line 26
    ORA-06512: at line 2
    Editing the schema is not an option for me. Any ideas?
    Thanks!
    Tillmann Cordes

  • Does oracle support array in SQL?

    The follow syntax for postgresql works with good performance, does Oracle support? Thanks
    select
         r.company_code,
         r.date,
         r.d5[1] as d5_udm,
         r.d5[2] as d5_ddm,
         r.d5[3] as d5_tr,
    from (
         select
              q.company_code,
              q.date,
              (select array[avg(abs(highest_rate-opening_rate)), avg(abs(opening_rate-lowest_rate)), avg(highest_rate-lowest_rate)] from (select lowest_rate, highest_rate, opening_rate from hkex.quotation q1 where not q1.is_trade_suspend and q1.company_code=q.company_code and q1.date<=q.date order by q1.date desc limit 5) t) as d5
         from hkex.quotation q
         where not q.is_trade_suspend
    ) r;

    Hi,
    I'm not a postgresql exponent but the following query might work, though I haven't tested it.
    select
    r.company_code,
    r.date,
    udm as d5_udm,
    ddm as d5_ddm,
    tr as d5_tr,
    from (
    select
    q.company_code,
    q.date,
    (select avg(abs(highest_rate-opening_rate)) udm,
              avg(abs(opening_rate-lowest_rate)) ddm,
              avg(highest_rate-lowest_rate) tr
    from (select lowest_rate, highest_rate, opening_rate
            from hkex.quotation q1
            where not q1.is_trade_suspend = '0' -- as below
            and q1.company_code=q.company_code
            and q1.date<=q.date
            order by q1.date desc limit 5) t) as d5   -- not sure what limit 5 does (possibly first 5 rows?)
    from hkex.quotation q
    where q.is_trade_suspend = '0'  -- Oracle does not support boolean data type for columns so change col to varchar2(1) with '0' and '1' for false and true
    ) r;Andre
    Edited by: acadet on Mar 4, 2010 3:43 PM

  • Does Oracle support downlaods?

    An Oracle Support Analyst recently told me that downloads from
    TechNet are not officially supported by Oracle, after I had
    created a TAR for a 9i database problem which had been installed
    from such a download. Unless I reinstalled from CDs they were
    unwilling to progress the TAR, unless I could come up with a
    fully reproducable test case which would have been difficult as
    it was an intermittent problem. The question is where on OTN
    does it say that downloads are unsupported and does this include
    the patches on Metalink? Are Oracle effectively saying that we
    shouldn't be downloading software. The problem with ordering
    CD's is that they only seem to be available weeks/months after
    the download is first made available and patches often need to
    be installed in a hurry.

    Let me try that again...
    An Oracle Support Analyst recently told me that downloads from
    TechNet are not officially supported by Oracle, after I had
    created a TAR for a 9i database problem which had been installed
    from such a download. Unless I reinstalled from CDs they were
    unwilling to progress the TAR, unless I could come up with a
    fully reproducable test case which would have been difficult as
    it was an intermittent problem. The question is where on OTN
    does it say that downloads are unsupported and does this include
    the patches on Metalink? Are Oracle effectively saying that we
    shouldn't be downloading software. The problem with ordering
    CD's is that they only seem to be available weeks/months after
    the download is first made available and patches often need to
    be installed in a hurry. I'm not the normal moderator of the OTN forum (I guess I'm the
    abnormal one), but I was curious too and I went to the download
    and grabbed the license agreement. If you want to comment, send
    email to [email protected]
    Check out the bold section.
    ORACLE TECHNOLOGY NETWORK DEVELOPMENT LICENSE AGREEMENT
    "We," "us," and "our" refers to Oracle Corporation. "You"
    and "your" refers to the individual or entity that has ordered
    the programs from Oracle. "Programs" refers to the software
    product which you have ordered and program
    documentation. "License" refers to your right to use the
    programs under the terms of this agreement. This agreement is
    governed by the substantive and procedural laws of California.
    You and Oracle agree to submit to the exclusive jurisdiction of,
    and venue in, the courts of California in any dispute relating
    to this agreement.
    We are willing to license the programs to you only upon the
    condition that you accept all of the terms contained in this
    agreement. Read the terms carefully and select the "Accept"
    button at the bottom of the page to confirm your acceptance. If
    you are not willing to be bound by these terms, select the "Do
    Not Accept" button and the registration process will not
    continue.
    License Rights
    We grant you a nonexclusive, nontransferable limited license to
    use the programs only for purposes of developing and prototyping
    your applications that operate with the programs, and not for
    any other purpose. If you want to use the programs for any
    purpose other than as permitted under this agreement you must
    contact us, or an Oracle reseller, to obtain the appropriate
    license. We may audit your use of the programs. Program
    documentation is either shipped with the programs, or
    documentation may accessed online at http://otn.oracle.com/docs.
    Ownership and Restrictions
    We retain all ownership and intellectual property rights in the
    programs. The programs may be installed on one computer only,
    and used by one person in the operating environment identified
    by us. You may make one copy of the programs for backup purposes.
    You may not:
    use the programs for your own internal data processing or for
    any commercial or production purposes, or use the programs for
    any purpose except the development and prototyping of your
    applications that operate with the programs;
    remove or modify any program markings or any notice of our
    proprietary rights;
    make the programs available in any manner to any third party for
    use in the third party's business operations;
    use the programs to provide third party training;
    assign this agreement or give or transfer the programs or an
    interest in them to another individual or entity;
    cause or permit reverse engineering or decompilation of the
    programs;
    disclose results of any program benchmark tests without our
    prior consent; or,
    use any Oracle name, trademark or logo.
    Export
    You agree that U.S. export control laws and other applicable
    export and import laws govern your use of the programs,
    including technical data. You agree that neither the programs
    nor any direct product thereof will be exported, directly, or
    indirectly, in violation of these laws, or will be used for any
    purpose prohibited by these laws including, without limitation,
    nuclear, chemical, or biological weapons proliferation.
    Disclaimer of Warranty and Exclusive Remedies
    THE PROGRAMS ARE PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND.
    WE FURTHER DISCLAIM ALL WARRANTIES, EXPRESS AND IMPLIED,
    INCLUDING WITHOUT LIMITATION, ANY IMPLIED WARRANTIES OF
    MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.
    IN NO EVENT SHALL WE BE LIABLE FOR ANY INDIRECT, INCIDENTAL,
    SPECIAL, PUNITIVE OR CONSEQUENTIAL DAMAGES, OR DAMAGES FOR LOSS
    OF PROFITS, REVENUE, DATA OR DATA USE, INCURRED BY YOU OR ANY
    THIRD PARTY, WHETHER IN AN ACTION IN CONTRACT OR TORT, EVEN IF
    WE HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. OUR
    ENTIRE LIABILITY FOR DAMAGES HEREUNDER SHALL IN NO EVENT EXCEED
    ONE THOUSAND DOLLARS (U.S. $1,000).
    Trial Programs Included With Orders
    We may include additional programs with an order which may be
    used for trial purposes only. You will have 30 days from the
    delivery date to evaluate these programs. Any use of these
    programs after the 30 day trial period requires you to obtain
    the applicable license. Programs licensed for trial purposes are
    provided "as is" and we do not provide technical support or any
    warranties for these programs.
    No Technical Support
    Our technical support organization will not provide technical
    support, phone support, or updates to you for the programs
    licensed under this agreement.
    End of Agreement
    You may terminate this agreement by destroying all copies of the
    programs. We have the right to terminate your right to use the
    programs if you fail to comply with any of the terms of this
    agreement, in which case you shall destroy all copies of the
    programs.
    Relationship Between the Parties
    The relationship between you and us is that of
    licensee/licensor. Neither party will represent that it has any
    authority to assume or create any obligation, express or
    implied, on behalf of the other party, nor to represent the
    other party as agent, employee, franchisee, or in any other
    capacity. Nothing in this agreement shall be construed to limit
    either party's right to independently develop or distribute
    software that is functionally similar to the other party's
    products, so long as proprietary information of the other party
    is not included in such software.
    Restricted Rights
    Use, duplication or disclosure by the United States government
    is subject to the restrictions as set forth in the Rights in
    Technical Data and Computer Software Clauses in DFARS 252.227-
    7013(c)(1)(ii) and FAR 52.227-19(c)(2) as applicable. The
    manufacturer is Oracle Corporation, 500 Oracle Parkway, Redwood
    City, California 94065, U.S.A.
    Open Source
    "Open Source" software -- software available without charge for
    use, modification and distribution -- is often licensed under
    terms that require the user to make the user's modifications to
    the Open Source software or any software that the
    user 'combines' with the Open Source software freely available
    in source code form. If you use Open Source software in
    conjunction with the programs, you must ensure that your use
    does not: (i) create, or purport to create, obligations of us
    with respect to the Oracle programs; or (ii) grant, or purport
    to grant, to any third party any rights to or immunities under
    our intellectual property or proprietary rights in the Oracle
    programs. For example, you may not develop a software program
    using an Oracle program and an Open Source program where such
    use results in a program file(s) that contains code from both
    the Oracle program and the Open Source program (including
    without limitation libraries) if the Open Source program is
    licensed under a license that requires any "modifications" be
    made freely available. You also may not combine the Oracle
    program with programs licensed under the GNU General Public
    License ("GPL") in any manner that could cause, or could be
    interpreted or asserted to cause, the Oracle program or any
    modifications thereto to become subject to the terms of the GPL.
    Entire Agreement
    You agree that this agreement is the complete agreement for the
    programs and licenses, and this agreement supersedes all prior
    or contemporaneous agreements or representations. If any term of
    this agreement is found to be invalid or unenforceable, the
    remaining provisions will remain effective.

  • Does Oracle Support Running Oracle 10 Database on VMware ?

    hi experts,
    I have 10g Enterprise on a Windows 64-bit Enterprise platform.
    I know this is a recurring question - whether or not Oracle really supports customers that run Oracle databases in a VMWare environment.
    I found a document on My Oracle Support/metalink that is dated 2007. It says VMWare is not supported.
    But I think the situation may have changed since 2007.
    So can anyone point me to a document that shows whether Oracle does/does not support running Oracle databases on VMware - not Oracle's VMware product but VMWare, inc. ?
    Thanks for any current information. John

    Hans Forbrich wrote:
    1) Oracle has their own virtualization solution;
    2) VMWare is a brand, not a product. Your question is best asked in context of a product;
    3) Oracle will provide you with support as long as you can reproduce the problem in a non-VM environment.
    That last means - it is up to you to prove that the problem is not related to VMWare environment.I have never seen any scenario where Oracle demands you to prove that the problem is not related to VMware.
    If its their suggested solution does not work, and they think i should, they want you to migrate it to a physical machine and test there, however this has never happend, at least not for us. We have around 100 databases in VMware, and the common talk (even from Oracle people that visits us) is that the document is only there IF THERE BY SOME CHANCE IN THE WORLD WOULD COME TO A PROBLEM FOR A COMPANY, WHERE VMWARE IS THE PROBLEM, AND ORACLE CANT HELP, they have to have a get-out clause in terms of support against VMware.

  • Does Oracle support OOPS concept?if it is YES , in what ways...Please ..

    My question is . The Oracle Database 9i does it support ALL OOPS concepts.? How it can be implemented in pl/sql
    or sql plus..

    Information on OOPS support can be found in the Oracle9i Application Developer's Guide - Object-Relational Features
    http://download-west.oracle.com/docs/cd/B10501_01/appdev.920/a96594/toc.htm

  • Does Oracle Support Searches with Sentence and Paragraph Proximity?

    I have successfully used SENTENCE and PARAGRAPH special groups and the WITHIN operator to search for terms contained within the same sentence and/or paragraph. However, I also need to search for terms that are located within a variable number of sentences or paragraphs of each other. For example, I could search for the term 'dog' and the 'cat' located within 3 sentences of each other. Is this possible in Oracle Text? I have searched the documentation and I can only find the 'near' operator for searching based on word proximity. I cannot find any mention of sentence or paragraph proximity. This is a very important requirement for the system.

    Good question. We are trying to duplicate the functionality of an existing system. It was written into the requirements for the new system. I've asked how important this functionality is to the actual users, but we don't have the answer to that question yet. Knowing that Oracle Text does not support this out of the box, we will certainly need to evaluate the importance of this feature and determine whether it warrants some custom development or switching to another search technology.
    I've thought about using regular expressions to implement this feature, but I'm guessing that the performance wouldn't be that great and it wouldn't integrate well with other Oracle Text searches. Has anyone else used regular expressions combined with Oracle Text to implement more sophisticated searching capabilities?

  • How far does Oracle Support extend?

    Hi,
    I have a problem determining how far I am covered by oracle support in a particular circumstance. I intend to use the DMBS_LDAP package to connect to a CAS authentication server.
    1. Am I covered by Oracle Support in this scenario?
    2. If I am covered, to what extent?/what cover will be provided?
    Thanks,
    JIM

    JIM wrote:
    Justin and Billy, from what you have implied. Oracle will support their services to the nth degree, providing there is proof of bug.
    Obviously the do not support third party tools. However, Oracle will not refuse support on the issue if I am connecting to a non-oracle product, such as in the scenario I described.Almost. You also need to show that the bug in the Oracle s/w is not caused by a "3rd party" s/w or unsupported/non-certified configuration combinations.
    For example, last time I looked Oracle 11.2.x RAC was not certified for VMware. It is certified for OL5.x. So what happens regarding support when you run into a RAC error on OL5.x in a VMware VM? Had this discussion with an Oracle VP last year and he said along the lines of that support will be willing to assist, to the extent of certified o/s support, running on VMware - but should they suspect that virtualisation is the cause (or part of the problem), then one cannot expect support.
    So in your case - if you do a DBMS_LDAP search and that crash and burn, Oracle will support that if it is a bug. However if you tried a funky method outside the LDAP specs against a proprietary half-baked implementation of LDAP, then you are on your own.
    Anyway, that is my understanding of the issue...
    FWIW, been using DBMS_LDAP for some years now against Microsoft Active Directory (authentication and SSO integration, and dealing with escalations and so on that needs organigram data) - no issues. DBMS_LDAP works fine against AD in our case.

  • Does Oracle support multiple pdk-forms on the same page??

    We have a portal page that contains two portlets (“summary” and “review comments”) and each in turn contains a pdk-form. When a form (say “review Comments” portlet) is submitted via post, in the resultant page, the second portlet (“summary”) gets the post parameters from the first portlet as hidden fields. Here is a snippet of the resultant HTML source that shows the second form’s automatically generated hidden fields:
    ==============================================================================
    <form name="summaryFormBean" method="post" action="http://host/portal/page">
    <INPUT TYPE="hidden" name="_pageid" value="584,1564971" />
    <INPUT TYPE="hidden" name="_dad" value="portal" />
    <INPUT TYPE="hidden" name="_schema" value="PORTAL" />
    <INPUT TYPE="hidden" name="facilityId" value="1232187" />
    <!—The parameters from the review comments portlet -->
    <INPUT TYPE="hidden" name="_piref584_1564976_584_1564971_1564971.1415711_REVIEWCOMMENTS_49519881org.apache.struts.taglib.html.TOKEN" value="2c6b4e323df1281c93602ecc9d855819" />
    <INPUT TYPE="hidden" name="_piref584_1564976_584_1564971_1564971.strutsAction" value="reviewComments.do" />
    <INPUT TYPE="hidden" name="_piref584_1564976_584_1564971_1564971.reviewFacilityComments" value="this is a test" />
    <INPUT TYPE="hidden" name="_piref584_1564974_584_1564971_1564971.strutsAction" value="summary.do" />
    Due to the presence of the “strutsAction” hidden parameter of the previously submitted “review comments”, when the form in the second portlet (“summary”) is submitted, the “review facility comments” are resubmitted erroneously.
    Is this a known issue with oracle portlets? Any thoughts/comments will be appreciated.

    Hi Omar,
    At least for me it does not help much since it looks like they are not talking about relating a parent table with one or more child tables. For me as a beginner with this product, I also wanted to know how to do that. It would be nice if the wizard allowed more then one child table to be related to the parent. When I have time I will look further into how the wizard created the relations and other bits. Also that thread was talking about forms. I noticed that the wizard created two report regions. Since I am an Oracle Forms developer, HTML DB terminology is quite different so I need to kind of re-learn what they are talking about.
    Did you try to make a Master/Detail form with the wizard yet? If you choose to go that route, please let me know how you make out.
    Thanks.
    Emad

  • Does Oracle E-Biz 11i support intercompany Invoice with a negative line?

    We are using Oracle E-Biz GL/AP/AR/FA (Oracle E-Biz 11.5.2.10). Now we are facing this issue: When we create an intercompany Invoice with a negative line it does not generate proper inter-company entries.
    For eg:
    Invoice Amount 1000 for company1
    Distribution:
    Company2.account.company1 : 300
    Company3.account.company1 : 300
    Company4.account.company1 : 500
    Company5.account.company1 : -100
    when transfer to GL process is done following entries are generated.
    Company1.Liab account.company1 Credit 1000
    Company2.Exp account.company1 Debit 300
    Company3.Exp account.company1 Debit 300
    Company4.Exp account.company1 Debit 500
    Company5.Exp account.company1 Credit 100
    on posting following Intercompany transactions are generated.
    Company2.Interco Payable account.000 Cr 300
    Company3.Interco Payable account.000 Cr 300
    Company4.Interco Payable account.000 Cr 500
    Company5.Interco Recievable account.000 Dr 100
    Company1.Interco Recievable account.000 Dr 1000
    where as the correct entry should be :
    Company2.Interco Payable account.company1 Cr 300
    Company3.Interco Payable account.company1 Cr 300
    Company4.Interco Payable account.company1 Cr 500
    Company1.Interco Payable account.company5 Cr 100
    Company5.Interco Recievable account.company1 Dr 100
    Company1.Interco Recievable account.company2 Dr 300
    Company1.Interco Recievable account.company3 Dr 300
    Company1.Interco Recievable account.company4 Dr 500
    Have you faced this kind of issue? Does Oracle support intercompany Invoice with a negative line (credit)? If 11i doesn't support this feature, does Oracle E-Biz 12 support this feature?
    Your insights will be very helpful.

    Hi,
    Now we are trying to convert the 11g-Database UTF-8 characterset to AL32UTF8 characterset.Why do you need to change the database characterset?
    As per metalink Notes, there is no very clear steps on how to deal with Apps Environment after DB characterset change using CSALTER.Did you go through these documents?
    Note: 788156.1 - AL32UTF8 / UTF8 (Unicode) Database Character Set Implications
    Note: 260192.1 - Changing the NLS_CHARACTERSET to AL32UTF8 / UTF8 (Unicode)
    Note: 124721.1 - Migrating an Applications Installation to a New Character Set
    Note: 225912.1 - Changing the Database Character Set ( NLS_CHARACTERSET )
    1) After DB characterset change, do we have to run Autoconfig, after editing the DB XML file to reflect new characterset value.Yes.
    2) Does the same apply to Application CONTEXT file also for APPL_TOP, etcAre you also changing the application tier characterset? However, I would say you will have to run AutoConfig in both cases.
    3) when shud we run adadmin- filesystem cahracterset conversion. Before or after autoconfig.Run the "Convert character set" via adadmin, then run AutoConfig -- See "Oracle® Applications Maintenance Utilities" manual for details.
    Also i am facing issues in connecting to sqlplus from applmgr user after the DB characterset change.
    It just core-dumps.Did you implement all the steps mentioned in the documents? What is the complete error message? What does "echo $NLS_LANG" return as oracle and applmgr users?
    Regards,
    Hussein

  • Does Oracle (12c) manage the interval data (6NF) ?

    Hi!
    I would like to know if Oracle (12c) supports the data type interval.
    In other words, does it manage the Normal Form Six (6NF) with temporal data?
    Thank you in advance for your answer.
    N.B.:
    And if yes, please precise since which version does Oracle support the intervals. Thank you.

    Sb92075, You're a genius !
    But you did not read exactly my question here: the additional question is Since which version are the intervals supported?
    (A copy paste from an unfindable documentation would be appreciated.)
    That was my proper question on DbForums, before having connexion problem for a special Oracle Support - but not Premium - and precisions asking of Oracle...
    during all this time, these answers were made.
    That was a question which I had for monthes ago, so this is why I already asked in several forums.
    Let me post here my response to them for the case where you can answer:
    -Something that I don't really understand, reading the docs:
    INTERVAL YEAR [(year_precision)] TO MONTH, what does it mean, exactly ? I guess that "to month" means the granularity of time. But for me, if I say "to", is as in "from... to", so it doesn't make any sense in this interval example.
    In his book, Temporal data and the relational model, Date recommend to write as:
    [begin:end], so if I translate:
    [2013-11-18 21H10M00s : 2013-11-18 21H15M00s] (the exact writing is from me).
    According that.. the granularity of time is implicit in the dates precision!
    Did I make a mistake ?"
    Thank you

  • Does WLS6.1 which uses Oracle can't support TRANSACTION_READ_UNCOMMITED?

    Hello.
              Oracle doesn't support TRANSACTION_READ_UNCOMMITED.
              Does it mean that WLS6.1 which uses Oracle can't support
              TRANSACTION_READ_UNCOMMITED ?
              Thanks
              Hyun Min.
              

    WLS can support ReadUnCommitted just fine.
              Oracle's database does not support that isolation level. You probably
              want ReadCommitted. That'll run fine in Oracle.
              -- Rob
              Hyun Min wrote:
              > Hello.
              >
              > Oracle doesn't support TRANSACTION_READ_UNCOMMITED.
              > Does it mean that WLS6.1 which uses Oracle can't support
              > TRANSACTION_READ_UNCOMMITED ?
              >
              > Thanks
              > Hyun Min.
              

  • Does Oracle EBS support Zip + 4 level data

    Using E-Business US Sales and Use Tax Import Program we can import US sales tax rate for different Jurisdiction. My question here is can we import tax rate with Zip + 4 level information? Does it support Zip + 4 ?
    Any suggestion or direction would be really appreciated. Thanks

    921424 wrote:
    Thank you for your reply.
    EBS : 12.1.3
    Database : Oracle Database 11g Enterprise Edition Release 11.1.0.7.0
    OS : Linux 2.6.18-194.el5
    We haven't used Vertex so far. Is it free with oracle EBS? Does EBS 12.1.3 support zip + 4 and can we load zip + 4 using vertex q series to EBS?Please see (Is There an Annual Fee For Use Of Vertex License With Oracle Applications? [ID 220596.1]).
    Thanks,
    Hussein

Maybe you are looking for