Pre update questions

So I've read many of the issues that people are having after their 2.2 update and I am trying to clean up my phone prior to the update.  I removed many old apps and cleared the cache on all of them.  While looking at the task killer I saw a few that I wasn't sure what they were and wondered if anyone could provide some insight as to what they are.
com.google.android.partnersetup
com.google.android.apps.uploader
com.andriod.providers.drm
com.google.android.feedback

TheNutz wrote:
whats the deal with the task killer... its always been recommended, now after 2.2 everyone says to get rid of it,  whats it doing?
Not really. It's never been recommended.
This ain't Windows.  
Good reading about Android OS and task killers:
Task Killers... The Answer from Google & Developers.
FWIW, when I first got my Droid, the first app I downloaded was ATK.
Since I read up on it, and eventually uninstalled ATK, my battery life has improved dramatically.
All Task Killers do is get you into an endless loop of app shutdowns and restarts.  THAT's what killing your battery.
Seriously, leave the OS to do its job, it's pretty good at it.

Similar Messages

  • Can we make things more Useful...? not an update question.

    Ok well i said its not an update question.. well it kinda is.
    today is friday.. the release date of the new iphone 3g.. great.. i love my iphone.. im goin to wait a week or so before i go ahead and buy the new phone for sake of bugs and lil tweaks..
    ok so today i dont know what drove me to update my iphone.. and it got totally bricked for 3 hours.. until i finnally got thru using the "clicking" solution... well i understand the server is overwelmed.. and everyone is updatin and the same time.. but there was a prompt askin if i wanted to update and get the latest iphone software and the latest version of itunes... good.. lets all download it.. most of us it will take 3-6 hours for the iphone to update because the whole problem with the overload on apples side...
    ..BUT...
    what if we cant wait that long?
    i SYNC'd my iphone before the update.. well everyone does... itunes prompts you to do so.. WHY.. emphasizing on WHY... if we synced the phone to our computer systems.. and a problem like for example is goin forth now with this update... CAN'T we just restore our iphones back to how it was before we even tried updating it?
    IT did SAVE to our computers right?
    why cant we just double click here, right click right there..
    and BOOM..
    back for pre 2.0 days.. well until after the storm has passedt..
    why cant we have that option in itunes... heck why not?
    hey doctors will always have beepers to get in contact with.. so hey the whole life death situation thing means it isnt that that THAT bad.. but hey everyone needs there cell phone and people use cell phones.. this one in particular for business.. so maybe we could have avoided some confrontation to some conference calls and clients.. etc... well regardless.. as easy for the update to have made the iphone in a way "bricked".. i think it should have been easy to restore to pre 2.0 .
    windows has that option in its system restore feature...
    download something that messes up your system? virus? update that doesnt work well with the OS?.. restore to an earlier date is an option in the control panel..
    i think itunes need something like that with the iphone version..
    last but not least..
    i love my iphone :-D

    uppers

  • Unable to insert the record to table using pre-insert & pre-update trigger

    Hi All,
    I have tried to insert and update the backend table using the pre-update and pre-insert triggers. But its not working for me. Please find below the code which i have used in the triggers.
    Pre-insert trigger:
    DECLARE
    v_cust_num_cnt NUMBER;
    BEGIN
              SELECT      COUNT(customer_number)
              INTO      v_cust_num_cnt
              FROM cmw_bc_mobile_number
              WHERE substr(customer_number,1,15)=substr(:BLOCKNAME.CUSTOMER_NUMBER,1,15);
              IF      v_cust_num_cnt = 0 THEN
                        INSERT INTO cmw_bc_mobile_number (CUSTOMER_NUMBER
                                                                                                   ,MOBILE_NUMBER
    ,CREATION_DATE
    VALUES
    (substr(:BLOCKNAME.CUSTOMER_NUMBER,1,15)
    ,:BLOCKNAME.MOBILE_NUMBER
    ,SYSDATE
    COMMIT;                                                                                                    
    END IF;          
    END;
    PRE_UPDATE TRIGGER:
    BEGIN
              IF :SYSTEM.RECORD_STATUS = 'CHANGED' THEN
              UPDATE apps.cmw_bc_mobile_number
         SET mobile_number = :BLOCKNAME.MOBILE_NUMBER,
         creation_date = SYSDATE
              WHERE customer_number=substr(:BLOCKNAME.CUSTOMER_NUMBER,1,15);
              COMMIT;
         END IF;
    EXCEPTION
              WHEN OTHERS THEN
                   NULL;     
    END;
    Please let someone assist in gettting it resolved.
    Regards,
    Raj.

    Just use MESSAGE (we don't know what fnd_message is, that is some custom code):
    message('v_cust_num_cnt='||v_cust_num_cnt);
    IF v_cust_num_cnt = 0 THEN
      message('Now inserting...');
      INSERT INTO cmw_bc_mobile_number (CUSTOMER_NUMBER... 
    else
      message('Nothing to insert');
    end if;

  • Insert in Pre-Update...please help...

    hii all...
    i have master/detail block form....
    Table - T_MAST (MASTER)
    M_CODE
    M_NO
    M_DATE
    M_PARTY
    M_DISC_AMT
    M_CHRGS
    Table - T_DET (DETAIL)
    D_MCODE
    D_MNO
    D_ITEM
    D_QTY
    D_PRICE
    D_AMT (Non-DB Formula item, calculates D_QTY * D_PRICE)
    D_TOT_AMT (Non-DB Summary item, sums D_AMT)
    D_NET_AMT (Non-DB Formula item, D_TOT_AMT-M_DISC_AMT+M_CHRGS)
    on saving, in pre-insert i want to save some columns from T_MAST & T_DET blocks
    into another table T_ACNT;
    Table - T_ACNT
    ACNT_CODE
    ACNT_NO
    ACNT_DATE
    ACNT_PARTY
    ACNT_DC
    ACNT_AMT
    I gave the follwing 2 inserts...in
    PRE-INSERT (Header Block)
    INSERT INTO T_ACNT VALUES (:M_CODE,
    :M_NO,
    :M_DATE,
    :M_PARTY,
    'C',:D_NET_AMT);
    INSERT INTO T_ACNT VALUES (:M_CODE,
    :M_NO,
    :M_DATE,
    :GLOBAL.M_CASH_CODE,
    'D',:D_NET_AMT);
    Pre-Insert have no issues...
    but the problem i am facing is, when i update record after any change..
    in PRE-UPDATE, first i am Deleting the record already existing in T_ACNT table,
    matching with the current header record and then Insert record with new values..
    PRE-UPDATE (Detail Block)
    DELETE FROM ACNT_TXN
    WHERE ACNT_CODE = :M_CODE
    AND ACNT_NO = :M_NO
    INSERT INTO T_ACNT VALUES (:M_CODE,
    :M_NO,
    :M_DATE,
    :M_PARTY,
    'C',:D_NET_AMT);
    INSERT INTO T_ACNT VALUES (:M_CODE,
    :M_NO,
    :M_DATE,
    :GLOBAL.M_CASH_CODE,
    'D',:D_NET_AMT);
    Modifying 1 record at a time, either master,detail or both has no problem,
    but if i update more than 1 header records or updating combination of both header-detail records.
    doesn't insert new records in ACNT_TXN correctly....
    for example, with the followinf data;
    M_CODE       M_NO M_DATE    M_PART M_DISC_AMT    M_CHRGS
    SAL            24 15-JUN-10 C1006                      1
    SAL            25 23-JUN-10 C1003           2
    D_MCOD      D_MNO D_ITEM               D_QTY    D_PRICE
    SAL            24 987654321                2          2
    SAL            25 P0140000014              2          4
    Initially PRE-INSERT result goes well.. in ACNT_TXN...no issues
    ACN    ACNT_NO ACNT_DATE ACNT_C A   ACNT_AMT
    SAL         24 15-JUN-10 C1006  D          5
    SAL         24 15-JUN-10 5500   C          5
    SAL         25 23-JUN-10 5500   C          6
    SAL         25 23-JUN-10 C1003  D          6lets assume that i change header field of record with M_No. 24 and 25
    and remaining on record no. 25 i press save button...
    what i notice is, Form start to commit the changes from the first changed record,,
    which in my case from header record No. 24...and thats fine...
    since the record is changed, so pre-update gets fired.
    First, it deletes the record from ACNT_TXN with matching header record no.24 but...
    when re-Inserting in ACNT_TXN, it is replacing values of record no.24 with the values current record no 25...!
    i put a message trapping the value of D_NET_AMT before Delete and found this...
    kindly if any one help me correct my logic n approach...
    TY..

    hello,
    No need to delete the record from the table ACNT_TXN.
    Just check it if record is exist then update it.
    Do you have any contraints in your detail table?
    i assumed you have this contrainst field :
    as primary or unique :-
    ACNT_CODE
    ACNT_NO
    ACNT_DC
    if no constraint then just make function to check if exist then update the record.
    since you have the code on your forms then i will suggest this code if it suite to your need.
    Ok. can you just try it again by pre-update under dtl_blk.
    begin
    INSERT INTO T_ACNT VALUES (:M_CODE,
    :M_NO,
    :M_DATE,
    :M_PARTY,
    'C',
    :D_NET_AMT);
    exception when duP_val_on_index then
    begin
    update T_ACNT
    set ACNT_AMT = nvl(:D_NET_AMT,0)
    where ACNT_CODE = :M_CODE
         ACNT_NO = :M_NO
    ACNT_DC = 'C';
    end;
    end;
    OR-
    begin
    update T_ACNT
    set ACNT_AMT = nvl(:D_NET_AMT,0)
    where ACNT_CODE = :M_CODE
         ACNT_NO = :M_NO
    ACNT_DC = 'C';
    IF SQL%NOTFOUND THEN
    begin
    INSERT INTO T_ACNT VALUES (:M_CODE,
              :M_NO,
              :M_DATE,
              :M_PARTY,
              'C',
              :D_NET_AMT);
    end;
    end if;
    end;
    begin
    INSERT INTO T_ACNT VALUES (:M_CODE,
    :M_NO,
    :M_DATE,
    :GLOBAL.M_CASH_CODE,
    'D',:D_NET_AMT);
    exception when duP_val_on_index then
    begin
    update T_ACNT
    set ACNT_AMT = nvl(:D_NET_AMT,0)
    where ACNT_CODE = :M_CODE
         ACNT_NO = :M_NO
    ACNT_DC = 'D';
    end;
    end;
    OR-
    begin
    update T_ACNT
    set ACNT_AMT = nvl(:D_NET_AMT,0)
    where ACNT_CODE = :M_CODE
         ACNT_NO = :M_NO
    ACNT_DC = 'D';
    IF SQL%NOTFOUND THEN
    begin
    INSERT INTO T_ACNT VALUES (:M_CODE,
              :M_NO,
              :M_DATE,
              :M_PARTY,
              'D',
              :D_NET_AMT);
    end;
    end if;
    end;
    hope will help you...
    Note: this code i didnt try it, maybe you need some review but i give the idea.
    charles

  • OIM 10G recon event is not affected by pre-update handler

    Hi.
    im trying to modify a value from trusted source before the user is modified.
    but the reconciliation message is processed and updates the user data before the pre-update handler is triggered
    How can I trigger the pre-update handler before the recon event updates the user data?
    Thank you.

    HI

  • Can we send pre-test score (Pre-test question slide) and post test score (Question slide) both in lms from captivate?

    can we send pre-test score (Pre-test question slide) and post test score (Question slide) both in lms from captivate?

    Pretest score normally is not sent to the LMS. However it is stored in a system variable, you could use JS to send it.

  • Update record in Pre-update

    Hi all,
    I got the master-detail block, where only certain field in child block for which are allow to updated. Hence, i have the update statement in pre-update trigger.
    UPDATE OT_PO_ITEM_DEL SET PID_UPD_UID = 'BC'
    WHERE PID_PI_SYS_ID = :OT_PO_ITEM.PI_SYS_ID;
    :ot_po_item[ block name].pi_sys_id[FK to pid_pi_sys_id]
    I am not sure why the above simple statement does not work ? But if I click on the default save button in form. The records being saved however the field i am try to update is not visible from user and I need to pass the default paramenter via pre-update which is without user's entry.
    Please helps. Thanks.

    May be that:
    loop
       v_name := :system.cursor_item;     
       v_r := name_in(v_name);     
       -- you check, you have name item and value
       exit when replace(v_name, 'BLOCK1.', '') = Get_Block_property('BLOCK', Last_Item);     
       next_item; 
    end loop;    

  • Setting required property on pre-update trigger

    i have set required property of 3 items on pre-update trigger of a block such that if user updates a listbox and if the updated value is 'P' for perentage then the user must fill all the 3 fields but even after setting the required property the record is saved if the fields are empty. the trigger is firing & everything looks ok. the portion of code i've used is:
    BEGIN
    IF :ROUTING_ENGINE_RULES.DISTRIBUTION_TYPE = 'P' THEN
    PAUSE; /*TO CHECK ENTRY ON TRIGGER*/
    SET_ITEM_PROPERTY('carrier_cd_percent1',UPDATE_ALLOWED,PROPERTY_true);
         ('carrier_cd3_percent',UPDATE_ALLOWED,PROPERTY_true);
    I'VE SET OTHER 2 FIELDS SIMILARLY
         

    put your code in when-listvalue-changed trigger for that 'P' trigger.
    to put it in existng place is still too late.

  • Updated question: Both Mac & PC links possible??

    I apologize right away for posting a new topic with my updated question. But I realized I didn't phrase it right to get any help.
    The question is - is it possible make both Mac links and PC links available on one disk. They would be in separate chapters. (i.e., directing Mac users to this page and Pc to another) Anyone tried this.
    thanks.

    hi jujubes
    I just realised I misled you in my replay to your earlier post due to my poor writing skills
    to clarify:
    I suggest using Intellidisc to create the links for playback on a PC
    you would also use DVD@Access within DVDSP to create the links for Mac playback
    the links will work when played back on both mac and PC from this single disc
    the Intellidisc website gives all this in a tutorial at:
    wwwintellidisc.com

  • Software Update Questions

    Hi everybody,
    I'm still relatively green in the computer world, so, I'm sure these questions are way to "rookie" for you. Nevertheless; here they are.
    Software Update Questions:
    1. What is J2SE 5.0 Release 4, version 4.0 (39.3 MB) and, is it necessary to install?
    2. What is X11 Update 2006, version 1.1.2 (51.0 MB) and, is it necessary to install?
    In case you need to know, I have Mac OS X (10.4.8) with a Verizon FIOS connection.
    Thanks,
    Wayhun
    iMac   Mac OS X (10.4.8)  

    J2SE 5.0 is the latest version of Java. Mac OS X originally ships with Java 1.4 and this gives you the opportunity to upgrade to the latest version.
    It's an optional upgrade since there are many changes between Java 1.4 and java 5, so some people might prefer to hold off until they've verified their Java apps work with the new version. For most people, though, it isn't an issue.
    X11 (also known as XWindows) is a standard GUI interface for Unix systems. If you're using X11 you'd probably alredy know about it and therefore wouldn't be asking this question. It's not going to cause any problems if you update it, but it won't offer any advantage unless you're running X11-based applications.

  • Pre Sales Questions CS4

    I want to ask a pre-sales question on Premier CS4. How do I do that. I cant
    see anything on the web, technical support only allows registered software.
    Also, does the student version of the above include watermarks on the image output? I am a teacher and have as student son at unversity. What is the cheapest option for Premier CS4 WITHOUT watermarks
    Thanks

    The
    education version does not watermark output.
    Cheers
    Eddie
    PremiereProPedia   (
    RSS feed)
    - Over 300 frequently answered questions
    - Over 250 free tutorials
    - Maintained by editors like
    you
    Forum FAQ

  • Pre-Sales Questions: RV220W & SRP 547W

    Hi,
    Couple of pre-sales questions if you don't mind:
    1. Does the RV220W Wireless-N Network Security Firewall allow RADIUS authentication of wireless clients on the WLAN?
    2.  Does the Cisco SRP 547W Wireless Router allow wireless clients to tunnel into the WLAN using VPN?
    Thanks very much.

    Yes it supports all the functionality. For more detail you can see the below link
    http://www.cisco.com/c/en/us/products/collateral/routers/rv220w-wireless-network-security-firewall/data_sheet_c78-630461.html

  • Pre-sales Questions

    What is the best way to contact Apple and get answers to pre-sale questions? Sometimes these forums work well, other times there is no response. When there is a response, is there a way one can determine it the responder is a representative from Apple?
    Is there an 800 number that one can call for pre-sales questions? Unfortunately the closest AppleStore is 60 miles from my home.

    1159/3605
    Hi jbmth,
    Responses you get here are from other users that volunteer to share their Apple knowledge.
    The quality is probably the best possible, since every time something goes wrong in one's advice, someone else would quickly jump in and offer corrections/additions.
    Determine representatives from Apple:
    They have a white apple in front of their names. You won't see an answer from an Apple employee more than once or twice a year here really.
    This is most a user-to-user forum.
    What kind of info do you need?
    Generally speaking, speculation about new products is quite very unwelcome by Apple standards.
    Here in the Discussions, it is simply forbidden by the Terms of Use.
    I hope this helps.
    Axl

  • Nov 2011 PRU = "Zone Pre-Update Actions"....;(

    ZCM10.3.3 Server
    Configuration | System Updates | Available System Updates
    "Nov 2011 PRU" . Downloaded - OK.
    After: "Action" | "Deploy PRU Now" wait 10 min... and see:
    Status = "Zone Pre-Update Actions"
    Importance= "Moderate"..
    Why this ??
    When it will be installed on the server?
    Serg

    Originally Posted by skoltogyan
    ZCM10.3.3 Server
    Configuration | System Updates | Available System Updates
    "Nov 2011 PRU" . Downloaded - OK.
    After: "Action" | "Deploy PRU Now" wait 10 min... and see:
    Status = "Zone Pre-Update Actions"
    Importance= "Moderate"..
    Why this ??
    When it will be installed on the server?
    Serg
    Already all was installed. It was necessary to Wait!

  • Pre-update prep n95

    i'm getting ready to update my phone tomorrow and it got me thinking about the software on my phone.
    I have a lot of stuff downloaded and installed.
    Will a backup with the pc suite will keep all my installed apps?
    What kinda pre-update prep are you guys doing.

    Thanks for pointing out that, my mistake. Yes, there will be no NO_DATA_FOUND exception raised instead have to use SQL%ROWCOUNT.
    Here is the updated code.
    IF  :product.SHORT ='SHORT' THEN
      Begin
        Update product
         set prod_name = :product.prod_name||'-'||'SHORT'
        where prod_id = :product.prod_id||'-'||'S';
        If SQL%ROWCOUNT = 0 Then
           INSERT INTO product(prod_id,prod_name) VALUES (:product.prod_id||'-'||'S',:product.prod_name||'-'||'SHORT');
        End If;
      End;   
    end IF;
    IF  :product.SIZE_MID ='MID' THEN
      Begin
        Update product
         set prod_name = :product.prod_name||'-'||'MID'
        where prod_id = :product.prod_id||'-'||'M';
        If SQL%ROWCOUNT = 0 Then
          INSERT INTO product(prod_id,prod_name) VALUES (:product.prod_id||'-'||'M',:product.prod_name||'-'||'MID');
        End If;     
    End IF;
    IF  :product.SIZE_LONG ='LONG' THEN
      Begin
        Update product
         set prod_name = :product.prod_name||'-'||'LONG'
        where prod_id = :product.prod_id||'-'||'L';
        If SQL%ROWCOUNT = 0 Then
          INSERT INTO product(prod_id,prod_name) VALUES (:product.prod_id||'-'||'L',:product.prod_name||'-'||'LONG');
        End If;   
    END IF;
    IF  :product.SIZE_SMALL ='SMALL' THEN
      Begin
        Update product
         set prod_name = :product.prod_name||'-'||'SMALL'
        where prod_id = :product.prod_id||'-'||'SM';
        If SQL%ROWCOUNT = 0 Then   
          INSERT INTO product(prod_id,prod_name) VALUES (:product.prod_id||'-'||'SM',:product.prod_name||'-'||'SMALL');
        End If;
    END IF;
    IF  :product.size_BIG ='BIG' THEN
      Begin
        Update product
         set prod_name = :product.prod_name||'-'||'BIG'
        where prod_id = :product.prod_id||'-'||'B';
        If SQL%ROWCOUNT = 0 Then   
          INSERT INTO product(prod_id,prod_name) VALUES (:product.prod_id||'-'||'B',:product.prod_name||'-'||'BIG');
        End If;
    end if;Edited by: neel_s on Mar 5, 2010 12:35 PM

Maybe you are looking for