Which driver is my server using with these settings ??

Another question guys....have been having a bad week...so sorry for this sudden barge
of questions...
I have weblogic.jar before classes12.zip in my managedServer classpath.
In my connection pool params , I have
URL: jdbc:oracle:thin:@nynwspdb1:1521:OP02
DRIVER CLASSNAME: oracle.jdbc.driver.OracleDriver
So with these settings which driver is my weblogic server using ?
The Oracle thin driver classes12.zip or Oracle drivers which comes along with weblogic
Any help is appreciated..
Thanx,
Krish

Hi Krish
Your server is using the Oracle thin driver that ships with WebLogic. Switch
the order if you want to use a newer version of that driver (assuming
classes12.zip file is the latest download from oracle website).
sree
"KRISHNAN VENKATARAMAN" <[email protected]> wrote in message
news:3cd96c6c$[email protected]..
>
>
Another question guys....have been having a bad week...so sorry for thissudden barge
of questions...
I have weblogic.jar before classes12.zip in my managedServer classpath.
In my connection pool params , I have
URL: jdbc:oracle:thin:@nynwspdb1:1521:OP02
DRIVER CLASSNAME: oracle.jdbc.driver.OracleDriver
So with these settings which driver is my weblogic server using ?
The Oracle thin driver classes12.zip or Oracle drivers which comes alongwith weblogic
Any help is appreciated..
Thanx,
Krish

