10g (beta):  XA driver

Hi,
I have to test the XA capability of JDBC 10g (OCI and thin) with a WebLogic server.
Please, I need the full qualified classname of the thin and oci XA driver.
Sorry, I have no 10g documents available.
Thanx in advance,
ciao Markus

Markus,
The javadoc for the Oracle JDBC driver can be downloaded from the same Web page as the JDBC driver itself. The JDBC drivers download page is linked from:
http://www.oracle.com/technology/software/tech/java/sqlj_jdbc/index.html
Also try the JDBC Developer's Guide and Reference which is available from:
http://tahiti.oracle.com
Good Luck,
Avi.

Similar Messages

  • Better Display Driver under Windows 8 than Windows 7 for MacBook Pro Retina?

    Anyone happen to know if the display support for a MacBook Pro Retina is better under Windows 8 than it is under Windows 7?
    Ideally, I would like to be able to run 2880x1800 at True Color as well as have the HDMI out fuction as a second display (maching the behaviour while booted under Max OS X 10.8).
    Under Windows 7, the highest resolution that supports True Color is 1600x1200.  This would be okay if that setting did not distort the picture (everything is slightly squeezed).  At 2880x1800, the highest color depth is High Color (16-bit) which is, well, not something one can actually use if doing graphics work.  On my 27" iMac, 2680x1600 supports True Color as expected.
    Also under Windows 7, the display connected via HDMI is not recognized.
    I've contected both Apple care support and Microsoft support about this, but Apple referred me to Microsoft and Microsoft referrred me back to Apple.
    Thanks,
    Warren
    P.S. Personally, I think it's rediculous to even attempt to do graphics work under Windows, but tell that to the Windwows based corporate world that I freelance in.

    Yes, there is a better display driver for the MacBook Pro Retina while running Windows 7 Pro.
    And, the answer is so obvious, that I feel a little silly having started this thread in the first place!
    The Windows 7 Professional NVIDIA drivers for the NVIDIA GeForce GT 650M card need to be installed manually by downloading them from NVIDIA directly.
    If you need to do this on your MBPr Boot Camp volume, use this link:
    http://www.nvidia.com/Download/index.aspx?lang=en-us
    Then, set the pop-up menus based on your MBPr. [Mine were as follows: GeForce; GeForce 600M Series (Notbooks); GeForce GT 650M; Windows 7 64-bit: English (US)]
    What tipped me off to this is that the CUDA drivers need to be downloaded manually on the Mac OS X side to take full advantage of raytracing in Adobe After Effects CS6 and CC.  As soon as I started to run that installer it dawned on me, "Hey, you probably need to install the drivers on the Boot Camp side as well."  And sure enough after doing so, I am able select all of the expected resolutions as well as run 2880 x 1800 at Millions of Colors (32-bit).
    I guess I'm showing my nearly three decades worth of being a Mac user where I'm accustomed to having about everything needed included with the OS.
    -Warren

  • Installing a better Hard Drive in my MacBook Pro

    Hey guys,
    I'm looking to install a better hard drive into my MacBook Pro (15.4" Intel Core 2 Duo 2.2 Ghz) that I bought last September, and I'm strictly a software guy: I know little to nothing about hardware.
    I'm hoping to upgrade from a 120 GB to a 320 and hopefully from 5400 rpm to 7200 rpm. Is there any other specifications I need to follow, other than it needs to be a notebook hard drive and it needs to be SATA?
    I have these picked out from a previous post:
    http://www.ifixit.com/Apple-Parts/320-GB-7200-RPM-Hitachi-SATA-Hard-Drive-New/IF 107-063
    http://www.newegg.com/Product/Product.aspx?Item=N82E16822145228
    Is there any difference besides the price? Will both work in my computer?
    Also, I have the AppleCare protection plan. Is there someone who can install a hard drive for me that won't void the protection plan?
    I tried calling an apple store, and they want me to come in to the apple store and talk to a genius, which is too difficult for me at the moment.
    Thanks,
    - Keith

    Yeah I'm more of a speed freak, I admit it. 7200 RPM sounds good even sacrificing the size, because I already have an external and intend to get a huge desktop in the next few years. Also, my laptop is much more powerful than any of my computers could ever be upgraded to be.
    Also, I talked to my brother who says compared to my 5400 rpm hard drive, a 7200 rpm hard drive will run *significantly hotter* and get *significantly less battery life* (~30 minutes depending). Has anyone here upgraded a 5400 rpm notebook hard drive to a 7200 rpm hard drive before? Can you say anything about these claims?
    I'm pretty sure I'm getting one of these two:
    http://eshop.macsales.com/item/Hitachi/0A57547/
    http://eshop.macsales.com/item/Western%20Digital/WD3200BEKT/
    Any advice of comparison, brand loyalty, or how these specific hard drives will compare when it comes to heating up or battery life would be appreciated (for example, the Hitachi one claims to use less energy and user reviews claim to get better battery life).
    Thanks,
    - Keith
    Message was edited by: Keith A.

  • SetString/executeBatch fails in Oracle 10g OCI JDBC driver

    Hi,
    I am using Oracle 10g OCI jdbc driver for batch updates.
    Following is the the code that I am using
    import java.sql.*;
    import oracle.jdbc.*;
    import oracle.jdbc.pool.OracleDataSource;
    public class BatchUpdates
    public static void main(String[] args)
    Connection conn = null;
    Statement stmt = null;
    PreparedStatement pstmt = null;
    ResultSet rset = null;
    int i = 0;
    try
    String url = "jdbc:oracle:oci:@kctutf8";
    try {
    String url1 = System.getProperty("JDBC_URL");
    if (url1 != null)
    url = url1;
    } catch (Exception e) {
    OracleDataSource ods = new OracleDataSource();
    ods.setUser("kctuser");
    ods.setPassword("kana");
    ods.setURL(url);
    conn = ods.getConnection ();
    stmt = conn.createStatement();
    try { stmt.execute(
    "create table mytest_table (col1 number, col2 varchar2(20))");
    } catch (Exception e1) {}
    pstmt = conn.prepareStatement("insert into mytest_table values (?, ?)");
    pstmt.setInt(1, 1);
    pstmt.setString(2, "row 1");
    pstmt.addBatch();
    pstmt.setInt(1, 2);
    pstmt.setString(2, "row 2");
    pstmt.addBatch();
    pstmt.setInt(1, 3);
    pstmt.setString(2, "row 3");
    pstmt.addBatch();
    pstmt.setInt(1, 4);
    pstmt.setString(2, "row 4");
    pstmt.addBatch();
    pstmt.setInt(1, 5);
    pstmt.setString(2, "row 5");
    pstmt.addBatch();
    pstmt.executeBatch();
    rset = stmt.executeQuery("select * from mytest_table");
    while (rset.next())
    System.out.println(rset.getInt(1) + ", " + rset.getString(2));
    catch (Exception e)
    e.printStackTrace();
    finally
    if (stmt != null)
    try { stmt.execute("drop table mytest_table"); } catch (Exception e) {}
    try { stmt.close(); } catch (Exception e) {}
    if (pstmt != null)
    try { pstmt.close(); } catch (Exception e) {}
    if (conn != null)
    try { conn.close(); } catch (Exception e) {}
    When I run this class I get the following output
    1, row 1
    2, row 3
    3, row 5
    4, null
    5,
    But It should have been
    1, row 1
    2, row 2
    3, row 3
    4, row 4
    5, row 5
    The same class runs fine if I use Thin driver.
    Can anyone please help me solve this issue.
    Note: This happens only in case we use setString with Varchar2 in the DB. This works fine if I have two number columns
    Thanks,
    Raja.S

    Please post this question to the Java forum. It is located under "Technologies".

  • How to use the Oracle 10g JDBC OCI driver in JBoss ?

    Greetings,
    I deployed ojdbc14.jar in JBoss and I created an Oracle datasource. I have the following questions:
    1. In the datasource descriptor file I have:
    <connection-url>jdbc:oracle:oci:@(description=(address=(host=localhost)(protocol=tcp)(port=1521))(connect_data=(SERVICE_NAME=xe)))</connection-url>
    <driver-class>oracle.jdbc.driver.OracleDriver</driver-class>
    Is it enough in order to use the Oracle 10g JDBC OCI driver ?
    2. After having looked-up the datasource and created a connection, the classe of these objects are org.jboss.resource.adapter.jdbc.WrapperDataSource and, respectivelly, org.jboss.resource.adapter.jdbc.WrappedConnection. How can I have access to oracle.jdbc.oci and oracle.jdbc.pool packages ?
    Many thanks in advance,
    Nicolas

    Hello
    We were banging our heads on a similar thing, maybe this will help
    We needed to convert the wrapped connection to an OracleConnection so that we could do a proxy switch, but maybe you could apply it to your situation anyway
    1-you have to convert the Connection object to an OracleConnection in order to use the method that does the proxy switch
    The method to do this is getInnermostDelegate()
    Once you call this method, you get a new Connection object that can be cast to an OracleConnection object
    See below for the snippet of code
    // now switch the user and reselect
    if (conn instanceof DelegatingConnection) {
    properties.put("PROXY_USER_NAME","peter/peter");
    oraConn =((DelegatingConnection)conn).getInnermostDelegate();
    if (oraConn == null)
    out.println("oraConn is null\n");
    ((OracleConnection)oraConn).openProxySession(OracleConnection.PROXYTYPE_USER_NAME,properties);
    2-you have to put a setting in the xml file in conf/Catalina/localhost that allows you to call the getInnermostDelegate() method
    By default, Tomcat does not allow you to call this method, it will always return null
    You have to change the xml to allow it to return an object
    It seems that WebSphere and Tomcat both frown on vendor-specific methods that do not comply with the JDBC standards, but do allow it
    Here is the setting:
    <parameter>
    <!-- NOTE: This is necessary to enable access to the Oracle connection object -->
    <name>accessToUnderlyingConnectionAllowed</name>
    <value>true</value>
    </parameter>
    Note, this setting was also put in the conf/server.xml file
    Thanks
    Peter

  • Oracle WareHouse Builder 10g Beta IV Release Documentation

    Hi All,
    Is there anyone who will clarify whether I am thinking in the wrong way? Actually, I wanted to install a repository through Repository Assistant. There are three PCs on which this OWB version is installed. From my end (say PC_1 ) I was trying to do a Basic Installation, I tried it by giving the IP address of another machine (PC_2 say) and the other things the wizard asked. The installation was successful ! But the documentation says :
    "The basic installation is designed for local installations only. If you select Basic Installation and enter connection information for a remote machine, the Repository Assistant instructs you to return to the Install Type and select Advanced Setup. "
    But my installation was successful and I can connect to the repository again and again as a single user from any one of the three PCs I have, then how comes it was not a repository installation on remote machine? I am confused, Pls help...
    Regards,
    Pragati Sarkar.

    Hi Ott,
    Thank u. U can get the documentation in:
    Go to OWB 10g Beta IV Design Center. Then click Help.
    Open the documentation for "Connecting to the Oracle Database". The last paragraph of the documentation says what I have quoted in my last query.
    Regards,
    Pragati.

  • Oracle WareHouse Builder 10g Beta IV Version Release (10.1.2) Documentation

    Hi All,
    Is there anyone who will clarify whether I am thinking in the wrong way? Actually, I wanted to install a repository through Repository Assistant. There are three PCs on which this OWB version is installed. From my end (say PC_1 ) I was trying to do a Basic Installation, I tried it by giving the IP address of another machine (PC_2 say) and the other things the wizard asked. The installation was successful ! But the documentation says :
    "The basic installation is designed for local installations only. If you select Basic Installation and enter connection information for a remote machine, the Repository Assistant instructs you to return to the Install Type and select Advanced Setup. "
    But my installation was successful and I can connect to the repository again and again as a single user from any one of the three PCs I have, then how comes it was not a repository installation on remote machine? I am confused, Pls help...
    Regards,
    Pragati Sarkar.

    Hi Ott,
    Thank u. U can get the documentation in:
    Go to OWB 10g Beta IV Design Center. Then click Help.
    Open the documentation for "Connecting to the Oracle Database". The last paragraph of the documentation says what I have quoted in my last query.
    Regards,
    Pragati.

  • Is there a better external drive than the one Apple offers?

    Hello all,
    I've got the 15" Macbook Pro with Retina display, and of course I don't have a disc drive, was just wondering if there was a better quality drive than the one Apple offers? I will be using this drive to burn audio onto CDs if that helps (I DJ)
    ***Sidenote: I have no problem with paying for or using the Apple one, I just didn't want to get it to then find out that another brands' drive does the same or a better job for less money
    Thank you all in advance,
    Ryan Huff

    I actually have been reading some stuff online and came here after mixed reviews, I guess it's a very subjective topic,
    Like I said I've got no problems with the apple one, thank you for your help!

  • Oddly answer when asking about Win.Vista 64bit beta 2 driv

    Heard about someone that said that the drivers will come to the beta2, but i don't know if that is true, beacuse i mailed them a few times and at last i got this answer:
    "Hej, Tack f?r ditt email!
    Det utrycket "beta 2 har ingen support" betyder att det inte kommer att komma drivrutiner till den. F?rst n?r Vista publiceras officiellt kommerdet att komma drivrutiner till den."---------------------------------------------------------------------------------------------
    That is swedish and means, " Hello, thanks for your mail! That kind of OS (Beta 2) dosen't have any support and that means that there will be no drivers for it. The drivers will be official realesed when Vista the full version of Vista is released."
    I think they mean that the drivers won't get out to the beta 2, but i donno if the drivers will be realesed as someone said. I may be wrong, but don't get mad at me, beacuse i only telling you others what i've been told!... :smileyvery-happy:

    SupaBeast,
    Tech Support does not get information regarding pending driver releases nor do they work with Beta releases and drivers. This advisor should have referred you to the Vista Knowledgebase article regarding release dates which should be updated soon for Beta 2.
    I cannot comment on Beta 2 driver release dates, but it is my understanding that beta drivers are indeed in development.
    Daniel

  • New Marvell (beta) Controller Driver is Released - but not for MSI?

    I've been following the Marvell controller situation pretty closely the past week or so because of the BSOD it's been causing on my board.
    ASUS has just posted a new Marvell driver for the 91XX, which is on the XPower (88SE9128) and I assume many other X-58 boards.
    My question is, does Marvell release one driver that's compatible with all the X-58 boards? Or do they make one for each manufacturer?
    I'm very anxious to try it, see if it helps with the BSOD. Should I wait until MSI posts it on their download page, or am I waiting in vain because maybe they never post Beta releases?
    Thank you guys!

    Thanks Clay - I never did install the MSU software. I was using the most current driver on MSI's site - the 1.0.0.1047 WHQL.
    I've asked around about station-drivers and some say they're fine, others say basically what you did, "be careful."
    They've had the 1.2.00.1002 on their site for awhile, and now I see ASUS has it on their site for their X-58 boards. It's listed as a "Beta."
    Not sure if I'll even bother with it. I rolled back to the msahci and I'm getting the performance I was was getting originally. I think it was only the last official driver - the 1047 - that caused all (or most) of the problems for me.

  • T520 Beta Sound Driver doesn't support multi stream output with docking station

    I always used (and loved) the ability to use the laptop speakers and the headphone jack as independend outputs. For Windows 8 it doesn't work. Neither Win8 beta driver nor the latest Win7 driver brings this feature to Win8.
    The option for Multistream is still selectable in SmartAudio. Selecting this option makes Win8 installing some things but doesn't actually make MultiStream work 
    Hope this is just because of the drivers beta stage...
    Solved!
    Go to Solution.

    The new audio driver for windows8 brings back the multi stream output. It also fixes the crash on selecting VoIP-Settings in SmartAudio application Driver is here.

  • Better ssd driver for windows 7

    I've been using boot camp to run windows 7 on my macbook air flawlessly for about 6 months now (13.3 inch, 128gig SSD, core 2 procs).
    However, the SSD driver is really starting to wear on me. I've used windows 7 with an SSD before and it's resume times are near instant. The boot camp driver is not good. Does Apple have any plans to change this? I honestly can appreciate you don't want Windows performing too well on these machines and would rather people use OSX, I completely get that and to a point I agree with it, but there is also the very valid point that I spent close to $1400 on a machine that has windows 7 support and it should be able to perform properly with an SSD. Some of us are tied to using windows, I like OSX, but I can't change the windows 7 dependancy I have for work.

    Try Windows 8, it feels better.
    I have seen and read where Apple has been "doing things their way" and not using AHCI for well ever since Mac Pro came out iwth Intel 5 yrs ago.
    Apple does not provide thermal fan control, a big no-no.
    Which is why I have been telling people 95% is not good enough, and why I spent a fortune building a couple PC workstations. Cost as much or more than getting another Mac Pro, for each, but then I got to choose the parts and knew what I would have and getting into.
    So yes, totally understand switching back to PC.
    Macintosh Performance Guide: Thoughts on the future of the MacBook Pro and MacBook Air
    My MacBook Pro 17" Has Gone Back to Apple for A Full Refund
    http://macperformanceguide.com/blog/2011/20110814_1_MacBookPro--ssd.html
    OS X has lacked TRIM and suffer degredation and other issues under OS X which is what a majority of people look and ask for, and which was only lately supported with OEM Apple SSD and not retail 3rd party.
    But there are and will be limitations to the whole "Windows on Mac" experience.
    OWC is working to provide a good SSD experience and they have a new SSD for Air.
    http://eshop.macsales.com/shop/SSD/OWC/Aura_Pro_1.8
    2011 MacBook Pro SATA Problems Resolved! | Other World Computing Blog
    I just don't think Apple stacks the deck or cares or tries, I just think there are a lot of areas where they are just Mac focused and not always in the best manner there either. 
    With Apple EFI/SMC you are not going to see firmware updates, I still get some for older PC but Apple did post this:
    Macintosh Performance Guide: Apple EFI Firmware Update Fixes Some SATA 6G Problems?
    Intel working on OpenCL-capable Ivy Bridge chips bound for Apple's MacBook Air

  • Where is LINUX 10g ASM Library Driver

    Doc says its on the 10g companion CD-ROM. Nothing I've downloaded so far has it. Thanks in advance for any help!

    Oracle ASMLib
    ASMLib is a support library for the Automatic Storage Management feature of Oracle Database 10g. Automatic Storage Management (ASM) simplifies database administration. It eliminates the need for the DBA to directly manage potentially thousands of Oracle database files, requiring only the management of groups of disks allocated to the Oracle Database. ASMLib allows an Oracle Database using ASM more efficient and capable access to the disk groups it is using.
    Technical Information
    Check back later
    Downloads
    Oracle ASMLib 1.0.0
    Red Hat Advanced Server 2.1 (x86) [09-Feb-2004]
    United Linux 1.0 SP3 / SLES 8 SP3 (x86) [09-Feb-2004]
    United Linux 1.0 SP3 / SLES 8 SP3 (ia64) [09-Feb-2004]
    United Linux 1.0 SP3 / SLES 8 SP3 (amd64) [09-Feb-2004]
    Source Code
    Oracle ASMLib 1.0.0 Kernel Driver Source (GPL)
    See the oracleasm project on oss.oracle.com
    http://otn.oracle.com/tech/linux/asmlib/index.html
    Joel Pérez

  • SBLive! beta 64bit driver on XP

    I hope this gets back to CL. The 64bit beta driver for Li've!5. series of SoundBlasters has a hardware bug on dual AMD cpu,64bit systems running winXP x64. If you connect the cd-spdif connector to a dvd-rw dl dri've and try to listen to cd's via cd-spdif,you get an entire system lock up everytime,it's replicatable AND if you verify a cd/dvd-r burn on this dri've,it will cause a system lock-up.Not a ctrl-alt-delete restart,but a power down,reset button lock up. It's DEFINATELY the driver causing this,not the hardware. I own newer Audigy's and X-Fi's,but the Li've! series with the eMu-0k chipset/Li've!Dri've interface?will RULE 4ever. The sound is is FAR superior to the new stuff and is excellent in a studio environment. I was amazed at the sound on sound functions of the li've! series with cakewalk and audition. I monitor w/JBL 442s,Control's,SCS mosfet reference amps and Bang&Olufsen stereos for consumer audio.
    p.s.please fix the Li've!dri've interface on the 64bit driver for winXP x64

    Hi,
    Thanks for the feedback. I'll try to send this over to our developer to verify on this bug.
    Cheers.

  • Beta nVidia Driver 257.15 officially supports MPE in CS5

    http://www.nvidia.com/object/win7-winvista-64bit-257.15-beta.html
    This is the link to the Win 7 64 bit driver. Versions for other OSes can also be found on the nVidia driver website. From the "highlights":
    "Supports  the new GPU-accelerated features in     Adobe   CS5."
    As with all beta drivers, it is not recommended that you install this driver on a production machine. There is one additional change in this driver in that nVidia has converted the XML file nVApps.xml, that controls video settings for individual pieces of software, to a binary file, which cannot easily be modified by the user. A series 257 driver for the Quadro series has not yet been posted, as nVidia generally provides only WHQL versions.

    That's my thinking on it also. But it's worth experimenting with it to see how widespread the problems are. With the 257 driver there's also no way of directly editing nVApps.xml until nHancer is updated.There's several other tools that will do this and work with the 257 driver, but in my opinion, it's presently not worth the effort. It might be worthwhile submitting any CS5 bugs that are discovered here:
    Report a bug in an nVidia video driver

Maybe you are looking for

  • Adobe Flash 9 install site not working

    I've been having a problem with the install button on the download page to download Adobe Flash 9. Every time I press the "Install Now" button all it does is refresh the page and nothing happens. I've tried downloading from a zipped file, I've alread

  • Error in connection SAP_ECC_HumanResources

    Hello All, I logged in to our portal using the test user for ESS which I defined from the installation. From the home page, I noticed that there is a warning message posted. The log details are as follows: SAP_ECC_HumanResources     WebFlowConnector 

  • Serial Numbers in WM Storage Units

    Hi all: My client needs to manage serial numbers in WM. I am planning to propose to use the storage unit as storage for serial numbers. This WM will not have HUM, no batch management. Plant will use valution type. Can anyone tell me what are the pros

  • Possible fix for problems with Location Services!!!!

    Alright, I had just bought a brand new iPod Touch 5th Generation and was having trouble with any app that used Location services (Siri, Weather, Maps, etc) and it was driving me absolutely crazy. Now, I live in a very VERY rural area in Pennsylvania

  • USB/firewire board  killed Firewire

    I had an Adaptec usb2.0/firewire board which worked fine for several years, I had to give up sleep mode but not a big deal. I started having problems with usb camera file transfers. They would start and then hang. I bought an IOgear board pci board a