After update trigger help

I am getting a trigger error when updating a table. Here is the trigger :
CREATE OR REPLACE TRIGGER "SCHEMA"."UPD_SOMETABLE" AFTER
UPDATE ON "SCHEMA"."UPD_SOMETABLE" REFERENCING OLD AS OLD NEW AS NEW FOR EACH ROW BEGIN
UPDATE "SCHEMA"."UPD_SOMETABLE" SET "DATE_UPDATED" = SYSDATE
END;
ALTER TRIGGER "SCHEMA"."UPD_SOMETABLE" ENABLE;
The error :
SQL Error: ORA-04098: trigger 'SCHEMA.UPD_SOMETABLE' is invalid and failed re-validation
04098. 00000 - "trigger '%s.%s' is invalid and failed re-validation"
*Cause:    A trigger was attempted to be retrieved for execution and was
found to be invalid. This also means that compilation/authorization
failed for the trigger.
*Action:   Options are to resolve the compilation/authorization errors,
disable the trigger, or drop the trigger.

The syntax error is the lack of a semicolon after SYSDATE. There is also an error that the table name and trigger name are the same but I'm guessing that's something you did in sanitizing the code before posting it
Once you fix the syntax error, however, you're very likely to get a runtime mutating table error.
If your intention is to set the DATE_UPDATED column to SYSDATE for each row that is updated, you'd need to use a before update trigger, you'd adjust the :new.date_updated, and you'd fix the syntax error. Something like
CREATE OR REPLACE TRIGGER trigger_name
  BEFORE UPDATE ON table_name
  FOR EACH ROW
BEGIN
  :new.date_updated := sysdate;
END;If you are trying to do something other than what I guessed above, please let us know what you are trying to get the trigger to do.
Justin

