Recompilation causes: ORA-06521 and ORA-06522

Hi,
I've an external function(created in C), which was installed using the normal stuff(associated with a library and used in an external function definition). Everything was working ok, I mean, I was able to call the function from pl/sql programs without any problem. I'm using Oracle version 8.1.7 under Solaris 8.0.
But then, it was necessary to recompile the function(the C source). I don't know how often Oracle checks or load the OS file(shared library), but after that recompilation I get the following error:
sqlcode = -6521
sqlerrm = ORA-06521: PL/SQL: Error mapping function
ORA-06522: ld.so.1:
extprocextproc_agent: fatal: cliente_390: can't find symbol
My sql code for the library and function re-creation is something like this:
create or replace library lib_cliente_390 as
'/a/b/c/d/cliente_390.so'
create or replace function cliente_390
in_ip in varchar,
in_puerto in binary_integer,
in_terms in varchar,
in_cics in varchar,
in_nomtran in varchar,
in_nomtran_esp in varchar,
in_usuario in varchar,
in_password in varchar,
in_trama_env in varchar,
in_timeout in binary_integer,
in_loglevel in binary_integer,
in_logfile in varchar,
out_term_asig out varchar,
out_trama_rec out varchar,
out_desc_codret out varchar
return binary_integer
as language c
name "cliente_390"
library lib_cliente_390;
As an additional problem, I tested the same case on a Linux box with Oracle 9, and it gives me another error: a problem with the DLL path. When I change the path for something relative to ${ORACLE_HOME}, then it seems to work(even with recompilation).
Well, any help will be appreciated. Thanks
salu2
dario estepario ...

I don't know how often Oracle checks or load the OS file(shared library), I believe it loads the file the first time it's called in a session. To get the new version of the extproc you ned to re-connect to the database.
Cheers, APC