Similar Messages

  • This driver is locked for use with embedded applications - SQL Server

    Hello guys,
    Background:
    I developed an application using JSC2 with MS SQL Server 2000 as the database and Sun Application Server PE 8 as App Server. During development, I am able to deploy and test it. But as soon as I've installed Sun Application Server PE 8 on our Production Server, exported my app there and tried to execute it, I get the error
    "This driver is locked for use with embedded applications".
    I just wanna ask, though I've seen other threads saying that the only solution is to buy the EE or SE of Sun App Server, isn't there really any work-around with this?
    Thanks very much for your help.

    OK, that is the same setup we have (Creator built application running with MS SQL Server).
    I wrote a tutorial talking about integrating Creator with Spring. In it you will find out how to use SQL Server with a Creator built app running on the Platform Edition. That tutorial can be found here: http://swforum.sun.com/jive/thread.jspa?threadID=52657&tstart=15
    In short, look to jTds.
    Hope this helps.

  • Disable "Your computer may use more energy with these settings"

    I frequently use my laptop for presentations or video chats, and I frequently have to turn off my screen saver and disable all my Energy management settings to prevent that stuff from showing up during a presentation.
    However, every time I drag the Energy Saver timers around, I get the annoying message:
    "Your computer may use more energy with these settings"
    The box forces me to hit Okay to acknowledge this painfully obvious message. How do I disable this prompt from popping up every single time I adjust my Energy settings? Plist setting somewhere perhaps?

    Thanks Livia and Huevoos (eggs??) for your interest in this post.
    In a nutshell, I haven't been able to solve this. I gave up on Apple support after they proved useless.
    As Huevoos suggested, and I confirmed it time and again after browsing thru endless forums, it seems that the user validation routine for the Mac App Store is done by looking into your network settings, which in my case are either incomplete or erroneous due to the broken-down ethernet. (I am still waiting for somebody more experienced in this forum to contradict or explain this).
    So, because I still have wireless connection, I can use my machine for day-to-day chores, have not been able to purchase anything up to this date in the Mac App Store though. I'm waiting for either a software update that could correct this (Mountain Lion??? there's no guarantee only hope) or the moment when my machine will need to be replaced by a new one with a functional ethernet.
    I'm sorry I can't be of more help. But I'm pretty much in the same situation as you guys.
    Live long and prosper.
    Brt1618

  • I bought an external hard drive for backups to use with Time Machine, but however when I try to connect it with the other windows laptop it doesn't work ? intact it doesn't work on any other device except my MAC ?

    I bought an external hard drive for backups to use with Time Machine, but however when I try to connect it with the other windows laptop it doesn't work ? intact it doesn't work on any other device except my MAC ?

    Do not worry about it.
    Time Machine needs that your external drive is formatted in HFS+, or better known as "Mac OS Extended (Journaled)". This filesystem is used by Apple on Macs and Windows cannot read or write drives formatted with this filesystem, being this the reason why all your devices do not read the external drive except your Mac.
    You can only use your external drive to make Time Machine drives. If you store anything different, you may damage the Time Machine structure, so it is better not to use it as a drive to store other data. Instead, get another external drive to do it or create a second partition on the external drive formatted in FAT32 by using Disk Utility > http://pondini.org/OSX/DU3.html FAT32 can be read by Windows PCs

  • Which Luma/Chroma mode to use with Broadcast Safe filter

    How would I know which Luma/Chroma mode to use with the Broadcast Safe filter? I'm creating a DVD of a dance concert that might make it onto television but there are no specific plans at this time.

    As you read their tech specs, you'll see that broadcast standards cover a lot more than just luma levels.
    (There's also content! http://www.pbs.org/aboutpbs/aboutpbs_standards.html)
    You may want to read the technical standards carefully so that you don't have to
    redo a lot of work if you decide to submit.

  • [Oracle JDBC Driver]This driver is locked for use with embedded application

    Hi
    I installed Sun Java Studio Enterprise 8, and am trying to connect to my Oracle database using the attached tutorial code.
    The code compiles fine, but I get the following error whenever I run the file: [Oracle JDBC Driver]This driver is locked for use with embedded application
    I don't understand what is happening.
    Using the Runtime navigation panel on the upper left of the IDE screen, I can right-click and connect to the database, and navigate database files, using the Oracle JDBC Driver that came with JSE8.
    Name: Oracle Driver
    Driver: com.sun.sql.jdbc.oracle.OracleDriver
    Database URL: jdbc:sun:oracle://JAZZPUP:1521;SID=REPO
    If the driver is installed, and can be used to connect to a database by right-clicking on the database definition in the Runtime panel, why can't I connect to it just using java code in the IDE. I would expect both methods to work or to fail, not one of each using the same IDE.
    Many thanks and take care,
    Shayne
    import java.sql.*;
    public class CreateCoffees {
    public static void main(String args[]) {
    //String url = "jdbc:mySubprotocol:myDataSource";
    String url = "jdbc:sun:oracle://JAZZPUP:1521;SID=REPO";
    Connection con;
    String createString;
    createString = "create table COFFEES " +
    "(COF_NAME VARCHAR(32), " +
    "SUP_ID INTEGER, " +
    "PRICE FLOAT, " +
    "SALES INTEGER, " +
    "TOTAL INTEGER)";
    Statement stmt;
    try {
    //Class.forName("myDriver.ClassName");
    Class.forName("com.sun.sql.jdbc.oracle.OracleDriver");
    } catch(java.lang.ClassNotFoundException e) {
    System.err.print("ClassNotFoundException: ");
    System.err.println(e.getMessage());
    try {
    //con = DriverManager.getConnection(url, "myLogin", "myPassword");
    con = DriverManager.getConnection(url, "login", "password");
    stmt = con.createStatement();
    stmt.executeUpdate(createString);
    stmt.close();
    con.close();
    } catch(SQLException ex) {
    System.err.println("SQLException: " + ex.getMessage());
    } //end class CreateCoffees
    ---

    There are two similar threads:
    http://swforum.sun.com/jive/thread.jspa?threadID=61327&tstart=0
    http://swforum.sun.com/jive/thread.jspa?threadID=51057&messageID=188210
    To summarize - the DataDirectDriver that is shipped with the IDE seems to be locked to be used inside the IDE only because of some licensing issues etc..
    That's weird, I agree. I will raise a question on reasons for such a behavior.
    The solution would be to use Oracle's own driver, that is distributed at no charge from their web site - http://www.oracle.com/technology/software/tech/java/sqlj_jdbc/index.html
    HTH,
    Kirill

  • Which latest web logic server compatible with oracle 11g database

    which latest web logic server compatible with oracle 11g database >is weblogic server 12c is compatible with oracle 11gR2

    current environment= forms and reports 10g and database 10gR2,os windows 32-bit.
    wants to implement and configure as below:
    server1: web-logic server 12c with forms and reports upgrade from 10g to 11g where os 64-bit windows.
    server2: upgrade and migrate  from 10gR2 11gR2 from windows xp to windows 2008-R2.
    how to achieve this.what step should perform first.

  • Which wattage adapter should I use with the composite cable with my iPad?

    Which wattage adapter should I use with the composite cable when connected to my iPad while watching T. V. .

    Ultimately, use the power adapter that came with the iPad. But you should use any USB based power adapter that has a 10 watt/ 2 amp or higher power rating. Look close when buying a thrid party adapter, if it does not specify 10 watts/2 amps it is a lower 5 watt/1 amp charger that will not work.

  • Which text app can I use with the iOS4.21 ipod touch?

    Which text app can I use with the iOS4.21 ipod touch? 

    Just Google for BT keyboards. Make sure they say they work with iOS devices. You need a 3G or later iPod.
    Whynot just the standard samll APple one:
    http://store.apple.com/us/product/MC184LL/B?fnode=MTY1NDA1Mg

  • JDBC Error: This driver is locked for use with embedded applications

    Hi Experts,
    My sender adapter is throwing the below error:
    Error during database connection to the database URL 'jdbc:nwmss:sqlserver://<host>:<port>;databaseName=<dbname>' using the JDBC driver 'com.sap.nwmss.jdbc.sqlserver.SQLServerDriver': 'java.sql.SQLException: [NWMss][SQLServer JDBC Driver]This driver is locked for use with embedded applications.'
    What could be the problem? How can I resolve it?

    download the latest version of SQL driver from MS site and re deploy it on PI

  • Which memory cards can i use with my N95?

    Hi!
    I have just bought a new N95, and bought a memory sd card- transcend 2 GB, It works just fine to save music on it, but the camera doesn't work when the memorycard is in the slot..what is wrong? does it have to be a specific kind of memory card? How do I format it?

    There are some wireless external hard drives that can be used with the iPad.
    Best iPad External Hard Drive Storage Options
    http://www.unlocktips.com/2012/11/best-ipad-mini-external-hard-drive-memory-stor age-options/
    Another option:
    Expand your iPad's storage capacity with HyperDrive
    http://www.macworld.com/article/1153935/hyperdrive.html
    On the road with a camera, an iPad, and a Hyperdrive
    http://www.macworld.com/article/1160231/ipadhyperdrive.html
     Cheers, Tom

  • 2 Firewire drives got errors since used with iMac C2D

    HI
    i get this when i start Disk Utilities
    Verify and Repair disk “Projects”
    Invalid Volume Header
    Checking HFS Plus volume.
    Checking Extents Overflow file.
    Checking Catalog file.
    Start repairing it , says repaired but refuses to mount the drives!
    And on the second drive i get this:
    Verify and Repair disk “disk2s3”
    Checking HFS Plus volume.
    Invalid B-tree node size
    Volume check failed.
    Error: The underlying task reported failure on exit
    1 HFS volume checked
    1 volume could not be repaired because of an error
    Anyone know a solution?
    Both 750GB drives which never had these problems until used with this iMac a week ago.

    So i repaired my Disk called "PROJECT"
    Verify and Repair disk “Projects”
    Checking HFS Plus volume.
    Checking Extents Overflow file.
    Checking Catalog file.
    Checking Catalog hierarchy.
    Checking Extended Attributes file.
    Checking volume bitmap.
    Checking volume information.
    The volume Projects appears to be OK.
    1 HFS volume checked
    No repairs were necessary
    However, it refuses to mount!
    And when i run the Disk Utilities on the Volume, i get this still:
    Verify and Repair disk “Projects”
    Invalid Volume Header
    Checking HFS Plus volume.
    Checking Extents Overflow file.
    Checking Catalog file.
    Checking Catalog hierarchy.

  • JDBC driver for SQL Server 2000 with windows authentication

    Does anyone know of a JDBC driver for SQL Server 2000 that supports Windows Authentication, that is that a username and password does not need to be supplied when connecting to the database.

    You can use the JDBC-ODBC-Bridge.
    ODBC provides windows-authentication.
    Hope it helps.
    Freddy

  • Which midi keyboards can I use with my iPad?

    Which midi keyboards work with the iPad when used with camera adapter? Which keyboards do you recommend? Thanks.

    Jude.Tristessa-
    As a starting point, try doing a web search for iPad midi.  You will get a better idea what is available, and can then ask more specific questions here.
    I do not know if any can use the Camera Connection Kit, but there may be some that connect via Bluetooth.
    Fred

  • Which version of Windows to use with boot camp & Lion?

    Which version of Windows can I use with Boot Camp and Lion 10.7.1?
    Don't want to run Parallel or any other 3rd party program.
    Thanks.

    Windows 7

Maybe you are looking for

  • A Possible Fix for Your Frozen 5G iPod (WindowsXP)

    I fixed my iPod this way hopefully you can fix yours. The symptoms plaguing my iPod were the same as everyone elses: This thread contains all of the problems I was having: http://discussions.apple.com/thread.jspa?threadID=528158&tstart=60 Couldn't mo

  • What are the steps for buying Final Cut Pro X and downloading a full version.i have a license certificate,but i cant be able to license the trial version

    How do i download a full version of Final Cut Pro.I have the license agreement with the serial numbers.but now i am unable to license the trial.What needs to be done here.I was sent the license agreement by our Head Office

  • The form of directories in ACS SE

    I have backuped database in ACS SE 4.1 but it's erro "Backup failed due to FTP error. The Server returned 550 C:\Documents and Settings\ducnv\Desktop : No such file or directory" I think It is cause "directories of ACS SE is invalid" have you got any

  • DTD file?

    Hello, I got one DTD file from Client and i exported that file in external definition. when i check the message tab in external definition there is no message available. I tired to import the external definition, its giving error as Shipment has no m

  • Multi-track project syncing with video

    Dear All, After I sent a project from FCP to Soundtrack Pro, the sound tracks have no linking with the video. That is, if I move a clip accidently, the clip will become out-of-sync with the picture. Is there anyway I can lock the audio files with the