Similar Messages

  • After Update Trigger executes twice when single row is uptd thro proc

    We have the below trigger in our db. When a single record is updated using a procedure the trigger is executed twice and it inserts two records in other table.
    But when i issue an update statement using any sql client tool it is executing only once and inserts only one record in other table.
    Can any one please help me to find the reason?
    Trigger:*
    create or replace TRIGGER CX_HEADER_ESCL_T1 AFTER UPDATE OF STATUS ON CX_HEADER
    FOR EACH ROW
    DECLARE
    "b1-CTRIYJ" boolean := FALSE;
    BEGIN
    IF UPDATING('STATUS') AND(:NEW.status = 'SUCCESS') THEN
    "b1-CTRIYJ" := TRUE;
    END IF;
    IF "b1-CTRIYJ" = TRUE THEN
    INSERT
    INTO siebel.s_escl_req(req_id, created, bt_row_id, rule_id, tbl_name, created_by, group_id)
    VALUES('11111111', CURRENT_DATE, :NEW.row_id, '1-CTRIYJ', 'CX_HEADER', :NEW.last_upd_by, '1-2CU3');
    "b1-CTRIYJ" := FALSE;
    END IF;
    END;
    Procedure:
    CREATE OR REPLACE
    PROCEDURE CLOSE_BATCH
    (ChildRecordCount IN NUMBER, HeaderId IN VARCHAR2, CompletionStatus OUT VARCHAR2) AS
    CafeChildCount NUMBER;
    BEGIN
    select count(*) into CafeChildCount from SIEBEL.CX_CHILD where HEADER_ID=HeaderId;
    IF ChildRecordCount = CafeChildCount THEN
    update SIEBEL.CX_HEADER set STATUS ='SUCCESS', MODIFICATION_NUM = MODIFICATION_NUM+1 where HEADER_ID=HeaderId;
    CompletionStatus := 'SUCCESS';
    ELSE
    update SIEBEL.CX_CHILD set STATUS='FAILED' where HEADER_ID=HeaderId;
    update SIEBEL.CX_HEADER set STATUS='FAILED' where HEADER_ID=HeaderId;
    CompletionStatus := 'FAILED';
    END IF;
    commit;
    /*CompletionStatus := 'SUCCESS';*/
    EXCEPTION
    WHEN OTHERS THEN
    CompletionStatus := SQLCODE;
    rollback;
    END;

    Your problem seems not be related to the trigger restart issue I have already mentioned because you are using a AFTER UPDATE trigger and not a BEFORE UPDATE trigger:
    >
    BEFORE Triggers Fired Multiple Times
    If an UPDATE or DELETE statement detects a conflict with a concurrent UPDATE, then Oracle Database performs a transparent ROLLBACK to SAVEPOINT and restarts the update. This can occur many times before the statement completes successfully. Each time the statement is restarted, the BEFORE statement trigger is fired again. The rollback to savepoint does not undo changes to any package variables referenced in the trigger. Your package should include a counter variable to detect this situation.
    >
    If you are sure that you update a single row and that your trigger fires twice and if you can easiily reproduce the issue, I recommend that you contact Oracle Support and create a Service Request for your issue that could be an Oracle bug.

  • After Update Trigger issue

    Hello,
    I am having a problem with after update trigger. I have created an after update trigger in Oracle that would call a procedure to run an Oracle report. The problem is that when the report is run, the table is not updated yet. So the table passes old values to the report. Is there any way I can take care of this issue? How do I make sure the table is updated before running the report? I tried delaying the report by using dbms_job package. I didn't have any success with that. Probably I am doing something wrong. This is the code I used
    dbms_job.submit( job => l_job, what => 'SendPDFReport(:new.query_id,serviceid,:new.site_id);', next_date => sysdate+3/24*60 );
    Thanks
    Oracle database User

    It is working. I used the same code,but I was using parameters inside the single quote, so it was taking the parameter value as :new.query_id instead of 12345.
    I made changes
    from
    dbms_job.submit( job => l_job, what => 'SendPDF(:new.query_id,serviceid,:new.site_id);', next_date => sysdate);
    to
    dbms_job.submit( job => l_job, what => 'SendPDF('||:new.query_id||','||serviceid||','||:new.site_id||');', next_date => sysdate);
    Thanks for all your help.

  • Before update and after Update trigger

    Hi,
    I am following the below approach to overcome ORA-04091: table XXXX is mutating error.
    1. In the after update row level trigger i am capturing rowids of changed rows into a table type (of type rowid) defined in a package.
    2. In the after update statement level trigger i am using the data from the table type ( that got populated in the first step) to do my work.
    3. In the before update statement level trigger i am resetting the table type defined in the package.
    Now, can the below situation occur causing the system to fail
    1. A Update to the table occurred causing the before update statement level trigger to fire and reset the table type.
    2. After that row level after update trigger gets executed and captures the required data.
    3. Now before the after update statement level trigger gets executed a new update to the table happened ( to some other row as multiple users are using the application) causing the
    before update statement level to fire and erase the data from the table type?
    I want to know if above situation can occur or is the execution or before and after update triggers atomic?
    Thanks for helping.
    TIA
    Harsha

    A collection in a package is local to the session. And a given session can be processing one SQL statement at a time. So any concurrent updates would be happening in a different session with a different logical collection.
    You may encounter problems if your session is trying to update the same rows that other sessions are trying to update (whether via the original update statement or via the updates issued by the trigger). You could encounter performance problems because of row level locks or you could encounter deadlocks. But your session's collection won't be initialized by some other session's actions (other than DDL that replaced the package itself).
    Justin

  • Mouse buttons no longer work for iTunes playback (play/pause, next, previous) after update! Help please!

    Mouse buttons no longer work for iTunes playback (play/pause, next, previous) after update! Help please!

    When you say "mouse button", do you mean clicking on the controls in the upper left of the iTunes window or do you mean that you have special media keys on your mouse?

  • After update trigger with condition

    Dear members,
    I have a table with multiple columns on each update on these columns I have to update another table columns.
    for one column the following trigger is working fine, but there are about more than 10 columns which I have to check for.
    I want to create only one after update trigger on this table and check which column is updated and update the same column in 2nd table.
    here is the trigger:
    CREATE OR REPLACE TRIGGER ABC_RATE_UPD
    AFTER UPDATE
       OF RATE
       ON ABC_PCD 
       REFERENCING NEW AS New OLD AS Old
       FOR EACH ROW
    DECLARE
      BEGIN
        UPDATE RM_TRAN_IN
        SET RATE = :NEW.RATE
        WHERE RM_PCD_ID = :NEW.RM_PCD_ID;
       EXCEPTION
         WHEN OTHERS THEN
           -- Consider logging the error and then re-raise
           RAISE;
    END ABC_RATE_UPD; here is my if condition, (edited)
    if :NEW.RATE != :OLD.RATE then
            UPDATE ABC_TRAN_IN
            SET RATE = :NEW.RATE
            WHERE ABC_PCD_ID = :NEW.ABC_PCD_ID;
        ELSIF :NEW.PACK_UNIT_ID != :OLD.PACK_UNIT_ID then
            UPDATE ABC_TRAN_IN
            SET PACK_UNIT_ID = :NEW.PACK_UNIT_ID
            WHERE ABC_PCD_ID = :NEW.ABC_PCD_ID;
    END IF;
        Its working good, is this a good approach, to the solution?
    regards:
    Edited by: user2040934 on Dec 29, 2012 3:22 PM

    In your trigger if you update more than one column at a time will it update all the updated columns in the other table properly?
    Can't you code something like this
    CREATE OR REPLACE TRIGGER ABC_RATE_UPD
    AFTER UPDATE
       OF col1,col2 , col3
       ON ABC_PCD 
       REFERENCING NEW AS New OLD AS Old
       FOR EACH ROW
    DECLARE
      BEGIN
    if updating ('col1') then
        UPDATE RM_TRAN_IN
        SET col1 = :NEW.col1
        WHERE :old.id = :NEW.id;
      end if;
      if updating ('col2') then
        UPDATE RM_TRAN_IN
        SET col2 = :NEW.col2
        WHERE :old.id = :NEW.id;
      end if;
       if updating ('col3') then
        UPDATE RM_TRAN_IN
        SET col3 = :NEW.col3
        WHERE :old.id = :NEW.id;
      end if;
       EXCEPTION
         WHEN OTHERS THEN
           -- Consider logging the error and then re-raise
           RAISE;
    END ABC_RATE_UPD;

  • How can I access the same table within AFTER UPDATE trigger?  mutating

    I'm trying to have processing done within a before or after update trigger.
    reduced what I want to do down to a select within the trigger.
    create or replace TRIGGER "AU_TABLE_A"
    after update on "TABLE_A"
    for each row
    declare
    l_res_status NUMBER:=0;
    l_count NUMBER:=0;
    begin
    SELECT COUNT(*) INTO l_count
    FROM TABLE_A
    WHERE ID = :NEW.ID AND STATUS_ID = 9;
    end;
    Error in mru internal routine: ORA-20001: Error in MRU: row= 1,
         ORA-04091: table TABLE_A is mutating, trigger/function may not see it
         ORA-06512: at "BHRS.BU_MR_RES_APPR", line 13
         ORA-04088: error during execution of trigger 'BHRS.BU_MR_RES_APPR',
         update TABLE_A set "ID" = :b1, "STATUS_ID" = :b2, "COMMENTS" = :b3
         where "ID" = :p_pk_col
    IS THERE A WAY AROUND IT?
    Thank you, Bill

    The very common approach to workaround mutating table problem is passing the table state through the package variables. I.e. - you create a package with one global variable ( say l_count). Then you need
    1) a trigger before update for statement - here you counts your rows and set the package variable accordingly.
    2) a trigger after update for each row - here you read the rowcount from a package variable and do your actual work
    3) a trigger after update for statement - here you reset your package variable.
    This approach uses the fact, that mutating table problem occurs only with triggers for each row and the order of execution of different trigger types.
    However, counting records in every update statement (whereas not so worse although as doing this for each row within an update) may consume a lot of resources, so, possibly , you can rethink your business needs/approach.
    Best regards
    Maxim

  • After Update Trigger not triggering for first update

    Hi All,
    I have written a Trigger on AP_SUPPLIERS table to update AP_SUPPLIER_SITES_ALL when payment priority gets updated on AP_SUPPLIERS table. Trigger calls a pragma autonomous procedure after update happens, and updates sites table. We are on R12 (12.1.3) with  DB 11.2.0.3.0
    Somehow this is not working for the first update, after that for every update it is working. Any idea why this might be happening?
    Trigger Code: 
    CREATE OR REPLACE TRIGGER XX_AP_SUPPLIER_SIT_UPD_SYNC
    AFTER UPDATE
    ON AP.AP_SUPPLIERS
    REFERENCING NEW AS NEW OLD AS OLD
    FOR EACH ROW
    DECLARE
    l_vendor_id     NUMBER;
    l_paym_priority NUMBER;
    BEGIN
       XX_AP_SUPSITE_UPDATE(:NEW.PAYMENT_PRIORITY, :NEW.VENDOR_ID);
       EXCEPTION
         WHEN OTHERS THEN
           RAISE;
    END XX_AP_SUPPLIER_SIT_UPD_SYNC;
    Procedure Code:
    CREATE OR REPLACE PROCEDURE APPS.XX_AP_SUPSITE_UPDATE (p_payment_priority  IN  NUMBER,p_vendor_id IN NUMBER) AS
      PRAGMA AUTONOMOUS_TRANSACTION;
      ex_custom EXCEPTION;
      PRAGMA EXCEPTION_INIT( ex_custom, -20001 ); 
    BEGIN
      UPDATE AP_SUPPLIER_SITES_ALL
      SET PAYMENT_PRIORITY =p_payment_priority
      WHERE VENDOR_ID = p_vendor_id;
      COMMIT;
    EXCEPTION 
    WHEN OTHERS THEN
        raise_application_error( -20001, 'Error while updating payment priority on Site '||SQLERRM );
    END XX_AP_SUPSITE_UPDATE;

    Thanks for your replies Saubhik/VT,
    now my trigger is compiled. but is not triggering. pl help me to resolve .....
    create or replace
    TRIGGER AUDIT_DEV.trg2
    AFTER DELETE OR UPDATE OF EMP_STATUS ON AUDIT_DEV.AUDIT_PERSONS
    FOR EACH ROW
    declare
    OSUSER varchar2(30);
         MACHINE varchar2(30);
         logon_time date;
    db_user varchar2(30);
    USERNAME VARCHAR2(30);
    EMP_USER_MODIFIED AUDIT_PERSONS.EMP_USER_MODIFIED%TYPE;
         EMP_DATE_MODIFIED AUDIT_PERSONS.EMP_DATE_MODIFIED%TYPE;
         EMP_SK AUDIT_PERSONS.EMP_SK%TYPE;
         EMP_ID AUDIT_PERSONS.EMP_ID%TYPE;
         EMP_NAME AUDIT_PERSONS.EMP_NAME%TYPE;
    EMP_RESIGNATION_DATE AUDIT_PERSONS.EMP_RESIGNATION_DATE%TYPE;
    BEGIN
    select     username,osuser,machine,logon_time into db_user,osuser,machine,logon_time from v$session where sid=(select sid from v$mystat where rownum=1);
    INSERT INTO AUDIT_DEV.AUDIT_PERSONS_LOG (EMP_USER_MODIFIED,EMP_DATE_MODIFIED,EMP_SK,EMP_ID,EMP_NAME,EMP_RESIGNATION_DATE,EMP_STATUS_OLD,EMP_STATUS_NEW,osuser,db_user,machine)
    VALUES(EMP_USER_MODIFIED,EMP_DATE_MODIFIED,EMP_SK,EMP_ID,EMP_NAME,EMP_RESIGNATION_DATE,:old.EMP_status,:new.EMP_status,osuser,db_user,machine );
    COMMIT;
    END;
    09:59:06 AUDIT_DEV@dev>UPDATE AUDIT_DEV.AUDIT_PERSONS SET EMP_STATUS='TEST' WHERE EMP_ID='4234';
    EMP_STATUS
    TEST
    1 row selected.
    Elapsed: 00:00:00.01
    10:00:03 AUDIT_DEV@dev>commit;
    Commit complete.
    Elapsed: 00:00:00.01
    10:00:17 AUDIT_DEV@dev>select * from AUDIT_persons_log;
    no rows selected
    Elapsed: 00:00:00.00
    10:00:17 AUDIT_DEV@dev>
    Edited by: Abk on Nov 4, 2010 10:42 AM

  • After update trigger

    Hi,
    We have one table which is copied to another schema and added some new columns to it,
    SQL>desc Source.content
    Name                                      Null?    Type
    ID                                        NOT NULL NUMBER(9)
    RESOURCEID                                NOT NULL NUMBER(9)
    APPOINTMENTDATE                           NOT NULL DATE
    STARTTIME                                          DATE
    ENDTIME                                            DATE
    STATUS                                             VARCHAR2(20)
    MASTERRESOURCEID                                   NUMBER(9)
    REFERENCEID                               NOT NULL NUMBER(9)
    PROPREF                                            NUMBER(9)
    SQL> desc target.content
    Name                                      Null?    Type
    ID                                        NOT NULL NUMBER(9)
    RESOURCEID                                NOT NULL NUMBER(9)
    APPOINTMENTDATE                           NOT NULL DATE
    STARTTIME                                          DATE
    ENDTIME                                            DATE
    STATUS                                             VARCHAR2(20)
    MASTERRESOURCEID                                   NUMBER(9)
    REFERENCEID                               NOT NULL NUMBER(9)
    PROPREF                                            NUMBER(9)
    OLD_STARTDATE                                      DATE 
    OLD_STARTTIME                                      DATE
    OLD_RESOURCEID                                     NUMBER(9)
    OLD_MASTERRESOURCEID                               NUMBER(9)
    LAST_UPDATE_DATE                                   DATE
    ACTION_FLAG                                        VARCHAR2(20)I have created one "After Insert" trigger on the source.content table, to insert the data to target.content table after each Insert transaction happened on Source.content, this trigger is working fine and the target.content table is getting all the new rows in it as well.
    Now I want to implement the same thing in Updates as well, after any update on source.content table, it should be reflected in target.content table along with the new set of columns should have the old values.
    •     OLD_STARTDATE: Old APPOINTMENTDATE of the record if updated.
    •     OLD_STARTTIME: Old STARTTIME of the record if updated.
    •     OLD_ RESOURCEID: Old RESOURCEID of the record if updated.
    •     OLD_MASTERRESOURCEID: Old MASTERRESOURCEID of the record if updated.
    •     LAST_UPDATE_DATE: This will be the timestamp of the insert/update transaction to this table
    •     ACTION_FLAG:
    NEW: If this is a new appointment in the system
    UPDATE: If an existing appointment is being updated in the system
    Kindly help me in writing this trigger,
    Thanks in advance.

    user-1221 wrote:
    Hi,
    We have one table which is copied to another schema and added some new columns to it,
    SQL>desc Source.content
    Name                                      Null?    Type
    ID                                        NOT NULL NUMBER(9)
    RESOURCEID                                NOT NULL NUMBER(9)
    APPOINTMENTDATE                           NOT NULL DATE
    STARTTIME                                          DATE
    ENDTIME                                            DATE
    STATUS                                             VARCHAR2(20)
    MASTERRESOURCEID                                   NUMBER(9)
    REFERENCEID                               NOT NULL NUMBER(9)
    PROPREF                                            NUMBER(9)
    SQL> desc target.content
    Name                                      Null?    Type
    ID                                        NOT NULL NUMBER(9)
    RESOURCEID                                NOT NULL NUMBER(9)
    APPOINTMENTDATE                           NOT NULL DATE
    STARTTIME                                          DATE
    ENDTIME                                            DATE
    STATUS                                             VARCHAR2(20)
    MASTERRESOURCEID                                   NUMBER(9)
    REFERENCEID                               NOT NULL NUMBER(9)
    PROPREF                                            NUMBER(9)
    OLD_STARTDATE                                      DATE 
    OLD_STARTTIME                                      DATE
    OLD_RESOURCEID                                     NUMBER(9)
    OLD_MASTERRESOURCEID                               NUMBER(9)
    LAST_UPDATE_DATE                                   DATE
    ACTION_FLAG                                        VARCHAR2(20)I have created one "After Insert" trigger on the source.content table, to insert the data to target.content table after each Insert transaction happened on Source.content, this trigger is working fine and the target.content table is getting all the new rows in it as well.
    so please post trigger source code

  • After update trigger firing on after insert

    Hi All,
    I am using oracle database version 8i.
    I have one database trigger
    create or replace trigger mna_post_update
    after update
    on mobile_number_actions
    for each row
    when (new.mna_status = 'P'
    and new.mna_type in ('I','C','R','D','M','T','A','N','O'))
    begin
    insert into test1234 values (:new.mna_mcp_serial_no,:old.mna_mcp_serial_no);
    end;
    The problem is that it is giving the same value for :new.mna_mcp_serial_no and :old.mna_mcp_serial_no. And also in my table insertion is taken place not updates I have no idea why this trigger is firing on insert?
    Could any one please tell me how is this possible?
    Please help !!

    Are you sure you don't have a similar trigger that is firing on inserts (perhaps you were debugging this code and inadvertently created one that fired on inserts or on inserts & updates)?
    Assuming you are updating MNS_MCP_SERIAL_NO, you should be getting different values in test1234. If you are not, can you post a brief test case (including DDL to create the objects) that shows the problem(s) you're seeing?
    Justin

  • Itunes not working after update..help please

    I updated my itunes to 10.4 and since then it will not connect to the itunes store and synching is not working either.  I've emailed Apple and tried their suggestions with no luck.  There was a recent post on here in June with success and it was something to do with a proxy server??? Can someone help me reinstate my itunes please...i miss it!!!

    Disconnect all devices from your computer.  If you have not already done so after updating iTunes, repair permissions and restart your computer.  If this does not work, b oot up from your install DVD and run "Repair Disk" from the Utility menu.

  • Apple application not open after update..help

    after update, i can't open apple application mail, safari, app store, even About this mac..
    this is message from the console:
    Mail:
    11/23/14 10:20:05.317 AM Mail[3029]: Unable to load nib file: MainMenu, exiting
    11/23/14 10:20:05.320 AM com.apple.xpc.launchd[1]: (com.apple.mail.58820[3029]) Service exited with abnormal code: 1
    Safari:
    11/23/14 10:21:01.209 AM Safari[3090]: Unable to load nib file: MainMenu, exiting
    11/23/14 10:21:01.211 AM com.apple.xpc.launchd[1]: (com.apple.Safari.7700[3090]) Service exited with abnormal code: 1
    App store
    11/23/14 10:22:35.529 AM App Store[3189]: Unable to load nib file: MainMenu, exiting

    You ran a defective third-party "utility" such as "CleanMyMac" or "MacCleanse" that purports to "clean up" "junk" files. What it really does is to corrupt the operating system and many applications.   
    The first thing you need to do is remove that software according to the developer's instructions. Never install it, or anything like it, again. Then see below. If you use any iWork applications, you may need to delete them and redownload them from the App Store.
    If you don't already have a current backup, back up all data, then reinstall the OS.* You don't need to erase the startup volume, and you won't need the backup unless something goes wrong. If the system was upgraded from an older version of OS X, you may need the Apple ID and password you used.
    If you use FileVault 2, then before running the Installer you must launch Disk Utility and select the icon of the FileVault startup volume ("Macintosh HD," unless you gave it a different name.) It will be nested below another icon with the same name. Click the Unlock button in the toolbar and enter your login password when prompted. Then quit Disk Utility to be returned to the main Recovery screen.
    There are ways to back up a computer that isn't fully functional. Ask if you need guidance.
    If you installed the Java runtime distributed by Apple and still need it, you'll have to reinstall it. The same goes for Xcode. All other data will be preserved.
    *The linked support article refers to OS X 10.10 ("Yosemite"), but the procedure is the same for OS X 10.7 ("Lion") and later.

  • My phone won't power up after updating please help

    My phone will not power up after updating...it's been three hours...please help

    Hey laurelletoo,
    Welcome to Apple Support Communities.
    From what I gather, there’s an issue turning your iPhone 5 on after updating it. Take a look at the article below and try running through the suggestions that it provides.
    If your iPhone, iPad, or iPod touch doesn't respond or doesn't turn on - Apple Support
    Take care,
    -Jason

  • Grey Screen after update - need help

    Hi
    My friend just called me - her macbook is stuck on the grey screen with apple logo - after she done the security updates and restarted.
    She can boot into Windows XP (bootcamp) without any issues.
    I'm going over there tomorow to help her out and was wondering if someone could give me a little guidance as to what needs to be done.
    I guess I can try booting off of the instalation disc and reparing permissions, but after that I'm pretty much lost. Any help is greatly appreciated
    Cheers

    Hello,
    I've had this problem twice, and each occurred after a security update.
    What helped me was the following:
    -Take out your powercord and your battery. Press the power button for about 5 seconds.
    -Then, insert your battery and powercord, start the computer, and hold down AppleCTRL+PR.
    From what I understand, one of these two steps resets the power management system on the macbook.
    After you perform these two steps, your computer may still hang at the grey screen with the apple logo. However! Let it hang for about 5-10 minutes and it will automatically restart, and boot properly.
    You can also try calling Apple support on your friend's behalf ... they were more than helpful.
    Blackbook Core Duo   Mac OS X (10.4.9)  

  • 5g 30gig iPod not working after update, Please Help!

    I have a 5th gen 30gig iPod and a yesterday I tried to update it. During the update after it shut itself off and started back up the updater froze around 20%. After about two hours of waiting I forced the updater to quit (restarted it with menu/select) and then tried to turn it back on to no avail. So right now the iPod is dead.
    I've tried the whole hold menu/select to reset (even for up to a min) then I did the flip hold on and off and try again method. I also tried with the iPod plugged into my PC and my Mac. I also tried using the AC adapter. All attempts resulted in failure. Because it stopped working after the update I'm confident that it isn't the battery or that the iPod is physically damaged and that this is just a software issue.
    Any help would be greatly appreciated. I've had the iPod for a little over a year and therefore have no warranty for it.

    I am having the same exact problem as you, it just won't boot up. The apple logo lights up on the screen for a little while and tried to boot up, then the screen goes black, and it starts over, the ipod trying,(and failing)to boot up. This goes on like this until the battery is dead. I'll repost if I figure out how to fix this.

