What should be take action against following sql tuning report.

Hi
what should be take action against following sql tuning report.
SQL ID : fn3mt5dvm7fba
SQL Text : SELECT * FROM (select
     to_number(ow.waybl_no) waybl_no,ow.id wb_id,
     To_Number(ogp.gp_no) gp_no,
     To_Number(ots.trip_sht_no) trip_sht_no,
     otr.nm,
     ots.gty_br_mast_id,
     DECODE(otr.sign_recd,'1','YES','NO') Sign_Recd,
     DECODE(otr.stamped,'1','YES','NO') Stamped,
     otr.dlvry_dt dlvry_dt,
     otr.tel_no,
     --otr.remarks,                                                   
     Decode(otr.comments, NULL,'','Yes') remarks,
     otr.id ID,ops_safex_utl.get_br_nm(to_number(ow.bkg_br_mast_id))
book_br,
     ow.pick_dt book_date
from
     ops_ts_reconsile otr,
     ops_pultd_wb_dtls opuwd,
     ops_trip_sht ots,
     ops_waybl ow,
     ops_ultd_wb_dtls ouwd,
     ops_gate_pass ogp
where
     otr.trip_sht_id=ots.id and
     otr.pultd_wb_dtls_id=opuwd.id and
     opuwd.ultd_wb_dtls_id=ouwd.id and
     ouwd.gate_pass_id=ogp.id and
     opuwd.waybl_id=ow.id and
     otr.status_lid=157 and
     ots.gty_br_mast_id = (:br_Id) and
     (otr.dlvry_dt = :searchDate OR :searchDate IS NULL) and
     otr.note_prpd = 'N' and otr.pod_recd = '1' and
     not exists (select TS_RECONSILE_ID from OPS_POD_FRWD_NOTE_DTLS
where TS_RECONSILE_ID = otr.id)
union
select
     to_number(ow.waybl_no) waybl_no, ow.id wb_id,
     To_Number(ogp.gp_no) gp_no,
     null trip_sht_no,
     ogr.nm,
     ogp.dlvry_br_mast_id,
     DECODE(ogr.sign_recd,'Y','YES','NO') Sign_Recd,
     DECODE(ogr.stamped,'Y','YES','NO') Stamped,
     ogr.dlvry_dt dlvry_dt,
     ogr.tel_no,
     --ogr.remarks,                                                   
     Decode(ogr.comments, NULL,'', 'Yes') remarks,
     ogr.id ID,ops_safex_utl.get_br_nm(to_number(ow.bkg_br_mast_id))
book_br,
     ow.pick_dt book_date
from
     ops_gp_reconcile ogr,
     ops_gate_pass ogp,
     ops_waybl ow
where
     ogr.gp_id=ogp.id and
     ogp.waybl_id=ow.id and
     ogp.dlvry_br_mast_id = (:br_Id) and
     (ogr.dlvry_dt = :searchDate) and
     ogr.note_prpd = 'N' and ogr.pod_recd = 'Y' and
     not exists (select GP_RECONSILE_ID from OPS_POD_FRWD_NOTE_DTLS
where GP_RECONSILE_ID = ogr.id)) QRSLT ORDER BY trip_sht_no desc
Bind Variables :
1 - (VARCHAR2(32)):37069
2 - (DATE):07/11/2011 00:00:00
3 - (DATE):07/11/2011 00:00:00
4 - (VARCHAR2(32)):37069
5 - (DATE):07/11/2011 00:00:00
FINDINGS SECTION (3 findings)
1- SQL Profile Finding (see explain plans section below)
2 potentially better execution plans were found for this statement. Choose
one of the following SQL profiles to implement.
Recommendation (estimated benefit<=10%)
- Consider accepting the recommended SQL profile.
execute dbms_sqltune.accept_sql_profile(task_name => 'TASK_58643',
task_owner => 'SYS', replace => TRUE);
Recommendation (estimated benefit: 99.15%)
- Consider accepting the recommended SQL profile to use parallel execution
for this statement.
execute dbms_sqltune.accept_sql_profile(task_name => 'TASK_58643',
task_owner => 'SYS', replace => TRUE, profile_type =>DBMS_SQLTUNE.PX_PROFILE);
Executing this query parallel with DOP 128 will improve its response time
99.11% over the SQL profile plan. However, there is some cost in enabling
parallel execution. It will increase the statement's resource consumption by
an estimated 14.56% which may result in a reduction of system throughput.
Also, because these resources are consumed over a much smaller duration, the
response time of concurrent statements might be negatively impacted if
sufficient hardware capacity is not available.
The following data shows some sampled statistics for this SQL from the past
week and projected weekly values when parallel execution is enabled.
Past week sampled statistics for this SQL
Number of executions 17494
Percent of total activity 7.2
Percent of samples with #Active Sessions > 2*CPU .63
Weekly DB time (in sec) 614696.04
Projected statistics with Parallel Execution
Weekly DB time (in sec) 704166.9
2- Restructure SQL finding (see plan 1 in explain plans section)
An expensive "UNION" operation was found at line ID 4 of the execution plan.
Recommendation
- Consider using "UNION ALL" instead of "UNION", if duplicates are allowed
or uniqueness is guaranteed.
3- Alternative Plan Finding
Some alternative execution plans for this statement were found by searching
the system's real-time and historical performance data.
The following table lists these plans ranked by their average elapsed time.
See section "ALTERNATIVE PLANS SECTION" for detailed information on each
plan.
id plan hash last seen elapsed (s) origin note
1 209247904 2011-07-12/10:09:08 7.564 Cursor Cache
2 4029269565 2011-07-12/10:20:21 15.374 Cursor Cache original plan
3 4128886984 2011-07-08/11:30:25 42.426 AWR
4 3695555639 2011-07-12/08:30:30 101.459 AWR
Recommendation
- Consider creating a SQL plan baseline for the plan with the best average
elapsed time.
execute dbms_sqltune.create_sql_plan_baseline(task_name => 'TASK_58643',
owner_name => 'SYS', plan_hash_value => 209247904);
ADDITIONAL INFORMATION SECTION
- The optimizer could not merge the view at line ID 3 of the execution plan.
The optimizer cannot merge a view that contains a set operator.
- SQL Profile "SYS_SQLPROF_01306b26f6aa0000" exists for this statement and
was ignored during the tuning process.

