Are the shared libs fixed in 815?

The client lib (libclntsh.so) in 8.0.5 was broken. It's missing
the symbol slpmprodstab located in ~/lib/scorept.o. So, you
can't even connect. It's easy enough to fix (link scorept.o into
a shared lib and link it first) but we can't tell our customers
to do this for ever....
I just downloaded the 8051 patches and they don't fix the
problem, so I'm wondering if 815 fixes it?
(sure would be nice to get some decent client libs!!)
pete
null

It's not broken. From note 68151.1:
In release 8.0, it was decided that a lot more oracle products
would be linked to the client shared library, libclntsh.so.
In doing this it was realised that the symbol slpmprodstab
was resolved differently for each product and so could not
be included in the shared library. On platforms where this
practice has been adopted (e.g. Solaris) extra, product
specific, object modules have to be included to resolve this
symbol. Peter Hatch (guest) wrote:
: Sandman (guest) wrote:
: : Wow. Like I said, I didn't have a problem at all when I
: : installed. Friends on EfNet say I live a blessed install
life,
: : because I rarely have problems when installing Oracle
software.
: : laff
: This isn't an install problem. It causes certain (necessary)
: calls to the client library to crash (i.e. core dump) because
: they can't find the symbol. Oracle has the exact same problem
: under Solaris--it's a build problem on their end...
: : Hopefully, this is fixed in 8i since they were aware of it
: while
: As I said, it's not fixed as of 8051, so I was asking if anyone
: has noticed it being fixed under 815 since I'm not going to
: allocate the time/space to install that if it's got the same
: problem.
: : working on the product.
: : Peter Hatch (guest) wrote:
: : : Sandman (guest) wrote:
: : : : I dont remember seeing this problem. Does this happen
with
: : : : glibc 2.1 or glibc 2.0.x?
: : : glibc 2.0, but that shouldn't matter. It's got nothing to
do
: : : with the C libs. This symbol isn't defined in the client
: : library
: : : (at least not in the shared lib). I've talked to Oracle
: folks
: : at
: : : almost every Linux trade show so far and have been told "we
: : know
: : : about the problem and we're working on it." Working on
: what?
: : : you just have to compile the library correctly....
: : : FWIW-Sybase has even worse problems. They compiled their
: : shared
: : : libs as static so they don't work at all. They didn't
even
: : : link in libc, so you get "undefined symbol: printf" and
: such.
: : : : Peter Hatch (guest) wrote:
: : : : : The client lib (libclntsh.so) in 8.0.5 was broken.
It's
: : : : missing
: : : : : the symbol slpmprodstab located in ~/lib/scorept.o.
So,
: : you
: : : : : can't even connect. It's easy enough to fix (link
: : scorept.o
: : : : into
: : : : : a shared lib and link it first) but we can't tell our
: : : customers
: : : : : to do this for ever....
: : : : : I just downloaded the 8051 patches and they don't fix
the
: : : : : problem, so I'm wondering if 815 fixes it?
: : : : : (sure would be nice to get some decent client libs!!)
: : : : : pete
null