Maybe you are looking for

  • Adobe CC Packages - 1603 MSI Errors

    I have several installations of Adobe Creative Cloud applications to install at a client site. (Photoshop \ Dreamweaver \ Flash \ Illustrator etc....) Each Adobe CC application has been packaged individually with the Adobe CC packager tool as some ar

  • How to remove duplicate entries from Settings General iTunes Wi-Fi Sync?

    On my iPhone under Settings > General > iTunes Wi-Fi Sync there is a duplicate entry for my Mac. One is active, the other one shows options greyed out, as if it can't see the Mac on the network (although it's the same name). Is there a way to manuall

  • How to handle DEPB in SAP in case of imports

    Dear all, I need some help about how to handle DEPB licence in case of imports. My client is a trading company. It Imports goods. for the payment of custom duty it purchase DEPB licence from third party and do the clearance against DEPB So when they

  • Sculpture

    Hi, Not sure if this is a new bug in Logic Pro 9.0.1, but I can't seen to turn on the animation by right-clicking on the green string in Sculpture. (A friend who has the Logic Pro 9.0.1 update also has the same problem too). Can anybody else confirm

  • Problem installing PageMaker postscript driver on win 7 system

    Hi, Recently upgraded to a new Windows 7 system and after installing PageMaker 7.0, I noticed that there was no pdf printer in my printer selections.  I attempted to install postcript drivers, but the installation could not be completed.  There was n