afzal wrote:
Hi
what should be take action against following sql tuning report.
<snip>Perhaps no action at all.
You can ALWAYS produce a report that will show "top 5" issues. The question is NOT "do I have an issue reported by a tuning report". Yes you do. Everyone does. Always. Even if you slowest batch job runs in 1.3 seconds and your slowest OLTP transaction completes in 0.0001 second.
The question is "do I have a problem that is serious enough to spend time solving?"
If your average OLTP transaction completes in 3 seconds, how much effort is justified to get a 50% improvement?
How much effort is justified to get that same 50% improvement on transactions that complete in 1.5 seconds? 0.2 seconds?
Beware of Compulsive Tuning Disorder.

Similar Messages

  • What should I take note when converting Servlets to JSPs files?

    Hi Everyone,
    I have a web application that currently runs using Servlets and JSP, but i intend to change every servlet file into JSP.
    What should I take note?
    Please advice and comment.
    Thanks in advance

    Ok, I can see your logic, but I don't agree with it.
    It may SEEM like you'll save time, but I'm pretty sure you wouldn't in the end.
    So you don't have to restart the Tomcat server so much.
    That still doesn't justify writing java code into a JSP.
    Whatever you gain from not restarting the server you will lose 10 times over from stupid compile errors/typos that come from writing scriptlet code in a JSP.
    Java code belongs in a java class, where you can take advantage of all of the assistance of the IDE for code completion, formatting, compiling, syntax checking etc.
    Also if you write your code in classes, you can test them with Junit tests - something harder to do when your logic is embedded in JSPs
    Write your java code where it is meant to be. In java classes. Beans/Servlets/whatever.
    A JSP is for one purpose only - to produce an HTML page.
    Just my 2 cents.
    evnafets

  • TF255186: The following SQL Server Reporting Services Instance could not be found

    Hi,
    I'm trying to install TFS 2013 on a remote SQL RS instance. 
    Using the TFS 2103 U4 installation
    SQL 2012 RS, name instance, Server: SQLProdA, Instance Name COMRS
    When I enabled tracing using debugView I see the following output:
    [4160] [Error  @11:07:10.978] Exception Message: TF255186: The following SQL Server Reporting Services Instance could not be found: COMRS. The server name is: SQLProdA. (type TfsAdminException)  
    Any ideas what the issue is?
    Thanks,
    reuvy

    Hi Charles,
    Thanks for the help. I already saw those links, and am already trying with the format. As I wrote above:
    Server: SQLProdA, Instance Name COMRS
    So I wrote in the box "SQLProdA\COMRS" (without quotes of course) and I still keep getting that error.
    I don't know if it matters, but although this is indeed a named instance, nonetheless, the path to the report server uses the default url (ie.
    http://servername/reports) as opposed to the name instance version (ie.
    http://servername_instance/reports) as mentioned by your link and this post:
    https://msdn.microsoft.com/en-us/library/bb552341.aspx
    But, I checked with Fiddler on the server and didn't see it trying to even access the link so I don't think it is related. I saw with Process Monitor that it is indeed trying to access via the network resources on SQLProdA, so I know it's trying.
    I have noticed something in the past, and wondered if this could be the issue, that for example if I have Management Studio 2014 installed, I cannot connect to a Reporting Services instance which is 2012. Only when Management Studio 2012 is installed
    and being used can I connect. I wondered if this possibly could be related, that maybe the API or something else which the installer is using is missing some component to connect to the RS instance.
    Just in case, I already installed both the SQL 2012 and 2014 Client Tools Connectivity (although I first installed 2014, and then 2012).
    Do you think this could be the issue? If not, do you possibly have any other leads?
    Thanks,
    Reuvy

  • At the time of reindex what should we take care ?

    Hi All,
    1. When we reindex the table, what precausion to be take care. If the table having partition, triggers - Should we take a backup of these ?
    2. How to compress/defragment the table ?
    Regards,
    Rajan B

    1 - reindex how? Do you mean drop/re-create index to reorganize it? You should probably use ALTER INDEX x REBUILD instead, but it is rarely necessary to rebuild Oracle indexes. You should make sure the target tablespace has ample free space to hold the resulting index plus if you rebuild in the existing tablespace that means it needs enough free space to hold two copies while the command runs.
    If you are changing the index to add or remove columns to support queries then you likely want to perform this action at a time when the table is not needed for update activity.
    2 - If this would be beneficial you could use either alter table move commands or export/truncate/import (see Utilities manual entries for expdp or exp and impdp or imp depending on Oracle version)
    HTH -- Mark D Powell --

  • In ASCP Workbench - Need to take action against sales order types

    Hi Team,
    I am facing one issue, In ASCP workbench, when we query an item with conditions Order type=Sales Order, I can see many rows with Action=Release, Action=None.
    Some rows with Action=None is in pink colour (without taking action against this in ASCP WB) and some in black colour.
    For rows with Action = Release, We can check the Release check box and can modify the "Implement date" field, Save and Release (Tools-->Release). Then we can see the changes in Schedule ship date field in Sales Order line (Source Instance)
    But for Action=None, We can't check the Release check box (But User want to implement New date for this also)
    Since this is linked with OM, I am in a position to solve the issues urgently based on the below questions.
    1. Which one triggers the Action=Release or None
    2. What modification needs to change in SO line (Source instance) to know the changes in Action column in ASCP WB.
    3. User needs to implement new dates for the items having Action=None also. For this how can override or any workaround is there?
    Note: For the items having same Old due dates and
    Please suggest me ASAP.
    Thanks and Regards,
    Ramesh

    Dear Ramesh
    Ones in Pink - Your plan is ATP enabled plan. So if there is a new sales order entered in OM module there is a sales order entry made in the ATP table the moment its scheduled in source. But since ASCP has nt been run yet they are still showing actiona s none in the plan.
    W r t one with action release your understanding of ship date updation through ascp release is correct.
    Why does customer want to chnage date on other sales orders (action-none) ? . ASCP has planned and it is saying that such is the date of expected shipment and so action is none. Any business reason why a date change and release is required on action none sales orders? By default behaviour action None cant be released to source .
    Best Regards
    Partha

  • What should be started and enabled in SQL express 2008 R2? Shared memory, TCP/IP , named pipes, VIA

    I copied my Visual Studio 2008 projects to a new computer and am having trouble getting the database to attach to my website to continue with it.
    I uninstalled SQL 2005 express and installed SQL 2008 R2 Express.
    When I looked in the SQL Server configuration manager, I wasn't sure what should be running and what should be stopped and what protocols should be enabled, etc so I started everything and enabled everything.
    However, the SQL Server Agent will not start. Maybe I did something wrong by enabling everything. I have everything to start automatically, and all enabled:
    SQL Native Client: I right clicked and opened and under client protocols, have enabled all: Shared memory, TCP/IP , named pipes, VIA
    and under SQL Server Network Configuration, I opened that and under there is listed protocols for SQLEXPRESS AND I enabled same things: Shared memory, TCP/IP , named pipes, VIA
    When I could not start the SQL Server Agent before from the SQL Server configuration mgr. I went into services and started it that way and it did start. But since I have rebooted, it will not start that way either and I now get this message: Windows could
    not start the SQL Server Agent(SQLEXPRESS) Service on local computer. Error 1067
    I'm just trying to get my visual studio project working again. Would appreciate any help. Maybe I should uninstall SQL and reinstall 2005??

    Windows could not start the SQL Server Agent(SQLEXPRESS) Service on local computer.
    As the others already wrote, with SQL Server Express in Version 2008 the "SQL Server Agent" will be installed, but it's not a Feature of the Express Edition and therefore you can't start & use it.
    In SQL Server 2005 Express the Agent was completly missing (not installed), therefore you haven't this "issue" before.
    Olaf Helper
    [ Blog] [ Xing] [ MVP]

  • Can you  please tell what is wrong, and what should be correct action.

    Dears,
    I am facing a problem. I am preparing a business report. I have generate the report for customer orders that will expire in certain duration as well as the last Payment Method used by the customer.
    For this I have to use to tables which are as follows:
    ORDER_DETAIL
    ONETMPRD_CHRG
    ORDER_DETAIL Contains the order Id, Order Date, Payment Method.
    ONETMPRD_CHRG contains the customerid, orderid, item, duration and service expiry date and other detail
    ORDER_DETAIL is the master table
    ONETMPRD_CHRG is the detail table.
    I have write the following query to achieve this-
    SELECT A.GF_USER_CUSTID , b.gf_payment_method, MAX(b.gf_order_date) --COUNT(DISTINCT a.gf_user_custid) Customer
    FROM CIQDE.GT_ONETMPRD_CHRG A, CIQDE.GT_ORDER_DETAIL B , ciqops.ops_item_280106 c, ciqde.gt_customer_address_phone d, gt_customer e
    WHERE B.GF_ORDER_ID = A.GF_ORDER_ID
    AND c.gf_item_code=a.gf_item_code
    AND a.gf_user_custid=d.gf_cust_id
    AND d.gf_cust_id=e.gf_customer_id
    AND a.GF_ACTUAL_END_DATE BETWEEN '23-JAN-2006' AND '01-AUG-2006'
    AND a.GF_COUNTRY_CODE = 'AT'
    AND a.gf_charge_type IN ('C')
    AND NVL(a.gf_u_duration,0)=0
    AND a.gf_price_plan_code='PPSCU'
    GROUP BY A.GF_USER_CUSTID , b.gf_payment_method
    ORDER BY A.GF_USER_CUSTID
    Problem : I am not getting the expected Reult, some extra records are coming in the result output

    Problem : I am not getting the expected Reult, some extra records are coming in the result output So you are getting all the records you want, just with extra ones? Then you need to work at the works you don't want and figure out what distinguishes them from the records you do want. Then amend your WHERE clause accordingly.
    This is really a business issue: you understand your application and its data, we don't.
    Cheers, APC

  • What should i take for customer account group

    wat is the best to customize customer account group
    i m thginking to creat one exportcustomer and other one is domestic
    or else i ll make one one as sold to party
    plz help

    <i><u><b>Customer Master</b></u></i>
    <u><b>Account Group</b></u>
    <b>Maintain Number Range for Account Group</b>
    Use
    The purpose of this activity is to control number range of Account Group.
    Procedure
          Access the activity using one of the following navigation options:
    IMG --> Financial Accounting (New) &#61614; Accounts Receivable and Accounts Payable &#61614; Customer Accounts &#61614; Master Data &#61614; Preparations for Creating Customer Master Data &#61614; Create Number Ranges for Customer Accounts &#61614; Select the Icon to maintain Number Range
    Transaction Code     SPRO
    Data to be maintained:
    No | From | To | Current No | Ext (Tick in Check Box)
    01 | 0000000001 | 0000099999 | 0 | No
    02 | 0000100000 | 0000299999 | 0 | No
    XX | A | ZZZZZZZZZZ | Yes
    <b>Assign Number Range to Account Group</b>
    Use
    The purpose of this activity is to maintain number range of Account Group.
    Procedure
          Access the activity using one of the following navigation options:
    IMG --> Financial Accounting (New) &#61614; Accounts Receivable and Accounts Payable &#61614; Customer Accounts &#61614; Master Data &#61614; Preparations for Creating Customer Master Data &#61614; Assign Number Ranges to Customer Account Groups
    Transaction Code     SPRO
          Data to be maintained:
    Group | Name | Number Range
    0001 | Sold-to party | XX
    0002 | Goods recipient | XX
    0003 | Payer | XX
    0004 | Bill-to party | XX
    <b>Define Account Groups with Screen Layout (Customers)</b>
    Use
    In this step, you determine the account group of the customer.
    Procedure
    Access the activity using one of the following navigation options:
    IMG --> Financial Accounting (New) &#61614; Accounts Receivable and Accounts Payable &#61614; Customer Accounts &#61614; Master Data &#61614; Preparations for Creating Customer Master Data &#61614; Define Account Groups with Screen Layout (Customers)
    Transaction Code     SPRO
    The groups indicated below are a few examples. There are many groups in Standard SAP & if we require additional Group, it can be copied from appropriate group & maintained.
    Group | Name
    0001 | Sold-to party
    0002 | Goods recipient
    0003 | Payer
    0004 | Bill-to party
    0005 | Prospective customer
    0006 | Competitor
    Select Sold-to-party &#61664; go to Details &#61664; Double Click on General data / Company code data / Sales data. It will take to next screen which details Tab Pages of General data / Company code data / Sales data. Double Click on Tab Page for example: Address, Control, Marketing & so on. Here you can maintain whether the field is to be Suppress, Req. Entry, Opt. entry or Display
    Regards,
    Rajesh Banka
    Reward points if helpful

  • HT5047 Having problem with the iOS7 verifying update what should I do?

    Having problem with the iOS7 verifying update what should I do?

    Several other users have reported this same problem. Unplug the charger and then replug. It should resume to 100%.
     Cheers, Tom

  • How to Custom Report using sql server report builder for SCCM 2012 SP1

    Hi ,
    I am new to database, if i want to create a manual report using sql server report builder for SCCM 2012 SP1, what step should i take.
    i want to create a report in which computer name, total disk space, physical disk serial no come together. i already added class (physical disk serial no.) in hardware inventory classes. refer snapshot

    Hi,
    Here is a guide on how to create custom reports in Configuration Manager 2012, it is a great place to start, change to the data you want to display instead.
    http://sccmgeekdiary.wordpress.com/2012/10/29/sccm-2012-reporting-for-dummies-creating-your-own-ssrs-reports/
    Regards,
    Jörgen
    -- My System Center blog ccmexec.com -- Twitter
    @ccmexec

  • About Automatic SQL Tuning.

    Hii all,
                   I have tuned one query by using SQL Tuning  Advisor in SQL Developer Tool. I have seen much improvement in Explain plan in advisor .. After tuning finished i executed following script.
    {code}
    select dbms_sqltune.report_tuning_task('staName47421') as Rems
    from dual;
    {code}
    I seen an explain plan but i am not able to see recommended changes in query .. Is it possible to get the query directly from any view ..
    I tried and checked in many dynamic views by keeping plan_hash_value as reference .. I found records in some dynamic views like dba_sqltune_plans and dba_advisor_sqlstats but i am unable to find exact sqltext .. Kindly advice if possible to get that query .. My query was taking 17 mins but it got reduced to 2 mins by seeing sql tuned explain plan so i want to see as what are the changes been done .
    Regards,
    Nitesh.

    I would rather accept what is in the documentation:
    "If a SQL profile is recommended, the database tests the new profile by executing the SQL statement both with and without the profile. If the performance improvement improves at least threefold, then the database accepts the SQL profile, but only if the ACCEPT_SQL_PROFILES task parameter is set to TRUE. Otherwise, the automatic SQL tuning reports merely report the recommendation to create a SQL profile." Automatic SQL Tuning
    "If automatic implementation of SQL profiles is enabled (the default is disabled), then the database implements any SQL profiles that promise a great performance benefit. The implementation occurs at tuning time so that the database can immediately benefit from the new plan. You can enable or disable automatic implementation by using the SET_AUTO_TUNING_TASK_PARAMETER API to set the ACCEPT_SQL_PROFILES parameter." DBMS_AUTO_SQLTUNE

  • [OCP exam] doubt about Automatic SQL Tuning Advisor

    Hi,
    Sorry for my poor english.
    I am currently preparing for the OCP  11g exam.
    For that, I have bought some training tools  to help me prepare the exam.
    But, in the chapter related to the SQL tuning advisor, some explanation really confuse me .
    Extract :
    <<
    the SQL automatic tuning  job runs every night during the maintenance window.
    By default, the job makes SQL profile recommendations, tests them, and automatically implements them if they provide better performance improvement)
    >>
    I was persuaded it was the opposite.
    I check several databases/documentation, and it's seems to be always the opposite.
    By default,new sql profile are tested but not implemented automatically (you have to set a parameter ACCEPT_SQL_PROFILES TO TRUE to activate this option)
    But the exam is validated on oracle 11.2.0.1, and I only have 11.2.0.2/11.2.0.3 db available.
    So may be oracle changed the value of the default parameter in the new releases.
    Can someone confirm if I am right or not ?

    I would rather accept what is in the documentation:
    "If a SQL profile is recommended, the database tests the new profile by executing the SQL statement both with and without the profile. If the performance improvement improves at least threefold, then the database accepts the SQL profile, but only if the ACCEPT_SQL_PROFILES task parameter is set to TRUE. Otherwise, the automatic SQL tuning reports merely report the recommendation to create a SQL profile." Automatic SQL Tuning
    "If automatic implementation of SQL profiles is enabled (the default is disabled), then the database implements any SQL profiles that promise a great performance benefit. The implementation occurs at tuning time so that the database can immediately benefit from the new plan. You can enable or disable automatic implementation by using the SET_AUTO_TUNING_TASK_PARAMETER API to set the ACCEPT_SQL_PROFILES parameter." DBMS_AUTO_SQLTUNE

  • Lr 5.6 error message that reading preview cache failed and will correct when reopened; does not correct on reopening; removing preview.lrdata files allows LR to open but photos not shown; what action should I take next?

    Lr 5.6 error message that reading preview cache failed and will correct when reopened; does not correct on reopening; removing preview.lrdata files allows LR to open but photos not shown; what action should I take next?

    Yikesyou have helped me before and I thank you for that.  Funny how at the last resort I ask a question and then an hour later I fix something that has been broken for five days.  I got off on the wrong foot with Lightroom installation and I really stepped in it...a lot had to do with a bad hard drive and all that.  I still have remnants of catalogues etc so I am never quite sure where I am.  I ran a search and found more than one .lrdata files.  I finally got the right one to delete and I think I am okI'll be crying to you again if I am wrongall best, thanks again for your helpjim sterne

  • HT1725 i recently downloaded an album from itunes but 5 of the songs won't completely play through when i try to listen to them. i don't know if the song files are damaged or what but what action should i take to repair the files or get my money back?

    i recently downloaded an album from itunes and from what it appeared, everything completely downloaded, but 5 of the songs won't completely play through when i want to listen to them. i don't know if the song files are damaged or what. what actions should i take to either repair the files or get my money back from itunes?

    Assuming you are in a region where you are allowed to redownload your past music purchases, delete the corrupt tracks from the music section of your iTunes library, close & then reopen iTunes, go to the iTunes Store home page, click the Purchased link from the Quick Links section in the right-hand column, then select Music and Not on this computer. You should find download links for your tracks there.
    While downloading select Downloads in the left-hand column and make sure Allow Simultaneous Downloads is unchecked.
    If the problem persists, or that facility is not yet available in your region, contact the iTunes Store support staff through the "Report a problem" links in your account history, or via Contact Support.
    See also:
    HT5085 - iTunes in the Cloud and iTunes Match Availability
    HT2519 - Downloading past purchases from the App Store, iBookstore, and iTunes Store
    tt2

  • I changed my email on my i tunes account and every time i try to updates an app it takes me back to the old email .what should i do to have the same email

    i chamged my account on i tunes ,and i had a new email ,and it working fine when i purchase and when i log in to i tunes ,but everytime i need to press on update button it takes me to the old e mail and account ,what should i do.

    Why am I sometimes asked to verify my Apple ID by email?
    When you create a new Apple ID or make certain changes to your account, Apple will require you to sign in by following the link in a verification email. This is to help protect your identity and keep your account secure. Some Apple services, such as FaceTime and GameCenter, require email validation.
    How do I verify my Apple ID by email?
    Simply follow the link in the verification email that says "Verify Now." Sign in with your current Apple ID and password, then click Verify Address. You can also verify by signing in at My Apple ID. You'll receive an email prompting you to verify.