Similar Messages

  • ORA-06521:PL/SQL:Error mapping function :ORA-06522:undefined :ODCIAggregate

    Hi,
    I am getting the following error :
    SQL> select MinDistance(TT) from egg1;
    select MinDistance(TT) from egg1
    ERROR at line 1:
    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
    I am compiling my C program with OCI using the following command :
    g++ -Wall -c custagg.c -o custagg.o -I$ORACLE_HOME/rdbms/public -I/usr/lib
    I am linking to get a shared library custagg.so file with following command :
    ld -shared -o custagg.so custagg.o $ORACLE_HOME/lib/l*.so ../../usr/lib/libstdc++.s*
    I am not getting any errors during these two phases.
    And when i am calling the extproc custagg(Mindistance) which i implemented using ODCI(oracle data catridge interface) ...I am getting the error undefined symbol : ODCIAggregateInitialize
    So can any one please let me know what shared libraries are required to access the ODCI services and also am I compiling and linking it the right way or am I missing any libraries.
    I have the oci.h & odci.h and several other header files in my :
    $ORACLE_HOME/rdbms/public
    And while linking i am using : $ORACLE_HOME/lib/*.so files.
    So I don't know whether my directory is missing some shared files related to ODCI : can any one please let me know which files or shared libraries I am missing :
    Below are list of files in my : $ORACLE_HOME/lib :
    custagg123.o libclntsh.so libdbcfg10.so libjox10.so libocci.so.10.1 liborasdkbase.so libskgxpd.so libunwind.so.5
    custagg.so libclntsh.so.10.1 libemmas10.so libldapjclnt10.so libocijdbc10.so liborasdkbase.so.10.2 libskgxpu.so libxdb.so
    facility.lis libclsra10.so libhasgen10.so libnjni10.so libocr10.so liborasdk.so libsqlplus.so shell.so
    hsdb_odbc.so libcorejava.so libheteroxa10.so libnjssl10.so libocrb10.so liborasdk.so.10.2 libsqora.so.10.1 sysliblist
    hsdb_ora.so libcoresh10.so libhsbase.so libnnz10.so libocrutl10.so libqsmashr.so libsrvm10.so
    lclasses12.zip libcprts.so.5 libhsnav.so libnque10.so libodm10.so libskgxn2.so libsrvmhas10.so
    libagtsh.so libcxa.so.3 libimf.so libntcpaio10.so libodmd10.so libskgxns.so libsrvmocr10.so
    libagtsh.so.1.0 libcxa.so.5 libirc.a libocci.so libons.so libskgxp10.so libuini10.so
    Please reply to my queries.
    Please let me know if you want to have a look at the symbols of my object file
    Thanks & Regards,
    -NN

    It's only a quick guess but have you checked your tnsnames.ora file to ensure you've opened the environment to find the libraries? If you set the EXTPROC_DLLS=ANY, you open the database to security issues but it should tell you if this cause because you can't access the library that contains the symbol.
    SID_LIST_CALLOUT_LISTENER =
    (SID_LIST =
    (SID_DESC =
    (SID_NAME = PLSExtProc)
    (ORACLE_HOME = <oracle_home_directory>)
    (PROGRAM = extproc)
    (ENV = "EXTPROC_DLLS=ONLY:
    <oracle_home_directory>/customlib/writestr1.so
    ,LD_LIBRARY_PATH=<oracle_home_directory>/lib")
    )

  • ORA-06521: PL/SQL: Error mapping function :ORA-06522:undefined :ODCIAggre

    Hi,
    I am getting the following error :
    SQL> select MinDistance(TT) from egg1;
    select MinDistance(TT) from egg1
    ERROR at line 1:
    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
    I am compiling my C program with OCI using the following command :
    g++ -Wall -c custagg.c -o custagg.o -I$ORACLE_HOME/rdbms/public -I/usr/lib
    I am linking to get a shared library custagg.so file with following command :
    ld -shared -o custagg.so custagg.o $ORACLE_HOME/lib/l*.so ../../usr/lib/libstdc++.s*
    I am not getting any errors during these two phases.
    And when i am calling the extproc custagg(Mindistance) which i implemented using ODCI(oracle data catridge interface) ...I am getting the error undefined symbol : ODCIAggregateInitialize
    So can any one please let me know what shared libraries are required to access the ODCI services and also am I compiling and linking it the right way or am I missing any libraries.
    I have the oci.h & odci.h and several other header files in my :
    $ORACLE_HOME/rdbms/public
    And while linking i am using : $ORACLE_HOME/lib/*.so files.
    So I don't know whether my directory is missing some shared files related to ODCI : can any one please let me know which files or shared libraries I am missing :
    Below are list of files in my : $ORACLE_HOME/lib :
    custagg123.o libclntsh.so libdbcfg10.so libjox10.so libocci.so.10.1 liborasdkbase.so libskgxpd.so libunwind.so.5
    custagg.so libclntsh.so.10.1 libemmas10.so libldapjclnt10.so libocijdbc10.so liborasdkbase.so.10.2 libskgxpu.so libxdb.so
    facility.lis libclsra10.so libhasgen10.so libnjni10.so libocr10.so liborasdk.so libsqlplus.so shell.so
    hsdb_odbc.so libcorejava.so libheteroxa10.so libnjssl10.so libocrb10.so liborasdk.so.10.2 libsqora.so.10.1 sysliblist
    hsdb_ora.so libcoresh10.so libhsbase.so libnnz10.so libocrutl10.so libqsmashr.so libsrvm10.so
    lclasses12.zip libcprts.so.5 libhsnav.so libnque10.so libodm10.so libskgxn2.so libsrvmhas10.so
    libagtsh.so libcxa.so.3 libimf.so libntcpaio10.so libodmd10.so libskgxns.so libsrvmocr10.so
    libagtsh.so.1.0 libcxa.so.5 libirc.a libocci.so libons.so libskgxp10.so libuini10.so
    Please reply to my queries.
    Please let me know if you want to have a look at the symbols of my object file
    Thanks & Regards,
    -NN

    Your issue may relate to XE and it may relate to OCI but it does not relate to SQL and PL/SQL. Consider posting your question in a forum where it will be on topic.
    When you do include full version information (3 decimal places) and the code that is generating the exception.

  • ORA-06522 problem

    Hi!
    I and my college like to use a c++ program on a HP-UX 11 and Oracle 10gR2
    but every time when we call our simple test c++ function from pl/sql as an external function we get an error.
    Earlier we used 9i and we had not problem by the runing.
    Our simple program:
    extern "C"
    #include <stdio.h>
    #include <string.h>
    #include <stdlib.h>
    void test(char *ostr)
    char *p;
    p = getenv("CSILOGDIR");
    if (p == NULL)
    strcpy(ostr, "");
    else
    strcpy(ostr, p);
    return;
    We create a makesl file:
    echo $CppComp
    $CppComp dirt.cpp
    ld -b -t -v -o dirt.sl dirt.o
    We run this makesl on the HP-UX 11 and it creates the dirt.o and dirt.sl files.
    When we create a PL/SQL stored procedure which call the test function
    and run it we get the next error:
    ORA-06520:PL/SQL: Error loading external library
    ORA-06522:Unsatisfied code symbol '__cxa_personality_routine' in .../dirt.sl
    Can somebody help?
    Atesz

    I have exactly the same problem:
    I wil list my configuration files:
    # TNSNAMES.ORA Network Configuration File: C:\oracle\ora92\network\admin\tnsnames.ora
    # Generated by Oracle configuration tools.
    MVNA =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST = sikmdb04.kddimobile.com)(PORT = 1521))
    (CONNECT_DATA =
    (SERVER = DEDICATED)
    (SERVICE_NAME = MVNA)
    MVNO01 =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST = sikmdb04.kddimobile.com)(PORT = 1521))
    (CONNECT_DATA =
    (SERVER = DEDICATED)
    (SERVICE_NAME = MVNO01)
    MVNO02 =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST = sikmdb04.kddimobile.com)(PORT = 1521))
    (CONNECT_DATA =
    (SERVER = DEDICATED)
    (SERVICE_NAME = MVNO02)
    MVNO03 =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST = sikmdb04.kddimobile.com)(PORT = 1521))
    (CONNECT_DATA =
    (SERVER = DEDICATED)
    (SERVICE_NAME = MVNO03)
    EXTPROC_CONNECTION_DATA=
    (DESCRIPTION =
    (ADDRESS_LIST =
         (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC0))
    (CONNECT_DATA =
         (SID = PLSExtProc)
         (PRESENTATION = RO)
    # LISTENER.ORA Network Configuration File: C:\oracle\ora92\network\admin\listener.ora
    # Generated by Oracle configuration tools.
    LISTENER =
    (DESCRIPTION_LIST =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST = sikmdb04)(PORT = 1521))
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC0))
    SID_LIST_LISTENER =
    (SID_LIST =
    (SID_DESC =
    (SID_NAME = PLSExtProc)
    (ORACLE_HOME = C:\oracle\ora92)
    (PROGRAM = extproc)
    (ENVS = "EXTPROC_DLLS=ANY")
    (SID_DESC =
    (SID_NAME = MVNOA)
    (ORACLE_HOME = C:\oracle\ora92)
    (PROGRAM = extproc)
    (SID_DESC =
    (SID_NAME = MVNO01)
    (ORACLE_HOME = C:\oracle\ora92)
    (PROGRAM = extproc)
    (SID_DESC =
    (SID_NAME = MVNO02)
    (ORACLE_HOME = C:\oracle\ora92)
    (PROGRAM = extproc)
    (SID_DESC =
    (SID_NAME = MVNO03)
    (ORACLE_HOME = C:\oracle\ora92)
    (PROGRAM = extproc)
    # This file is actually generated by netca. But if customers choose to
    # install "Software Only", this file wont exist and without the native
    # authentication, they will not be able to connect to the database on NT.
    #automatic_ipc = off
    SQLNET.AUTHENTICATION_SERVICES = (NTS)
    NAMES.DIRECTORY_PATH= (TNSNAMES)
    #SQLNET.EXPIRE_TIME=10
    where is the problem??
    please help.
    Thansk a lot.

  • ORA-06522 - undefined symbol

    I'm getting the following error when i execute external procedure:
    ORA-06520: PL/SQL: Error loading external library
    ORA-06522: /oracle/ora10/mm_server/libhello.so: undefined symbol: NfmIsRegistered
    ORA-06512: at "AOL.VERIFICATION", line 1
    ORA-06512: at line 4
    Outside Oracle DB everything works fine.
    I have all shared object dependencies in same directory than libhello.so.
    Could you help me?
    Thanks a lot

    This can be related to LD_LIBRARY_PATH or permissions. Check your environment variables and file permissions.
    See also Metalink note 310044.1.

  • Query to find SQL_ID of statement which causes ORA-1555

    Could you please sent a query to find which SQL_ID/sql stament causes ORA-1555 error.
    Hari

    Look in an AWR report spanning the time frame when it occurred. Number of executions may be blank but the elapsed time will be high.
    You can also find part of the statement and then trace it back.
    http://asktom.oracle.com/pls/asktom/f?p=100:11:1480055079538858::::P11_QUESTION_ID:40115659055475

  • Does RULE hint cause ORA-01555 errors ?

    DB Version:9.2.0.5.0
    OS:SunOS 5.9
    Our DBA is saying that the RULE hint in the below SQL might be causing ORA-01555 error. Is it true? Does RULE hint cause ORA-01555 errors
    SELECT /*+ RULE */  COUNT(*)
      FROM ( SELECT /*+ RULE */  DISTINCT CAR_HDR.CAR_NBR AS A1, CAR_HDR.PLT_ID AS A29,
      CAR_HDR.PKT_CTRL_NBR AS A2, CAR_HDR.TOTAL_QTY AS A21, CAR_HDR.STAT_CODE AS A6,
      CAR_HDR.CURR_LOCN_ID AS A12,
      CAR_HDR.CAR_NBR  AS A145,
      CAR_HDR.WN_NBR AS A4, CAR_HDR.PCALL_NBR AS A7, CAR_HDR.CHAIN_CNT AS A119,
      CAR_HDR.SHPMT_NBR AS A35, LPN_HDR.WHSE AS A105, CAR_HDR.MISC_CAR AS A146, ''  AS A138,
      CAR_HDR.CHUTE_ID AS A132, CAR_HDR.MOD_DATE_TIME AS A82, LPN_HDR.LOCN_CLASS AS A106,
      LPN_HDR.AREA AS A107, LPN_HDR.ZONE AS A108, LPN_HDR.AISLE AS A109, LPN_HDR.BAY AS A110,
      LPN_HDR.LVL AS A111, LPN_HDR.POSN AS A112
          FROM INV_MASTER , CAR_DTL , LPN_HDR , CAR_HDR 
           WHERE CAR_HDR.CAR_NBR=CAR_DTL.CAR_NBR(+)
           AND CAR_HDR.CURR_LOCN_ID=LPN_HDR.LOCN_ID(+)
           AND CAR_HDR.WHSE=LPN_HDR.WHSE(+)
           AND CAR_DTL.SKU_ID=INV_MASTER.SKU_ID(+)
           AND CAR_HDR.CT_SEQ = 'ALB10'
           AND INV_MASTER.INV_CODE = 98
           AND INV_MASTER.TRACK_CODE = 'P10' )
          

    user636669 wrote:
    DB Version:9.2.0.5.0
    OS:SunOS 5.9
    Our DBA is saying that the RULE hint in the below SQL might be causing ORA-01555 error. Is it true? Does RULE hint cause ORA-01555 errorsThe full statement is causing the ORA-01555 error. Each line of the statement is important therefore each line is reponsible for the error. I personally think the DISTINCT keyword has a bigger influence than the RULE hint.
    I suggest to check what you want to do with that count result. maybe there are better ways to get the same result. Maybe you can even ignore the distinct keyword or remove some outer joins. Using the CBO might result in the same plan as using the RBO, so you you will never know if that removing the hint will help or if if you'll get the same problem later again.

  • Query to find which past ses caused ORA-1652: unable to extend temp segment

    Hi,
    I m trying to get information on the sessions/sql query that have cause ORA-1652: unable to extend temp segment from past 2 days. Basically need to know which all sessions in past 2 days have caused ORA-1652: unable to extend temp segment.
    I have generated the AWR report but not able to figure it out which sessions caused this error.
    Thanks in advance

    913410 wrote:
    Hi,
    I m trying to get information on the sessions/sql query that have cause ORA-1652: unable to extend temp segment from past 2 days. Basically need to know which all sessions in past 2 days have caused ORA-1652: unable to extend temp segment.
    I have generated the AWR report but not able to figure it out which sessions caused this error.
    Thanks in advance
    01652, 00000, "unable to extend temp segment by %s in tablespace %s"
    // *Cause:  Failed to allocate an extent of the required number of blocks for
    //          a temporary segment in the tablespace indicated.
    // *Action: Use ALTER TABLESPACE ADD DATAFILE statement to add one or more
    //          files to the tablespace indicated.

  • A seeming small change by Verizon causes major monetary and unrecovera​ble damages

    A seeming small change by Verizon causes major monetary and unrecoverable damages
    Back, I think in March or so, Verizon changed how they bill. Prior to this time frame my elderly mom paid the phone bill and I paid the DSL bill. The DSL bill came on my name and I paid by credit card and the phone bill came under her name and she paid by direct debit. She will not use a computer.
    So, they make both bills on her name and won't change it. They did, however, allow the payment from my credit card.
    The first unfortunate consequence was the internet speed suddenly dropped in speed by a factor of 2 to 1.5/364 and it did take me probably a month to notice it. NO ONE that I called was able to find the problem. It took multiple attempts until some bright “call in technician” said the problem is on their end and could be fixed in software. Thus, I believe, because of the name change, the provision changed too. The phone line crapped out too at this time.
    The troubleshooting was stupid too. I took another modem and connected it directly to the NID and directly to the laptop and the technician on the phone said, it's either in your house or your modem and wanted to send me a new modem which they did. I don' get it. This is the wrong conclusion.
    This shows the need of modems like Westell 2200 and the Westell 6100 because of the ability to measure line statistics and provisioned data rates.
    Verizon sent me a D-link model DSL-2750B modem which I have to return because its just plain old stupid. It boasts Wireless n and the wired ports are 10/100. What's up with that? Next, there are no line stats and a horrible interface, akin to Verizon's website. Still can't figure out how to put it in Bridge mode. I own a D-link repeater and the interface is fine.
    I asked them what modem they would send me and they would not tell me, so I got whatever piece of junk they had lying around.
    I have now purchased a Network RAID array with no wireless access and with ~400 mb/s access rates. Yep, really stupid router.
    Because of the number of outages, I have to be able to quickly switch from a bridge connected modem, Westel 6100) to one that is connected in direct mode, a Westell 2200 It's almost easy, but not quite, since the equipment is up in the rafters in the laundry room. The DSL cable is commercial terminated CAT5, which is rare. The modem is within 6' of the NID.
    Plans include, the ability to switch the DSL line with a switch with positions for Modem #1 (Bridge), Modem #2(Wired), #3(RJ11 – Normal wiring) and #4: RJ-11 (Reverse wiring) and moving the direct connect jack for easy access. In any event, testing with the DSL modem at the NID is the gold standard.
    In progress, is a 48 port Gigabit patch panel for phone and Ethernet, A separate 24 port RED patch panel will be bridged for phone.
    I have already upgraded my network infrastructure to include a UPS for the network infrastructure and POE (Power over Ethernet) for the DSL modem. The UPS backup does not backup a repeater although it may in the future.
    Now, let's go back to this seeming innocuous billing change.
    So, this constant having to access the modem in the alternate configuration and a medical condition (migraines) that makes it hard to think clearly. So, in one of these episodes, I placed my laptop on top a container that was soaking laundry.
    So, the LCD screen has to be replaced at $300 and the battery had to be replaced. Then the Ethernet cord to the modem got pulled and caused the laptop to fall on the floor. It worked for a few weeks and then suffered an UNRECOVERABE hard drive crash.
    During this time frame, in fact over a 2 day period. My mom ended up in the hospital and to a rehab facility. My car ended up staying in the shop for a few days because of parts unavailability. My hard drive crashed and their was water in the basement. I don't have time for this.
    Recovery would have cost $2004.00, if it were possible. I only have a drive image from 2011 which I have yet to try to use. I' now running UBUNTU Live rather than Windows 7 Pro. Some of the very important stuff was backed up on Flash, but a lot of stuff is gone forever.
    Plans are to contact the billing office and the attorney general's office in the state where billing questions need to be resolved.
    The last outage, fixed on July 27, was flagged as a phone outage by Verizon, when 18 routers supposedly died. 18 routers suspiciously means that they they were not adequately protected against surges. Verizon should look at the way DelMarVa Power reports outages: see: Delmarva,  Put the usual World Wide Web Prefix and the COMercial domain suffix
    For god's sake, quit making the website circular. I though Yahoo was the expert in that. I never visit Verizon's website unless there are problems. I mistaking thought I could find outage information, say using my phone's browser. This time I had to purchase service from CLEAR internet to ride me through this fix.
    I know, you can't fix stupid and you can always find a better idiot. Comcast is looking more attractive.
    Compensation of or my loss I will probably never get, but maybe with the help of the attorney general I can get the billing fixed. I do have power of attorney. Now, of course, the name the Verizon Website addresses me as is not right on this forum.
    All, basically because of Verizon's unreliable network, incompetent people and the lack of maintenance of copper lines. The problem is, “We have little choice”. Currently, we need traditional land-line service to support an Emergency Response system. It's unclear whether digital phone lines support Faxes and alarm monitoring reliably.
    I'll bet that there is NO WAY to tell Verizon if a service address as special needs like Emergency Medical reporting via phone or Internet, so that priorities for repair can be done properly. Utilities have that capability. Those ares with people with oxygen generators or other medical equipment get a higher priority,

    That should not be happening.  I sympathize with both of you (you and the the person who strated this thread).  That sounds like the reason I would never want Dish. 
    I am fortunate that my service with Verizon Fios has been very reliable and that I haven't had too many issues over the years.  But don't get me started on Verizon Wireless.  I am through with doing any more business with them once my cell phone minutes run out.  I love it when they say they have done everything the could to investigate such a simple issue with running my debit card transaction wrong and blaming it on my bank, i.e. running it through as a "debit" when I choose "credit" all of a sudden now  two times in a row after 4 years of doing it right as "credit".  And now they consider the issue closed on their end when nothing has been resolved.  That's no way to treat a long time customer and I really felt treated like I was a bother to them.  It's not like I ever paid them much money for this pre-paid cell phone service that I have used infrequently but I was really mad at the way they just wrote this off and pretty much told me "too bad".  Talk about "customer non-service".  It's also very hard to track the number of minutes left on my balance.  I'm due for an upgrade anyway.  I want to switch to the I-Phone from this flip phone but never again with Verizon Wireless.  T-Mobile is way more attractive.  Verizon  Wireless is not only an entity separatedfrom Fios but it's definitely a much different animal and their customer service has really gone downhill.  When you're treated like they don't care, it's maddening.
    My customer service experience with Fios overall has been far superior to that most of the time.  My setup is simple and even though there are some people who will inevitably complain about anything just to vent, I definitely believe at least some of what is posted here.  And switching TV, phone, and Internet providers is a lot more involved than switching a cell phone provider. 

  • OS 10.4.10 Update Causing Audio Popping (AND HUM) Issues:

    OS 10.4.10 Update Causing Audio Popping (AND HUM) Issues:
    The problem on my Intel Mac mini with external Klipsch speakers (two mid-range/high and a subwoofer) is REAL obvious as the system emits a hum like a Spinal Tap amplifier turned up to #11 when 10.4.10 powers down the audio circuitry
    Then, if I play a song in iTunes, it first pops and the hum disappears right before playing.
    Quite annoying. I restored the mini from a recent backup to 10.4.9. Problem gone.
    I'm glad I test updates on the mini before applying them to my Intel iMac 24. I guess I'll just hide & watch what happens before doing any more updates.
    Here's what I sent to Apple tech support:
    Guys/Gals (OS X Engineers):
    Concerning the Snap, Crackle Pop Audio problem in the 10.4.10 update:
    Please. Just do the right thing and fix the audio.
    There is no need to power cycle the audio subsystem to save .0005 amps on the laptop line.
    And then to make your Mac mini/iMac/other desktop users have to put up with it when using AC power is ridiculous.
    Put the audio subsystem back like it was in 10.4.9 and let the laptop battery freaks looking for mini-amp savings get a "work-a-round".
    Crikey!
    iMac 2.16 Ghz Intel Core 2 Duo 2GB RAM Mac OS X (10.4.9) 20 Years of Microsoft-Induced Grey Hair
    Mac Mini 1.83 Ghz Intel Core Duo 1GB RAM   Mac OS X (10.4.9)   20 Years of Microsoft-Induced Grey Hair

    Libby,
    Backup is unable to make a restorable by Disk Utility backup. You can restore pieces of the software as outlined in my FAQ about backing up user data:
    http://www.macmaps.com/backup.html
    But to be able to restore a backup with Disk Utility, you need a cloning utility to have made the backup.
    I suggest starting a new thread here, where someone else could help you out better:
    http://discussions.apple.com/forum.jspa?forumID=752&start=0
    First off, you'll get a wider audience who may be able to solve your problem. Secondly, responses to you won't confuse the original poster with solutions that don't apply to them. And thirdly, you'll know for certain whether or not a response applies to you.

  • What is causing this problem and what are you doing to fix it? Should I just go back to Internet Explorer?

    Every single day, Firefox crashes and sometimes in the most inopertune time. This is very frustrating as some of the times I can not go back in and correct what I was not able to do due to your site crashing. What is causing this problem and what are you doing to fix it? Should I just go back to Internet Explorer?

    First, you must use a specific [[Managing profiles|profile]] for Firefox 4.0 Beta and keep your current one for Firefox 3.6 to prevent interferences between the two versions.
    For your problem:
    # [[Troubleshooting extensions and themes]] could be a cause.
    # If not 1. and if it does not happen in [[Safe Mode]], you must disable HW acceleration in Options > Advanced > General. If it solves your issue, your graphic driver is out-of-date and must be updated. Go to your computer manufacturer support site.

  • MacBook Pros Creating Fumes that causes scratchy throat and eye irritation

    Over the past several weeks when I am on my computer there is a fume (can't explain it) it causes scratchy throat and eye irritation.  I thought it was something else but I only get this when I am using my computer.

    No, that's why Apple is the best place to take it.
    Heat is the most likely reason for smells in an electronic device, keep it switched off.

  • How to use adadmin options to recompile all forms, packages and libraries.

    Dear gurus
    How we can use adadmin, and which options to recompile all forms, packages and libraries.??
    thanks in advance.
    cheers

    Dear Hsawwan
    is the following correct......
    =========================
    Enter your choice [6] : 1
    Generate Applications Files
    1. Generate message files
    2. Generate form files
    3. Generate report files
    4. Generate product JAR files
    5. Return to Main Menu
    Enter your choice [5] : 2
    AD utilities can support a maximum of 999 workers. Your
    current database configuration supports a maximum of 18 workers.
    Oracle recommends that you use between 64 and 128 workers.
    Enter the number of workers [64] :
    Please enter a number between 1 and 18.
    Enter the number of workers [64] : 5
    Your current character set is "AL32UTF8".
    Do you want to generate Oracle Forms objects
    using this character set [Yes] ?
    Do you want to regenerate Oracle Forms PL/SQL library files [Yes] ?
    Do you want to regenerate Oracle Forms menu files [Yes] ?
    Do you want to regenerate Oracle Forms executable files [Yes] ?
    Enter list of products ('all' for all products) [all] :
    ===========

  • Did recent recommended update cause incompatibility with HP printer, causing error message and printer to print blank pages?

    did recent recommended update cause incompatibility with HP printer, causing error message and printer to print blank pages?

    Why not contact HP tech support for assistance since they make the printer. While on their site you can look for an updated printer driver. Otherwise, try deleting the current installed driver, reset the print system, then reinstall your printer's driver.
    Mac OS X- How to reset the printing system

  • How can i fix this accessory is not optimized for this iphone you may experience noise caused bycellular interference and a decrease in cellular single strenght error in my new iphone4

    how can i fix this accessory is not optimized for this iphone you may experience noise caused bycellular interference and a decrease in cellular single strenght error in my new iphone4

    Hello abyjohn,
    I would be concerned too if the speaker on my iPhone was not working, and if I was getting a message about the accessory not being optimized.  I found an article with some steps to take when you are experiencing issues like this.
    iPhone: Can't hear through the receiver or speaker
    http://support.apple.com/kb/TS1630
    Thank you for using Apple Support Communities.
    Best,
    Sheila M.

Maybe you are looking for

  • Stuck with a number attached to a Microsoft accoun...

    We have a Microsoft Account and then we purchased a Skype Number. Because we have a Microsoft Account we can't use a DECT phone with Skype function because the username (which starts live isn't accepted. This means we're stuck using the PC connection

  • Mavericks Temporarily Locks my Cursor - especially in Safari & Mail.

    I have a 2009 Macbook Pro Unibody 17" 3.06 Ghz Intel Core 2 Duo with 4 Gb Memory. Everything was running fine - However, because I tended to have issues with Wireless Internet - thought the New upgrade would be better. So, I did it - Upgraded to Mac

  • Yet another HTPC thread

    Hi, there is probably a thousand posts on this forum about this topic, but I dont have time to read all of them atm due to hectic work. But I want recomendations on what software to use to build a simple mediabox. What I want it to do: I simply want

  • Packaging Xtra for Shockwave download

    A few questions regarding packaging an xtra for Shockwave: I have created a Windows scripting Xtra that is Shockwave-safe - works fine if manually placed into the local cache for downloaded xtras (...\Documents and Settings\...\Application Data\...\S

  • Error ERR-1082 Error in executing authorization scheme code.

    Hi, i imported my application from test to prod environment when run application i received the error (on login page) ORA-06550: line 13, column 19: PL/SQL: ORA-00942: table or view does not exist ORA-06550: line 12, column 13: PL/SQL: SQL Statement