Error on NT with 8.1.6 OCI driver and JDK 1.2

I have the error:
"The procedure entry point slzsetevar could not be located in the dynamic link library oracore8.dll"
oracore8.dll is 8.1.5
ocijdbc8.dll is 8.1.6
Any help will be great.
Thanks,
8.1.6 OCI driver with JDK 1.2

when using a jdbc oci driver you must have a matching oracle client installed.
(fyi -- an oem install is not considered to be an oracle client install)
use the jdbc oci 8.1.6 driver only from a platform with the oracle 8.1.6 client installed.
what you've indicated is you're using an 8.1.6 jdbc driver with an 8.1.5 oracle client -- that will not work.
move to an all 816 client and jdbc driver to "synch up" the dll's you mentioned.
null

Similar Messages

  • How do I overcome error 150:30 with a replacement system hard drive on a Mac Pro?

    I have replaced my system hard disk drive on a Mac Pro and used Mac 'Restore' to restore the complete system from a Time Machine backup. Everything else works correctly, except my current Adobe products (InDesign CS4 and Photoshop CS4) both give a licensing error code 150:30 and each suggest contacting Adobe technical support.
    Can you help?
    Blair Cramond 

    Thanks for your reply. Is it necessary to uninstal the existing CS4
    products before re-installing?
    Ned Murphy <mailto:[email protected]>
    5 May 2014 13:14
    >
          How do I overcome error 150:30 with a replacement system hard
          drive on a Mac Pro?
    created by Ned Murphy <https://forums.adobe.com/people/Ned+Murphy> in
    /Downloading, Installing, Setting Up/ - View the full discussion
    <https://forums.adobe.com/message/6354088#6354088>

  • I currently run Mac Pro with three hard drives. Can I dual boot or even triple boot with Snow Leaopard on one drive and Mountain Lion or Lion on others?

    I currently run Mac Pro with three hard drives. Can I dual boot or even triple boot with Snow Leopard on one drive and Mountain Lion or Lion on others?
    I need to keep Snow Leopard so that I can run some old softward.

    If you are careful you can put at least two on one drive, having Recovery from Lion and Mountain Lion on their own drives though.
    CCC can clone Lion Recovery - great for moving or backup.

  • Getting error reading settings with service profile manager. Why and what can I do to solve problem?

    Getting "error reading settings" with the service profile manager in Lion server OS. Why and what can I do to solve problem?

    I have also had the 'Error reading settings' problem in Profile Manager, despite trying everything in the discussions and clean reinstalls (which work for a little while only).
    It seems that various different fixes work for some people but not others; and the underlying cause of the problem has not been resolved.
    There are now numerous threads on this problem (there are yet others with similar problems):
    https://discussions.apple.com/thread/3189397
    https://discussions.apple.com/thread/3195100
    https://discussions.apple.com/thread/3212015
    https://discussions.apple.com/thread/3208533
    https://discussions.apple.com/thread/3249062
    https://discussions.apple.com/thread/3199734
    https://discussions.apple.com/thread/3212304
    I have posted this in each to try and pull things together a bit.
    Does anyone know if Apple has acknowledged the issue and offered an official response?

  • Error code -36 with FAT 32 USB Flash Drive

    When copying files from my hard drive to a FAT32 formatted USB flash drive I keep getting error code -36 errors. I reformatted the flash drive to Mac OS Extended and the files copied fine. I formatted it back to FAT32 and the error returned. I need to use this drive with PC computers at school and can't leave it in the Mac format. Anyone know of a solution to this problem. It didn't do it with my G4 powermac and OS 10.4 but does with the mac mini with 10.6.

    This is a problem I've been dealing with since getting a new Macbook for christmas. In my case I use a Macbook with 10.6.2 at home, networked to a winxp computer, also use FAT formatted USB sticks for backups and taking files to work....and at work I use a mix of winxp machines and older macs running 10.3 and 10.4. I move files around between them all the time, and have had this annoying error -36 file copying problem with the 10.6.2 macbook since day 1.
    I did read about the dot_clean solution, and it does seem to work....sometimes. But the problem ISN'T just when copying a folder full of files. I also have the situation where I work on files in InDesign, and then export a PDF directly to the desktop. I then try to copy that ONE pdf file from the desktop to a FAT USB stick OR to an internet-accessed Appleshare volume, and I will get the dreaded error -36. MOST of the time when I get the error on a single file like this, it did actually copy and is useable on the USB stick / Appleshare volume and I can ignore the error. But sometimes not. Either way, it does show that the problem isn't just with folders of files, or even with the situation of copying a file from mac to windows to mac and then getting the error the next time you try to copy it to a win formatted volume.....you CAN get the error with an individual, just-created file in 10.6.2.
    I sure wish Apple would fix this already!

  • Probem with databse connection using OCI driver

    hai folks,
    Iam using OCI driver to connect to the database.
    the program is compiling successfully but during runtime it is showing invalid url
    my code follows and my SID value is "mohan"
    import java.sql.*;
    import oracle.sql.*;
    import oracle.jdbc.oracore.Util;
    import oracle.jdbc.*;
    import java.math.BigDecimal;
    public class ArrayExample
         ResultSet rs;
    public static void main (String args[])
    throws Exception
         String driver="oracle.jdbc.driver.OracleDriver";
    DriverManager.registerDriver(new oracle.jdbc.OracleDriver());
    String url="jdbc:oracle://oci8:/@mohan";
    Class.forName(driver);
    Connection conn=DriverManager.getConnection(url,"SCOTT","TIGER");
    DriverManager.getConnection("jdbc:oracle://oci8:/@","scott","tiger") ;
    Statement stmt = conn.createStatement ();
    try
    stmt.execute ("DROP TABLE varray_table");
    stmt.execute ("DROP TYPE num_varray");
    System.out.println("mohan");
    catch (SQLException e)
    System.out.println(e);
    stmt.execute ("CREATE TYPE num_varray AS VARRAY(10) OF NUMBER(12, 2)");
    stmt.execute ("CREATE TABLE varray_table (col1 num_varray)");
    stmt.execute ("INSERT INTO varray_table VALUES (num_varray(100, 200))");
    ResultSet rs = stmt.executeQuery("SELECT * FROM varray_table");
    showResultSet (rs);
    int elements[] = { 300, 400, 500, 600 };
    ArrayDescriptor desc = ArrayDescriptor.createDescriptor("NUM_VARRAY", conn);
    ARRAY newArray = new ARRAY(desc, conn, elements);
    PreparedStatement ps =
    conn.prepareStatement ("insert into varray_table values (?)");
    ((OraclePreparedStatement)ps).setARRAY(1, newArray);
    ps.execute ();
    ResultSet rs = stmt.executeQuery("SELECT * FROM varray_table");
    showResultSet (rs);
    rs.close();
    ps.close();
    stmt.close();
    conn.close();
    public static void showResultSet (ResultSet rs)
    throws SQLException
    int line = 0;
    while (rs.next())
    line++;
    System.out.println("Row "+line+" : ");
    ARRAY array = ((OracleResultSet)rs).getARRAY (1);
    System.out.println ("Array is of type "+array.getSQLTypeName());
    System.out.println
    ("Array element is of typecode "+array.getBaseType());
    System.out.println ("Array is of length "+array.length());
    BigDecimal[] values = (BigDecimal[]) array.getArray();
    for (int i=0; i<values.length; i++)
    BigDecimal value = (BigDecimal) values;
    System.out.println(">> index "+i+" = "+value.intValue());
    please help me in sloving this problem
    my global database name and SID value in mohan
    Thanking u

    Bathina,
    Your problem is in your URL:
    String url="jdbc:oracle://oci8:/@mohan";As far as I know, you can't use the forward-slash character ("/"), by itself, as your database login name -- you must supply a "login/password". I don't know why, and if you don't like it, I suggest you create a TAR (Technical Assistance Request) via the MetaLink Web site.
    I recall similar questions being asked in this forum -- have you tried searching the forum archives?
    Good Luck,
    Avi.

  • Burning iDVD to DVD disc with i Book G4 combo drive and external DVD drive

    7/6/2006. After much recent experimentation with iLife, iMovie and iDVD, I found how to use themes and set up movies in my iBook G4 purchased two years ago near Chicago (updated to OS 10.3.9). To burn an iDVD file to a DVD disc on a "combo drive" (that is, it has no DVD writer drive) iBook or other comparable Mac, go to File on the top horizontal tool bar and down there to "burn to DiscImage." Depending on the size of the file, it will take about four hours for every hour of movie file to encode it. I just set it up that night, went to bed and woke up the next morning with it finished. Once encoded, it doesn't need to be encoded again and can be used in the future. But Toast 7 Titanium will not burn it to an external DVD writer as "video." but it will burn the video file as "data." And pretty fast. The 'data' file still remains a video file and will do everything the video file does, only now from an external round DVD disc, too. I discovered this by accident, although Matt (tech support) reminded me about DiscImage. Later, David (also in tech support) told me to download newer versions of iDVD and iMovie, but that did not work, nor had he ever tried it. Remember for a combo drive and using iDVD, and also iMovie, under File burn to DiscImage and save on an external disc as "data." My external DVD write is by LaCie. Best wishes. Chuck Yopst [email protected] Chicago area.
    iBook G4   Mac OS X (10.3.9)  
    iBook G4   Mac OS X (10.3.9)  

    Like altero said, you're not using Toast properly... Follow these directions:
    Suggest you create a disc image from iDVD and then burn the DVD. In iDVD: File/Save as Disc Image...
    http://docs.info.apple.com/article.html?artnum=164927
    This will isolate any encoding/burning issues you may encounter. Once the disc image is created, double-click the .img and burn the virtual disc that should appear on your desktop, using Toast to burn the DVD. Disk Utility to burn the .img file. Usually, you can select a burning speed in Disk Utility.
    There are variations to this process based on which OS X you are using...
    Open Disk Utility (in Utilities folder in Applications folder), click on the virtual disc (maybe the .img) in the left-hand window. Click the Burn icon. A new window should drop down and your SuperDrive tray will open after clicking the Burn icon. Insert a recordable DVD. (Verbatim DVD-R preferred by me.) Click the Close button. Wait. Select a burn speed. If you hold your mouse cursor over the pop-up it says: "Select a slower speed to work around burn failures," so select 4x or slower for best results. Then click the Burn button.
    -->If the virtual disk selection won't allow you to click the Burn icon, use the .img file instead. This may have changed in 10.3.9 and did change in Tiger.
    Also, you can use DVD Player to play the virtual disk to check your iDVD project before burning to DVD. Launch DVD Player. File/Open VIDEO_TS (Open DVD Media... in Player 4.6). Find the VIDEO_TS folder and open that. (The audio folder is for DVD-Audio disks.)
    http://docs.info.apple.com/article.html?artnum=93006

  • Does it make sense to configure an iMac with a 256MB internal flash drive and rely on an external Thunderbolt HD for storage?

    I am considering buying a 27" iMac with the i7 processor, 16GB RAM (I can add another 16GB without throwing out any RAM that came with the machine), and the faster graphics card with 4GB video memory. I am wondering whether I should get the 3TB Fusion Drive (of which only 128GB is flash drive), or whether I should get a 256GB internal flash drive and rely on a Thunderbolt external HD for storage.
    For reference, my current Applications folder is less than 100GB, my Library folder is less than 15GB, and my Users folder is almost 400GB. However, almost 300GB of my Users folder are two subfolders: Movies and Pictures. It seems that I don't need to store movies and pictures in the Users folder, and I don't, for the most part. Anything else need to be in the iMac's "home HD"?
    I know Apple offers 500GB and 1T flash drives as well, but they are too expensive.
    Having the HD outside the iMac would have the benefit of not having to send in the entire computer in case the HD went down.
    Would I have a performance penalty having the HD external, even with Thunderbolt?

    While I generally agree with what Mr. Kaufmann has already said, if you are doing video editing on your Mac, a 256GB system drive is pretty thin and could be a source of future frustration, even trouble.  Your system needs disk space (aka virtual memory) to operate in addition to whatever you have stored on the system HD.   Various applications also require temporary storage on the system HD ... especially resource-intensive apps like video, photo, audio (media) apps.  You already appear have ~115GB between the system, applications & user library.  That's nearly half of a 256GB drive ... not much left for working storage.
    While editing video, especially anything highdef, you can easily need 50-100GB or more for operation.  And while Final Cut Pro X allows you to specify a different hard drive for its render & cache files, etc., if you don't specify an alternate location it defaults to your system HD for that storage.  Even so, FCPX and similar apps still need working space on your system HD.  I suggest that 500GB is the bare minimum for a system HD on a Mac used for video editing, 1TB would be better.
    'Course, if by movies you only meant viewing movies then this is a totally moot point.

  • Error code: 12048 with Nokia Suite 3.3.86 and Noki...

    I can't update any software with Nokia Suite, and I re-tried so many times but there was no difference. Can any body help me? I use Nokia X6 16GB. Thanks in advance!

    This is part of the known USB connection problem with reboots.
    Please check FAQ:
    Q: While trying to update to Nokia Belle with Nokia Suite, I get an error
    message stating that the connection to the phone was lost. What should I do?
    A: It is normal that the phone loses connection during the reboot phase. If you
    wait for a while it will automatically reconnect to your PC. If you lose
    connection during the backup, installation or restore phase, please do the
    following:
    1. Disconnect the USB cable from your phone
    2. Press your phone’s power button for about 10 seconds
    3. Reconnect the USB cable
    4. Wait for the installation to continue 
    Note: If this doesn’t solve your issues, try to connect your phone to another
    USB port on your laptop or to a USB port on the backside of your desktop PC. In
    some cases rebooting the computer also helps or using another PC to do the
    update.
    Cheers,
    Marina
    Nokia Suite team
    Click on the Star Icon below if my advice has helped you!

  • Error in billing :With respect to scales in pricing and Batches

    Dear Sap Experts,
    Issue related to Scales in pricing.For example
    Sales order MAT1 contains quantity 1000 and scales are exisiting for this material.
    Due to availbility of different Batches the material quantity is changes as 300 & 700.Now in billing document at line item level Scales are not working.Provide me the suitable answer for above problem.in copy control i cannot use "copy pricing element unchanged" bcoz , system should trigger new procedure in billing, but scales has to get copied from sales document.
    Thanks
    Jagadish

    Dear Jagadish,
    In T. Code: VA02
    Go to menu-bar:
    Go To --> Header --> Conditions
    On to next screen, there is a Tab: Update. Click on it. A pop-up window: Pricing Type, will appear.
    Double-click on Pricing Type: "A - Copy price components and redetermine scales".
    Now check, the Item-Price.
    Best Regards,
    Amit

  • Folder with Question Mark, Clicking hard drive and unformatted status on the hard drive in DU

    Hi.
    We have a mac Mini 2012. Only 6 months old and has been used as a media server for the entire 6 months.
    All of a sudden the mac will not work as usual.
    When it starts up there is a clicking sound, almost like a clock, then a white screen with a flashing Folder and Question mark.
    I have used every startup key combination possible. I've even tried to boot in target mode with my Macbook Pro to see if I can access the files on the drive but had no luck.
    I can only boot from the internet download OSX. I tried to install Mountain Lion again but there was no destination to install it to. When I go into disk utilities the drive is shown as a TOSHIBA (Blah Blah blah). Macintosh HD is not shown.
    The drive has no verify or repair options and is classed as unformatted.
    I decided to try and erase it and reformat it but it gave me this error "unable to write to the last block of the device"
    I'm pretty sure I know the answer to this but I'm gonna ask anyway.
    "Are the files recoverable?"
    and what the F do I do?

    No, no backups, this was the backup for my laptop which was failing as well. I moved all my media and files across to the mini, deleted them on my laptop and had the mini work as a media server as well as a back up location for the files that were still on my laptop (mainly photography work)
    I guess I'll have to take it back in store for the hard drive to be replaced as it's still under waranty.
    Does apple give you the failed hard drive back? we have lots of bank statements/bills/passwords and all manner of personal data stored on it. I don't want it falling into the wrong hands.

  • I turned my mac book pro off with a cd in the drive and when i turned the mac back on it will not boot up. I was able to get disk out by holding the finger pad down.

    I turned my mac book pro off last night with a cd still inside it as i installed a new printer. When i turned mac back on it would not load up. I get the apple symbol, a little swirling circle and a bar below it. Any help would be very appreciated. Thank you.

    Start up in Safe mode. http://support.apple.com/kb/HT1564

  • 2 mac with leopard, 1 ethernet Hard drive and Time machine : Does it work ?

    I have 2 Imac with leopard connected by wireless to my local network (Linksys routeur).
    I want to buy a ethernet 500Go drive to do my backup. This drive will be connected to the routeur with a cable.
    Will I able to use TM with this configuration ?
    If case of big problem, could I restore my data ?
    Sorry if this question is already posted, I didn't find same case.
    Bruno

    Well, currently Apple doesn't support using a NAS drive.
    The official line is that the hard drive be connected to the client Mac or anther Mac running Leopard. Some people have found ways to make a NAS work, but whether this works in the long run (i.e. reliable) is an open question.
    Message was edited by: pvonk

  • Issue with AMD/ATI 11-3 driver and Photoshop on Windows.

    The latest AMD/ATI drivers for Radeon HD cards (4xxx, 5xxx, and 6xxx series), 11-3, breaks Normal and Advanced OpenGL modes in Photoshop on Windows.
    Note that this does not occur with 11-1 or 11-2 drivers on the same system. We recommend you stick with 11-1 or 11-2 until this problem is addressed.
    We're working with AMD on the issue and there should be a driver update very soon.
    http://feedback.photoshop.com/photoshop_family/topics/issue_with_amd_ati_11_3_driver_and_p hotoshop_on_windows?utm_content=topic_link&utm_medium=email&utm_source=new_topic

    Thank you for the follow-through, Jeffrey.
    Any idea what went wrong, specifically (asking as an OpenGL-based Photoshop plug-in software developer)?
    -Noel

  • Is Anyone Having Trouble with the latest Liquid Mix driver and Logic 8?

    I'm having a host of problems with my Liquid Mix and Logic (also Digital Performer too.. but that's another forum :0) ). I experience a great deal of latency and flanging when using two instances of it on a channel. How is it for everyone else?

    First, contact Focusrite and make them aware of your LM/Logic problems. I'm communicating with a rep who said he wasn't aware of any issues with LM and Logic.
    Next, I speculate the latest driver of the Version 2 software can't live up to it's claims of variable latency. When I follow the minimum latency of 1032 for the LM manager (as posted on their support site), LM and Logic behave well. The problem for me is I never use 512 in Logic.

Maybe you are looking for

  • How can I control the order of accounts and folders in the folder pane?

    I have many email accounts, and most of them share the same message store in Local Folders and I routinely download mail from all of this group. Additionally, I have a number of miscellaneous email accounts from which I do not regularly download emai

  • Domain user authentication for 3650 Wireless Access point

    Dear All, I have got new proposal inorder to configure the wireless access points by managing with the 3650 wireless controller.   We wanted to block the Wifi Access to mobile users. Only domain users need to be authenticate to the corporate wireless

  • To TYPE Unicode characters

    Hi! I use FrameMaker 8 on Windows XP. I have scanned a two-volume Greek book and ran it through an OCR program. Not all of the transcription is correct, so I have to fix it. Some of the text is quoted from older books, so there's a lot of interesting

  • Round in obiee

    Hi, how to round the 0.80 ,1.11 ,1.70 values in obiee thanks

  • Passing parameters between mxml files(used in viewstack).

    Hi All,    In login page, I'm calling RemoteObject method for validating user credentials. In login success, I'd like to keep user name in a variable and call menu page where it is having menu for the application. In menu.xml file, I'm putting home t