Maybe you are looking for

  • Reversal of Last Fiscal year asset in current fiscal year

    Dear SAP experts Asset has been booked in last fiscal year (jan2006) depreciation also posted till this fiscal year last month (2007 June) Asset value-70000 (invoice value) Accumulated Depreciation-33753.42 Asset net book value as on date- 36246.58 W

  • My ipod wont install apps

    my ipod wont install apps from yesterday afternoon (15,8,2011) please help me i havent done anything to my ipod lately i was trying to install commodore 64 on my ipod and it wouldnt install. already restarted and synced it 4.2.1

  • Customizing Related Information Layout

    Hi, Need to add the "Last Activity" field in "Contact" Related Information Layout for "Accounts" record type. The Problem is, can't find the "Last Activity" field in the Available Section of the Related Information layout for Contacts in Accounts rec

  • Can I use RMAN transportable database cross platform from 10g to 11g?

    Hi, I'm working on the migration plan, the source db server is solaris with 10g database while the destination server is AIX with 11g database. Can I use RMAN transportable database for this purpose? Coz I have read the restrictions on Cross-Platform

  • Broadband Speed In West Kensington // Upload Speed

    hello there my name is gabrio, i live in fairholme road in west kensington... i wanted to ask how is the performance with BT broadband 20mbit in this area since i am thinking to request my own line given that at the moment in the flat where i live th