Trouble using Oracle with WLCS

Hi,
I am trying to use Oracle 8.1.7 with WLCS 3.5 on Linux.
I am getting the error:
java.sql.SQLException: System.loadLibrary threw java.lang.UnsatisfiedLinkError
with the message 'no weblogicoci37 in java.library.path'.
Any help?
Thanks,
- Sougata

if you still want to use the OCI driver, make sure the library in your error
message is in the LD_LIBRARY_PATH,
otherwise, switch to the thin driver from Oracle and it will work without
any libraries
Filip
~
Namaste - I bow to the divine in you
~
Filip Hanik
Software Architect
[email protected]
www.filip.net
"Sougata Mukherjea" <[email protected]> wrote in message
news:3baa34b8$[email protected]..
>
Hi,
I am trying to use Oracle 8.1.7 with WLCS 3.5 on Linux.
I am getting the error:
java.sql.SQLException: System.loadLibrary threwjava.lang.UnsatisfiedLinkError
with the message 'no weblogicoci37 in java.library.path'.
Any help?
Thanks,
- Sougata

Similar Messages

  • McAfee SiteAdvisor is no longer working with my Safari 8.0.  I never had trouble using it with Safari before this latest version.  Has anyone else had this problem?

    McAfee SiteAdvisor is no longer working with my Safari 8.0.  I never had trouble using it with Safari before this latest version.  Has anyone else had this problem?  I contacted McAfee support and they said nobody else is reporting this issue.

    Wow, life is certainly tough for you.
    S***t happens.  That's why there's a warranty.

  • Advantages of using Oracle with Unix over Windows server

    Hi there,
    I want some article/document which depicts the advantages of using Oracle with Unix (say HP-UX or Solaris backend). Actually the plan is to use some Data Warehousing applications using Cognos Poweplay, ReportNet and either Decision Stream of Cognos or Oracle Warehouse builder may be used as ETL tool. For Data mining applications we are planning to use SPSS Clementine. The Data volume will be substantial one. At present we are developing some prototype in Windows 2003 advanced environment. We are plaiing to use Risc server and RAID-5. Pl. advice some ideal architecture for us, as you know, it's typically a Govt. level application data (mostly archival data). The reports will be published using Report Net, Adhoc query etc, OLAP analysis will be done using Powerplay.
    Regards,
    Anupam Basu

    Hi there,
    I want some article/document which depicts the advantages of using Oracle with Unix (say HP-UX or Solaris backend). Actually the plan is to use some Data Warehousing applications using Cognos Poweplay, ReportNet and either Decision Stream of Cognos or Oracle Warehouse builder may be used as ETL tool. For Data mining applications we are planning to use SPSS Clementine. The Data volume will be substantial one. At present we are developing some prototype in Windows 2003 advanced environment. We are plaiing to use Risc server and RAID-5. Pl. advice some ideal architecture for us, as you know, it's typically a Govt. level application data (mostly archival data). The reports will be published using Report Net, Adhoc query etc, OLAP analysis will be done using Powerplay.
    Regards,
    Anupam Basu

  • Question for using ORACLE with SOLARIS

    Hi Experts,
    I have worked Oracle with Linux in one of my projects 2yrs back and i was just a developer, used to write SQL Query, Creating Table and Objects.
    Now i got a question from TL which is
    Tell me about consequences for using Oracle with Solaris?
    I am not worked ORACLE with SOLARIS, Can some one give me the answer for this question with
    1. Difference between ORACLE with LINUX and ORACLE with SOLARIS.
    2. Advantages and Disadvantages Between ORACLE with LINUX and ORACLE with SOLARIS.
    Thanks,
    MuraliDharan V

    Hi MuraliDharan V,
    It would had been better if you had searched first;
    Here is one
    Advantage for Linux64-bit Versus Solaris-x86_64 OS in RAC
    And beside that your question is incomplete:
    -What Oracle? Database, etc
    -Which Version? 9i, 10g, etc
    Aside from that a simple search on google might have answered your question as well.
    But I think there is some new trend of dumping questions here before searching.
    Ex Senior DBA

  • Hello. I am having trouble using Mobileme with microsoft oulook 2010. .The error Mobileme has stopped working . Can anybody help. ??Thanks

    Hello
    I am having trouble using Microsoft Outlook 2010. When starting Microsoft Outlook displays the error message Mobileme has stopped working. Can anybody help.
    Thanks

    Well yes, of course you are having trouble using MobileMe because MobileMe no longer exists and has not existed for the last 2 years at least.
    MobileMe has been replaced by iCloud, so you will never be able to use MobileMe because it does not exist.
    Also, I would suggest that you look more closely before you post, because you have posted this in an iPhone forum and this question has nothing to do with iPhones.  You would get more help if you posted in the correct forum.

  • Using Oracle with Unix Cron

    Folks, hows everyone?.
    I am trying to go beyond SQL*Plus queries and teach myself some automation. Turned out to be a litle challenging. Can some one educate me on how to finish this task:
    I wish to automate the following report with crontab: pull data from HR account in Oracle and email it to [email protected] everyday at 6am.
    So, first, i wrote the following script, myqueryscript.sql, containing the query:
    spool /home/myname/myautoreport
    select * from hr;
    exit;
    /home/myname is my unix path and myautoreport directory to store a copy of results.
    Second, i wrote the following shell script, myshellscript, to execute myqueryscript.sql:
    /home/myname/sqlplus hr/psswd @/home/myname/myqueryscript
    third, I wrote the following crontab, mycronscript, to run the shell script:
    00 06 * * * "/home/myname/myshellscript"
    Finally, i submitted to crontab as:
    crontab mycronscript
    I didnt work. Am i missing something?.
    pls note: i am not the root in unix.
    Thanks,
    -a

    > Would you recommend this book on the basis of its contents table or any other
    books on the subject?
    Sorry - I'm not familiar with that author or that book. The most valuable Oracle "books" in my opinion are found at http://tahiti.oracle.com - the complete sets of all Oracle manuals from 8i to 10G.
    Many authors seem to only regurgitate Oracle manuals. The only Oracle book I've bought and considered as a worth every single cent, is Tom Kyte's Oracle Expert one-on-one.
    This goes into the very fundamental concepts of how to use Oracle correctly. It is a real eye opener.
    I am new to automation and wish to study it.What aspects of automation? It covers a very broad range of topics.
    Does automation in the way you described it, i.e. DBMS_JOB, depend on PL/SQL?Extensively. PL/SQL is a formal procedural language. It is as capable as Pascal, C or Java. Many seem to think in terms of PL/SQL as SQL plus some basic programming control structures. PL/SQL is not SQL. These are two different very languages.
    What makes it unique are:
    - it is a server side language running inside the Oracle database
    - it integrates so tightly with SQL that you can write SQL language statements in PL/SQL as if these are native to PL/SQL (which leads to the confusion thinking that PL/SQL is SQL)
    99% of all Oracle related code I write is PL/SQL. There is very little that you cannot do using PL/SQL. And Oracle is not just a capable database tier, it is just as capable as an application tier.
    When using Oracle, there is no need for a separate application tier like Weblogic, JBoss, etc. PL/SQL is in fact a lot more capable language for the application tier than Java or .NET.
    Simple example. One of the automation processes we have is to supply another system with delta changes from one of our databases. They wanted it in XML. They wanted it FTP'ed to their server. 100% of the code written for this is PL/SQL. From creating XML CLOBs in the database, to using FTP to transfer the contents of these CLOBs to their FTP server. With an APEX (Oracle Application Express) web application (also entirely PL/SQL) that provides for maintenance and administration of this automation.
    With less moving parts (not dealing with external processes and additional programming languages), Oracle PL/SQL applications are a lot quicker to develop, a lot easier to maintain, performant (it is very close to the data), and more robust.
    PL/SQL is a very critical core component in any automation and any application that uses the Oracle database.

  • Using Oracle with EJB

    Hi
    I want to use Oracle as database for EJB. I would like to know how do I configure so that it will read from Oracle database rather than Cloudscape? Where do I specify url, username, password, database name etc?
    Thanks

    In WebLogic:
    -Include the dir containing the dll driver;=%WL_HOME%\bin\oci817_8 in your Path variable.
    -Add %ORACLE_HOME%\bin to your Path.
    -Create a new Jdbc Connection pool.
    Set url=jdbc:weblogic:oracle
    Set driver Class= weblogic.jdbc.oci.Driver
    In the Properties text box specify
    user=<user>
    password=<password>
    server=<Oracle Database>

  • Problem in Using  Oracle with Thin Clients(Image) Technology

    I am running Oracle on Server and mine clients are thin clients.I have image on Oracle Server from where I am booting thin clients.The Problem I am facing is when I use single Thin client then everything works but as I starts using more than one thin client mine I got the error rwrun60 and it gives the that close or ignore message.I am using run_product for running reports.Then I tried to use run_report_object but how can I pass paramater using run_report_objects

    i m not getting much from what you are saying.... but i found something.i created a windows application and then was able to create a dataset from ODAC connection to oracle. then dragging the dataset on windows form... i was able to create a data grid containing the data. hittin F5 the app was running successfull. however when tryin to do same in asp.net...when configuring the data source using sql datasource it gave me following error ...
    ORA-00942: table or view does not exist
    help help

  • Trouble using cfincludes with multi-folder structure

    We are rebuilding our site using <cfinclude> to pull in
    standard headers and footers for each page. The headers and footers
    each have many links in them. How can we deal with the fact that
    the pages calling the cfincludes are not all at the same level in
    the folder structure? How can we create one include file for the
    header and one include file for the footer that can each be used
    throughout the site regardless of the level in which the calling
    page is located? Thank you.
    Cheers!
    James

    How can we create one include file for the header and one
    include file for the footer that can each be used throughout the
    site regardless of the level in which the calling page is
    located?
    Create the one header.cfm and the one footer.cfm. Include
    them in Application.cfm/OnRequestEnd.cfm or in Application.cfc.

  • Trouble using ftp with utf8

    hi,
    i've got a problem since i use my new notebook (windows 8.1, 64 bit) for ftp sessions. i am not able to edit, up- or download files with umlauts (e.g. "ü, "ä") in file name. i tried 3 ftp-clients (winscp, filezilla, fireftp). in each of them
    i checked the option to use the encoding utf8, but it doesn't work. i also tried everything after changing the ftp mode from passive into active in internet explorer. same result. maybe it's important to say, that i firestly made an update from windows 8 to
    8.1 before i used the notebook. does anyone have a solution?

    It seems that this is designed by default.
    The Windows built-in FTP service doesn't support utf8.

  • Trouble using exact_fit with Gaia and as3

    I'm building a flash site (with Flash CS4 and AS3) inside of the Gaia framework.
    I want to let my visitors toggle between Exact_Fit and No_scale, and I've attached the following code to be triggered by the toggle button.
    function toggleExactFit(event:MouseEvent):void
                trace ("Here in toggleExactFit to change StageScaleMode");
                if (stage.scaleMode == StageScaleMode.NO_SCALE)
                       stage.scaleMode = StageScaleMode.EXACT_FIT;
                       this.stage.align=StageAlign.TOP_LEFT;
                else
                    stage.scaleMode = StageScaleMode.NO_SCALE;
                           //  stage.align=StageAlign.TOP_RIGHT;
                trace ("Here in toggleExactFit - stage.scaleMode now = " + stage.scaleMode);
    Here are my import statements:
        import flash.display.*;
        import flash.events.*;
        import com.greensock.TweenMax;
        // Imports used by Global Navigation
        import net.kaegi.navigation.NavigationManager2;
        import net.kaegi.navigation.NavigationButton2;
        import net.kaegi.events.NavigationEvent;
        import flash.text.StyleSheet;
        import flash.text.TextField;
        import com.greensock.easing.*;
        import gs.*;
        import flash.media.*;
        import flash.text.*;
        import flash.display.StageDisplayState;
        import flash.display.StageAlign;
        import flash.display.StageScaleMode;
        import flash.utils.Timer;
        import flash.events.TimerEvent;
        import flash.events.MouseEvent;
        import flash.ui.*;
        //import fl.video.MetadataEvent; - ONLY with flv playback component maybe
        import flash.media.SoundMixer;
    This partially works.  When the toggle button is clicked, the site does stretch out to try  to fill the whole screen, but everything is shifted down by about a  hundred pixels and to the right by a couple hundred, so I can't see the  right side or lower part of my website.  I have my stage set to 960 x  620 pixels, and I checked through my different FLAs to make sure content  wasn't spilling past that boundary.
    I was trying to get help on the Gaia forums, but one of theri moderators moved the post, saying this was an actionscript question, not a Gaia issue.
    So, before going back to the Gaia forums, I want to make sure I have my as3 right and haven't overlloked anythying.
    Any suggestions as to what I might have messed up or how to fix it?

    Thanks.  I ran the very test you suggested last night in a standalone fla and the code worked fine, and I sent a note to the moderator this morning (who'd originally pulled my thread as 'non-Gaia related').  The moderator steered me in a new direction (away from exact_fit and toward an onResize function included in Gaia) so trying to get that worked out right now.
    I left my post here because I often get a more nuanced understanding of things after asking questions in the Adobe forums and I don't have much experience with exact_fit, noscale and best practices for resizing and scaling content in accord with browser changes.
    Thanks for your help.

  • I have a new computer, now I am having trouble using iTunes with my iPhone.

    So my old PC died, now I have a MacBook Pro.  I downloaded the latest iTunes to it and when I connect my iPhone to it, it does recognize my phone.  However I purchased and app and I cannot get that app to sync to my phone.  Also is there a way to get the apps currently on my phone to sync with my new itunes library.  I would appreciate any help, Thanks!

    You need to Authorise your New Mac...
    Open iTunes
    From the Store menu, choose Authorize This Computer. (In earlier versions of iTunes, access this option from the Advanced menu).
    When prompted, enter your Apple ID and password, then click Authorize.
    From Here
    About authorization and deauthorization
    See Here for...
    Transfer Purchases  =  iTunes > File > Transfer Purchases
    http://support.apple.com/kb/HT1848
    Download Past Purchases
    http://support.apple.com/kb/HT2519
    Log into iTunes using the account the Purchase was made with... Click on Buy... and a notice will come up saying you already have it... do you wish to download it again... Click Yes...
    All None Purchased music needs to be Copied from your Old Computer or its Backup to your New Mac...

  • Trouble using WRE54G with WAG54G

    Hi,
    I've just purchased a WRE54G extender to use with my WAG54G, but I can't get
    it to work. Do I need a firmware upgrade for my WAG54G?
    Current WAG54G firmware is 1.00.19, Nov 30 2004.

    hi , can you specify the exact version of the WRE ....the config of version 1 are very much different from versions 2&3.....will require the exact version if i am to give you proper guidelines
    this could not be a WAG issue at all...we will have to check and see .

  • Having Trouble Using Oracle 9i

    Hi Guys,
    I have been working on SQL Server for the past 1 1/2 yrs.Recently I installed Oracle 9i and after installing it I really dont know wht to do now..also i have got a .dmp file which i need to import to the oracle database.
    Can anybody point me in the right direction...like from where I can create tables in oracle 9i.(I had read the documentation but had really got nothing out of it). I am completely new to oracle 9i. Please help...
    Thnx

    If you have a dump file, you would need to run the import utility to import it. There is a chapter on the import utility in the Oracle Utilities guide
    http://download-west.oracle.com/docs/cd/B10501_01/server.920/a96652/ch02.htm#1656
    Precisely what parameters you want to pass to the import utility will depend on what you are trying to import and how the dump file was generated.
    If you want to create tables, the easiest option is to open up SQL*Plus and to run a CREATE TABLE statement.
    Justin
    Distributed Database Consulting, Inc.
    http://www.ddbcinc.com/askDDBC

  • Trouble using contacts with mail

    Does anyone know how to select multiple contacts to address a message in Apple Mail?  I understand how to use the "+" sign to bring up contacts, but I can only select one email address and then the contact window closes.  Very frustrating trying to select multiple email addresses. . .

    Add the Address icon to the toolbar of the new message window.
    Open new message window
    Customise the toolbar
    Drag the Address icon to the toolbar (an any other items you see that you want)
    Done
    Now click on the Address icon in the toolbar
    Select the multiple receipents by holding the Command button
    Click on To: or Cc: or Bcc: and all those receipients are added to the email fields.
    A

Maybe you are looking for

  • Image is not showing up on Dialog.

    Hi Guys I am getting problem with Dialog. In my Dialog I have created the image field which accepts image from dam by Drag and drop. Whil Iam dropping the image it is showing up inside the Dialog properly and is showing up on the screen also But when

  • Sound to tv

    If I use  thunderbolt out from the computer via HDMI into the TV. How can I get sound to the TV?

  • Small DVD-RW disks from Videocamera

    I am planning to buy a imac in order to work on my films, which are on small DVD-RW disks from my Video Camera. Is there any way they fit into the iMac ? plastic tray ? any fitting help ? thanks. iMac   Mac OS X (10.4.3)  

  • Question about 3D and XML

    Hallo, I want to embed in a custom java Application, 3D visualizations that represents some data stored in xml form. Does any body knows if there is any existing opensource (java) API that uses XML to produce 3D visual graphs(any, ex. 3D balls,...)?

  • Rectangle size grows while uploading in server

    hi all, i put two table inside a ractangle. the two table has some data. while uploading the same in the server the rectangle size grows automatically but while checking in local it doesn't shows any problem. i am using ssrs 2008r2 for creating repor