Similar Messages

  • What are the cause and fix for the following error message? NS_ERROR_FILE_ACCESS_DENIED failure code: 0x80520015

    Every time I close my Firefox browser I receive the following error message (see details below).
    FYI:
    -- I am running the current version of Firefox.
    -- I had no problems with this error message until my computer was recently attacked by 2 viruses:
    ` SystemFix
    ` Win7 Antivirus 2012
    Both viruses have since been cleaned from my computer. However, I am still receiving this error message.
    Here are my questions:
    * What are the cause and fix for this problem?
    * Do I need to uninstall and reinstall Firefox?
    * Is it possible that this error message is related to an add-on and that it has nothing to do with the recent virus attacks?
    I look forward to any feedback and support you might be able to provide.
    Thanks,
    Metta
    Error Message
    NS_ERROR_FILE_ACCESS_DENIED
    Component returned failure code: 0x80520015 (NS_ERROR_FILE_ACCESS_DENIED)
    [nsIFileOutputStream.init]
    File: undefined
    Line: 857
    Stack: undefined

    Every time I close my Firefox browser I receive the following error message (see details below).
    FYI:
    -- I am running the current version of Firefox.
    -- I had no problems with this error message until my computer was recently attacked by 2 viruses:
    ` SystemFix
    ` Win7 Antivirus 2012
    Both viruses have since been cleaned from my computer. However, I am still receiving this error message.
    Here are my questions:
    * What are the cause and fix for this problem?
    * Do I need to uninstall and reinstall Firefox?
    * Is it possible that this error message is related to an add-on and that it has nothing to do with the recent virus attacks?
    I look forward to any feedback and support you might be able to provide.
    Thanks,
    Metta
    Error Message
    NS_ERROR_FILE_ACCESS_DENIED
    Component returned failure code: 0x80520015 (NS_ERROR_FILE_ACCESS_DENIED)
    [nsIFileOutputStream.init]
    File: undefined
    Line: 857
    Stack: undefined

  • What are the "Shared Cursor (KKS) errors" = ORA-44201 - 44300

    Hi,
    Does anybody know what are the "Shared Cursor (KKS) errors" supposed to raise Oracle errors ORA-44201 till 44300?
    I am currently facing an 'ORA-44201: cursor needs to be reparsed' using Oracle DB EE 10.2.0.3!
    The 11g documentation is mentioning: "Action: Investigate possible causes of resource contention."
    Many Thanks in advance,
    Sébastien
    Brussels, Belgium

    Hi Rob,
    For sure, the error message generated by our 10.2.0.3 db is ORA-44201: cursor needs to be reparsed.
    I have posted a thread in Database - General:
    The environment: OS: Solaris 10 / DB: 10.2.0.3 / OWB: 10.2.0.2 / Workflow: 2.6.4
    I am facing this ORA-44201 when calling a function developed to create a materialized view on a prebuilt table:
    FUNCTION mv_create (p_mv_name IN VARCHAR2)
    RETURN NUMBER
    IS
    v_query VARCHAR2 (4000);
    v_active NUMBER;
    BEGIN
    SELECT mv_query, mv_active
    INTO v_query, v_active
    FROM mtd_materialized_view
    WHERE mv_name = p_mv_name;
    IF (v_active = 1)
    THEN
    EXECUTE IMMEDIATE 'CREATE MATERIALIZED VIEW '
    || p_mv_name
    || ' '
    || 'ON PREBUILT TABLE '
    || 'WITH REDUCED PRECISION '
    || 'ENABLE QUERY REWRITE AS '
    || v_query;
    END IF;
    RETURN 1;
    EXCEPTION
    WHEN NO_DATA_FOUND
    THEN
    raise_application_error (-20250,
    'Create materialized view '
    || p_mv_name
    || ' failed: not found in metadata'
    RETURN 3;
    WHEN OTHERS
    THEN
    raise_application_error (-20251,
    'Create materialized view '
    || p_mv_name
    || ' failed unexpectedly: '
    || SQLERRM
    RETURN 3;
    END mv_create;
    -- End of mv_create function
    The error message:
    ORA-20251: Create materialized view MV_IA_COMN_MTLY failed unexpectedly:
    ORA-44201: cursor needs to be reparsed
    ORA-06512: at "CIS_DWH_FCT.CIS_L_FCT_XCH", line 507
    ORA-06512: at line 1
    I am totally blocked and need your help!!!
    Many Thanks in advance,
    Sébastien
    Brussels, Belgium

  • How to control the shared libs when creating an new OC4J  in AS 10.1.3.4

    Hi there
    I experience some wired behavior in AS 10.1.3.4!
    I Have 2 different installation of AS 10.,1.3.4 (Win 2003 server).
    When I create an OC4J instance (using the manager) at virtual server 1 I got 28 global libraries
    When I create an OC4J instance (using the manager) at virtual server 2 I got 30 global libraries, (+ apache.webservices & oracle.ifs.client )
    Why this difference ?
    And how to control it?
    Note the default instance "Home" has 28 libraries on both servers!!
    Why is it sometime possible possible to use <instance>applib for the jar, and sometime I need to create an <instance>\shared-lib\global.libraries\1.0 library ?
    Regards HAns

    Hi there
    I experience some wired behavior in AS 10.1.3.4!
    I Have 2 different installation of AS 10.,1.3.4 (Win 2003 server).
    When I create an OC4J instance (using the manager) at virtual server 1 I got 28 global libraries
    When I create an OC4J instance (using the manager) at virtual server 2 I got 30 global libraries, (+ apache.webservices & oracle.ifs.client )
    Why this difference ?
    And how to control it?
    Note the default instance "Home" has 28 libraries on both servers!!
    Why is it sometime possible possible to use <instance>applib for the jar, and sometime I need to create an <instance>\shared-lib\global.libraries\1.0 library ?
    Regards HAns

  • Are the Wifi problems fixed yet?

    Hey,
    Im from the UK and currently holidaying in the US. I really want an I-pad, and am thinking about getting one whilst im out here, but am very concerned about the wi-fi issues and having problems returning the Ipad to stores in the UK since it isnt out yet.
    So, have apple sorted out the issues with the wireless connection as i think its probably going to be the deciding factor on whether i buy or not.
    Thank you,

    Greetings,
    Although there are some people having various issues with their WiFi, I am not one of them, nor are the folks in our users group - the nearly 200 of them that have iPads, so far.
    I have taken my iPad to many locations that have WiFi and have yet to experience any abnormal issues with connectivity, throughput, staying connected, etc.
    I, and nearly all of the folks in our Mac Users Group use the Apple Extreme Base Stations, at home, and at work we use Aruba, or Juniper WiFi equipment.
    None of us use that junky stuff like a lot of ISPs give out, or Linksys, D-Link, etc - most of the other home type network stuff. I do have a high end Netgear, that I use as an extender at one location, and have no problems with it, thus far.
    Most of us in our users group are IT professionals, of one sort or another, so I wouldn't expect us to have very many issues, except if they were for hardware reasons. At this point, I don't see any, or we would be having issues, at least some of us. We just had a meeting last night, and I brought this up in the meeting, and the response was that they were having nothing out of the ordinary - just the usual stuff you'd expect with WiFi, from time to time.
    I haven't used my iPad in an area where they are having issues - actually I'm not sure where to go looking. Maybe I can find some folks with the cheap, to low grade routers, and give it a go. I was just in McDonalds, and it worked well, but I don't expect Mickey Ds to use cheap stuff. It worked at the airport yesterday, but I was only connected a half an hour or so.
    I also frequent Starbucks every workday morning, and have shown the iPad off each day since I got it on that wonderful Saturday. Since that time, over a dozen other folks have gotten one, and every one seems to be happy. I see most of them almost every day at Starbucks, or a couple times a week.
    This little device has been a Godsend for me - I use it with my Exchange Mail, my MobileMe mail, I depend on the Calendar, Address Book, use it for note taking, and access ing my files via AirShare, and a couple of other file access methods. It's a damned fine business tool, and was the chief reason I bought it in the first place.
    Nope, I see no problems here, on my end, but I do see people on these forums complaining about various issues - some are ridiculous, to almost a non-issue, and others are self inflicted.
    I would expect an update at some point in time to help folks with the lower end equipment, and those with poor setups, configs, knowledge, etc
    At any rate, I'm enjoying the heck out of mine for business and pleasure - now if I could just get the College to pay for it..........
    Good Luck All,
    M.

  • Are the shared files accessible to a sony bluray player

    I have a Sony BluRay player that allows me to shared media from a Windows 7 PC.  Will the shared files located on an external hard drive attached to the Air Extreme be viewable on my Sony BluRay?

    Although the AirPort Extreme has a NAS function, it does not include a DLNA-compliant Media Server. You would need some type of this server (hardware or software) to stream any multimedia files located on the AirPort Disk to your Sony Blu-ray player.

  • I dropped my iPad2. What are the options of fixing it?

    I accidently dropped my iPad into a bricked area. I still have my warranty because it isn't a year old. Can I get it replaced or do I have to fix it? I have a engraving on the iPad 2, will the engraving be gone when they replace the back of the iPad? And if the iPad won't work with the warranty, how much will it cost to get the iPad back replaced?

    The cost will be about half the new price.
    Look at the info on this page http://support.apple.com/kb/index?page=servicefaq&geo=United_States&product=ipad
    Any repairs will not be covered by the Apple Warranty. There are some 3rd party repair vendors. however, the warranty will be voided.
     Cheers, Tom

  • Are the replacement Heatsinks fixing people's Random Shutdown problems?

    Is the replacement heatsink (the shorter one) still the method of choice from Apple for fixing Random Shutdown problems?
    Is it working for people who've had it done recently?

    Does this max out the CPU?
    Yes. People who advocate this are testing to see if it's possible to induce a "random" shut down.
    Why would anyone want to do that?
    Good question. I've seen two reasons put forward: (a) It's better to make it happen now yourself rather let it strike out of the blue at some later date (and if running this test doesn't induce RSDs you can feel confident that your computer is probably immune); (b) If you take your MacBook to an Apple Store it could be useful for demonstrating to an Apple "genius" that your computer has the problem, especially if your shutdowns are infrequent.
    (personally, I don't agree with (a))
    MacBook (OS 10.4.8)     iMac G4 (OS 10.3.9)

  • Home button stuck on iPod Touch. What are the ways in fixing this problem?

    I've had my ipod touch from Nov 2011, and just recently I have noticed the ipod touch home button is getting stuck and that I have to push the button hard for it to work. Sometimes it works with a slight touch. I put assistive touch on so that if i have any problems I can get an easy fix out of it. But having the assistive touch is really annoying because the normal button is not working and it gets in the way of what I'm doing. Is there any way on fixing this problem other than using the assistive touch.
    I've used tips on the following video which seem to work. But its only a temporary fix to my problem.
    http://www.youtube.com/watch?v=yBfhCmq9VkA
    Please help.

    Try:
    fix for Home button
    iPhone Home Button Not Working or Unresponsive? Try This Fix
    - If you have iOS 5 and later you can turn on Assistive Touch it add the Home and other buttons to the iPods screen. Settings>General>Accessibility>Assistive Touch
    - If not under warranty Apple will exchange your iPod for a refurbished one for:
    Apple - Support - iPod - Repair pricing
    You can do it an an Apple store by:
    Apple Retail Store - Genius Bar
    or sent it in to Apple. See:
    Apple - Support - iPod - Service FAQ
    - There are third-party places like the following that will repair the Home button. Google for more.
    iPhone Repair, Service & Parts: iPod Touch, iPad, MacBook Pro Screens

  • My ipad with retina display can't find my epson artisan 730 wireless printer. They are on the same network and printer's wireless connection is excellent. What are the steps to fix this?

    My imac won't pick up the printer either. Even after I updated it's software.  My ipad is new.  Any help would be appreciated. Thanks!

    No change. The printer still doesn't show up on my devices even though they are all on the same network.  On the printer's connection print out the connection reads Pass and that the network is working correctly.  However, then it states "*A router/access point channel conflict has been detected. If you have problems printing or scanning, Improve your wireless network environment." "*If the problems persist, see your documentation for help and networking tips."
    I've gone through all the documentation and still can't figure out what the problem is.  I've had the router checked out by my building and they claim everything is in order.  I have a excellent signal.

  • Are the calendar problems fixed

    i remember many people having trouble when working with calendars (losing photo libs, i think). has that problem been fixed in 6.0.1?

    i remember many people having trouble when working with calendars (losing photo libs, i think). has that problem been fixed in 6.0.1?

  • What week are we in?  And all are the bugs all fixed?

    So I had a slew of issues and now Apple will build me a brand new unit.
    I'm guessing they're going to up it from 2.0 to 2.16GHz. So that being said, w/ the CTO, upped HD and ram etc., can I expect any issues? Such as heat, whine, buzz etc?

    I believe hte latest motherboard revs have solved most all of the issues.
    However, just personally wondering why would htey upgrade you to a 16 and bigger hdd adn so on? I konw they did to one user in the forums, but he has a discontinued model. They still ovver teh same 2.0 you ahve (unles you ahve the 2.0/512 oen that existed)

  • ODCI : oracle data catridge interface service : what shared libs are needed

    Hi,
    I am writing aggregate functions. For using ODCI along with OCI in C/C++.. what are the shared libraries which are required : i have oci.h & odci.h files but do not know what shared libraries are needed to use the ODCI interface.
    I am getting the error :
    ORA-06521: PL/SQL: Error mapping function
    ORA-06522: /usr/lib/oracle/xe/app/oracle/product/10.2.0/server/lib/custagg.so:
    undefined symbol: ODCIAggregateInitialize
    ORA-28579: network error during callback from external procedure agent
    ./libagtsh.so: undefined reference to `homtscb_ShutdownCallback'
    I don't see any one responding to my queries.
    Can any one give me some other paid forums where I can pay some fee and get clarifications for my errors and doubts.
    I am a student trying to study the extendibility of databases with user defined aggregates without the need to change the underlying database engine. This is a part of research which i am doing.

    But some how i am having problem with ODCI : it is
    not identifying the ODCIAggregateInitialize function
    It is throwing error : ORA-06521: PL/SQL: Error
    mapping function
    ORA-06522:
    /usr/lib/oracle/xe/app/oracle/product/10.2.0/server/li
    b/custagg.so:
    undefined symbol: ODCIAggregateInitializeThat's a pretty useful error message IMHO
    And generally in Unix environment we don't include
    'extern "C" ' before each member function in the C
    program but we do that in Windows environment . So
    may be I thought of just try including that in my
    program(unix environment) and it was giving me even
    a worse error :
    RA-28579: network error during callback from external
    procedure agent.So I just removed that extern "C"
    keyword.Actually, the extern "C" is required because even though you are writing C-like code, it's C++ since there are declarations in the middle of the code, which C doesn't support (maybe C99 does, I don't know). This tells me you compile using a C++ compiler, which mangles the method name (to support method overloading, which C doesn't support). Adding the extern "C" makes the C++ not mangle the method, and thus the ODCI system can find the entry point in your shared lib.
    ORA-28579 is not a worse error, it is the error you should fix. But I can't help you there, I've never done it. OTOH, if you can make this work, I'd be very interested if you could post a complete example demonstrating what you are doing. --DD                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • Reading the stabs.index section of Shared Libs

    Hi there.
    In order to produce developer-friendly stack-traces, I'd like to read the stabs info from our own projects to map the stack offsets to actual code lines.
    So far, I've sucessfully written the reader to handle the lazy stabs inside our object files, and I get the relevant mapping (using N_SLINE, N_FUN and N_SO). But I don't have much luck trying to find these actual .o files from the shared libs (using the N_OBJ stabs contained in the ".stab.index" section of the shared library).
    It looks like Sun Studio 11 (maybe earlier versions too) writes the stabs in an odd format in our shared-lib, so that only the beginning of the section is correct (only the one covered by the first N_UNDF) . After a while, the offset to the strings get wrong, even using the "correct" algorithm of adding the offset contained in the previous N_UNDF stab.
    So, I can read all the information correctly, except for the actual strings for each stab. I had a look at some other stab-readers (gdb and valgrind), and they suffer from the same issue as my code. Actually, even an objdump -G mySharedlib.so produces the same incorrect output. But obviously, there is a way of find the correct string pointers, as the dumpstabs tool works perfectly.
    Does anyone have any pointer to the actual trick needed to read the stabs ? I've already read "The stabs debug format", and the document provided by Sun (and linked from Chris Quenelle's blog): http://developers.sun.com/tools/cc/documentation/ss10_docs/stabs.pdf
    Cheers

    First of all, I should start by saying that in Sun Studio 12 all the
    Sun compilers will generate dwarf as the default debugging format,
    and you should be able to use the GNU binutils "addr2line" utility
    to query the line number information. The dwarf information produced
    by Sun Studio 11 (C compiler, for example) has a glitch that makes
    it incompatible with addr2line, but the glitch is fixed in our development
    release, and Sun Studio 12 (when it comes out) will work with addr2line.
    On Solaris, the addr2line utility is available as "gaddr2line".
    But I realize that stabs processing is also useful for the time being.
    Here are my ideas for what might be going wrong.
    If there are stabs that resulted from COMDAT functions then there are
    special formatting issues. The C++ compiler uses COMDAT to implement
    templates. The stabs.pdf document describes how COMDAT affects
    stabs. Search for the word COMDAT in the document. Because comdat
    ELF sections are merged at link-time, it might also help to run
    elfdump and dumpstabs on some of the .o files that are being put into
    your library as a way of understanding what's going on.
    Specifically, the string table offsets need special processing around
    any index stabs that result from comdat sections, so I suspect
    that's what's causing problems.

  • Which Shared Libs are required to run ADF

    When we setup a new stand alone server, the shared libs are not targeted to that server.
    What Shared libs need to be targeted to a managed server for ADF applicaitons?
    Running WebLogic 10.3.1
    JDeveloper 11.1.1.1.0
    thanks,
    Rodger...

    You should be more specific with your environment.
    My understanding of a standalone WLS is this: a WLS installed with the plain WLS installer, no JDeveloper involved.
    If you installed JDeveloper which includes WLS and want to run a new WLS domain from this installation then you only need to run the Configuration Wizard to create a new domain. During this run you should include (set the check box) the Oracle JRF (something like Java Runtime Framework) option. Then your new domain is able to run the ADF application. You should be aware that you need to package it as an EAR file otherwise the shared libraries are not called. (Hint: See http://blogs.oracle.com/olaf/2008/10/nice_jdev_11g_feature_ear_pack.html)
    --olaf                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

Maybe you are looking for