How to update around 12 lac record when using co-related update

Hello Everyone
I have two tables and 14 columns in them are similar, I mean have the same name
Now I want to update 1 column using the records in the other table by using join condition so I wrote a code but as the records are around 12 lac which need to be updated so my code hangs after 25%
UPDATE TABLE  A
SET A.COLUMN1=(SELECT B.COLUMN1
                     FROM  TABLEL B
                     WHERE B.COLUMN2 = A.COLUMN2
                     AND B.COLUMN3 = A.COLUMN3
                     AND B.COLUMN4= A.COLUMN4
                     AND B.COLUMN5 =A. COLUMN5
                     AND B.COLUMN6 = A.COLUMN6
                     AND B.COLUMN7=A.COLUMN7
                     AND B.COLUMN8 = A.COLUMN8
                     AND B.COLUMN9 = A.COLUMN9
                     AND B.COLUMN10 = A.COLUMN10
                     AND B.COLUMN11 = A.COLUMN11
                     AND B.COLUMN12 = A.COLUMN12
                     AND B.COLUMN13 = A.COLUMN13
                     AND A.PLAN_ID = 1000000300
                     AND B.PLAN_ID = 1000000300)
WHERE COLUMN14= 1000000300  
AND COLUMN15=1000000002please suggest a way that the update could be done easily
Edited by: Peeyush on Feb 8, 2011 5:56 AM
Edited by: Peeyush on Feb 8, 2011 5:57 AM

You can rewrite it using a merge statement, to prevent starting that subquery numerous times.
Here is an example that mimics your situation, with two tables containing only 10 rows:
SQL> create table table_a
  2  ( column1
  3  , column2
  4  , column3
  5  , column4
  6  , column5
  7  , column6
  8  , column7
  9  , column8
10  , column9
11  , column10
12  , column11
13  , column12
14  , column13
15  , column14
16  , column15
17  , plan_id
18  )
19  as
20   select -1
21        , level
22        , 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
23        , 1000000300
24        , case mod(level,2) when 0 then 1000000002 else 1000000000 end
25        , 1000000300
26     from dual
27  connect by level <= 10
28  /
Table created.
SQL> create table table_b
  2  as
  3  select rownum column1
  4       , column2
  5       , column3
  6       , column4
  7       , column5
  8       , column6
  9       , column7
10       , column8
11       , column9
12       , column10
13       , column11
14       , column12
15       , column13
16       , column14
17       , column15
18       , plan_id
19    from table_a
20  /
Table created.
SQL> select * from table_a
  2  /
   COLUMN1    COLUMN2    COLUMN3    COLUMN4    COLUMN5    COLUMN6    COLUMN7    COLUMN8    COLUMN9   COLUMN10   COLUMN11   COLUMN12   COLUMN13   COLUMN14   COLUMN15    PLAN_ID
        -1          1          1          1          1          1          1          1          1          1          1          1      1 1000000300 1000000000 1000000300
        -1          2          1          1          1          1          1          1          1          1          1          1      1 1000000300 1000000002 1000000300
        -1          3          1          1          1          1          1          1          1          1          1          1      1 1000000300 1000000000 1000000300
        -1          4          1          1          1          1          1          1          1          1          1          1      1 1000000300 1000000002 1000000300
        -1          5          1          1          1          1          1          1          1          1          1          1      1 1000000300 1000000000 1000000300
        -1          6          1          1          1          1          1          1          1          1          1          1      1 1000000300 1000000002 1000000300
        -1          7          1          1          1          1          1          1          1          1          1          1      1 1000000300 1000000000 1000000300
        -1          8          1          1          1          1          1          1          1          1          1          1      1 1000000300 1000000002 1000000300
        -1          9          1          1          1          1          1          1          1          1          1          1      1 1000000300 1000000000 1000000300
        -1         10          1          1          1          1          1          1          1          1          1          1      1 1000000300 1000000002 1000000300
10 rows selected.
SQL> alter session set statistics_level = all
  2  /
Session altered.
SQL> UPDATE TABLE_a A
  2  SET A.COLUMN1=(SELECT B.COLUMN1
  3                       FROM  TABLE_b B
  4                       WHERE B.COLUMN2 = A.COLUMN2
  5                       AND B.COLUMN3 = A.COLUMN3
  6                       AND B.COLUMN4= A.COLUMN4
  7                       AND B.COLUMN5 =A. COLUMN5
  8                       AND B.COLUMN6 = A.COLUMN6
  9                       AND B.COLUMN7=A.COLUMN7
10                       AND B.COLUMN8 = A.COLUMN8
11                       AND B.COLUMN9 = A.COLUMN9
12                       AND B.COLUMN10 = A.COLUMN10
13                       AND B.COLUMN11 = A.COLUMN11
14                       AND B.COLUMN12 = A.COLUMN12
15                       AND B.COLUMN13 = A.COLUMN13
16                       AND A.PLAN_ID = 1000000300
17                       AND B.PLAN_ID = 1000000300)
18  WHERE COLUMN14= 1000000300
19  AND COLUMN15=1000000002
20  /
5 rows updated.
SQL> select * from table(dbms_xplan.display_cursor(null,null,'allstats last'))
  2  /
PLAN_TABLE_OUTPUT
SQL_ID  2xky09vcgyzpr, child number 0
UPDATE TABLE_a A SET A.COLUMN1=(SELECT B.COLUMN1                      FROM
TABLE_b B                      WHERE B.COLUMN2 = A.COLUMN2
AND B.COLUMN3 = A.COLUMN3                      AND B.COLUMN4= A.COLUMN4
            AND B.COLUMN5 =A. COLUMN5                      AND B.COLUMN6 =
A.COLUMN6                      AND B.COLUMN7=A.COLUMN7                      AND
B.COLUMN8 = A.COLUMN8                      AND B.COLUMN9 = A.COLUMN9
         AND B.COLUMN10 = A.COLUMN10                      AND B.COLUMN11 =
A.COLUMN11                      AND B.COLUMN12 = A.COLUMN12
AND B.COLUMN13 = A.COLUMN13                      AND A.PLAN_ID = 1000000300
                AND B.PLAN_ID = 1000000300) WHERE COLUMN14= 1000000300 AND
COLUMN15=1000000002
Plan hash value: 4173428670
| Id  | Operation           | Name    | Starts | E-Rows | A-Rows |   A-Time   | Buffers |
|   1 |  UPDATE             | TABLE_A |      1 |        |      0 |00:00:00.01 |      25 |
|*  2 |   TABLE ACCESS FULL | TABLE_A |      1 |      5 |      5 |00:00:00.01 |       3 |
|*  3 |   FILTER            |         |      5 |        |      5 |00:00:00.01 |      15 |
|*  4 |    TABLE ACCESS FULL| TABLE_B |      5 |      1 |      5 |00:00:00.01 |      15 |
Predicate Information (identified by operation id):
   2 - filter(("COLUMN14"=1000000300 AND "COLUMN15"=1000000002))
   3 - filter(:B1=1000000300)
   4 - filter(("B"."COLUMN2"=:B1 AND "B"."COLUMN3"=:B2 AND "B"."COLUMN4"=:B3 AND
              "B"."COLUMN5"=:B4 AND "B"."COLUMN6"=:B5 AND "B"."COLUMN7"=:B6 AND
              "B"."COLUMN8"=:B7 AND "B"."COLUMN9"=:B8 AND "B"."COLUMN10"=:B9 AND
              "B"."COLUMN11"=:B10 AND "B"."COLUMN12"=:B11 AND "B"."COLUMN13"=:B12 AND
              "B"."PLAN_ID"=1000000300))
Note
   - dynamic sampling used for this statement
40 rows selected.Note that you have 5 starts of operation 4, meaning 5 full table scans.
SQL> select * from table_a
  2  /
   COLUMN1    COLUMN2    COLUMN3    COLUMN4    COLUMN5    COLUMN6    COLUMN7    COLUMN8    COLUMN9   COLUMN10   COLUMN11   COLUMN12   COLUMN13   COLUMN14   COLUMN15    PLAN_ID
        -1          1          1          1          1          1          1          1          1          1          1          1      1 1000000300 1000000000 1000000300
         2          2          1          1          1          1          1          1          1          1          1          1      1 1000000300 1000000002 1000000300
        -1          3          1          1          1          1          1          1          1          1          1          1      1 1000000300 1000000000 1000000300
         4          4          1          1          1          1          1          1          1          1          1          1      1 1000000300 1000000002 1000000300
        -1          5          1          1          1          1          1          1          1          1          1          1      1 1000000300 1000000000 1000000300
         6          6          1          1          1          1          1          1          1          1          1          1      1 1000000300 1000000002 1000000300
        -1          7          1          1          1          1          1          1          1          1          1          1      1 1000000300 1000000000 1000000300
         8          8          1          1          1          1          1          1          1          1          1          1      1 1000000300 1000000002 1000000300
        -1          9          1          1          1          1          1          1          1          1          1          1      1 1000000300 1000000000 1000000300
        10         10          1          1          1          1          1          1          1          1          1          1      1 1000000300 1000000002 1000000300
10 rows selected.
SQL> rollback
  2  /
Rollback complete.
SQL> merge into table_a a
  2  using table_b b
  3     on (   a.column2  = b.column2
  4        and a.column3  = b.column3
  5        and a.column4  = b.column4
  6        and a.column5  = b.column5
  7        and a.column6  = b.column6
  8        and a.column7  = b.column7
  9        and a.column8  = b.column8
10        and a.column9  = b.column9
11        and a.column10 = b.column10
12        and a.column11 = b.column11
13        and a.column12 = b.column12
14        and a.column13 = b.column13
15        and a.plan_id  = 1000000300
16        and b.plan_id  = 1000000300
17        and a.column14 = 1000000300
18        and a.column15 = 1000000002
19        )
20   when matched then
21        update set a.column1 = b.column1
22  /
5 rows merged.
SQL> select * from table(dbms_xplan.display_cursor(null,null,'allstats last'))
  2  /
PLAN_TABLE_OUTPUT
SQL_ID  by8mwr4pxfv46, child number 0
merge into table_a a using table_b b    on (   a.column2  = b.column2       and a.column3  = b.column3
and a.column4  = b.column4       and a.column5  = b.column5       and a.column6  = b.column6       and
a.column7  = b.column7       and a.column8  = b.column8       and a.column9  = b.column9       and
a.column10 = b.column10       and a.column11 = b.column11       and a.column12 = b.column12       and
a.column13 = b.column13       and a.plan_id  = 1000000300       and b.plan_id  = 1000000300       and
a.column14 = 1000000300       and a.column15 = 1000000002       )  when matched then       update set
a.column1 = b.column1
Plan hash value: 1110892605
| Id  | Operation            | Name    | Starts | E-Rows | A-Rows |   A-Time   | Buffers |  OMem |  1Mem | Used-Mem |
|   1 |  MERGE               | TABLE_A |      1 |        |      1 |00:00:00.01 |      13 |       |       |          |
|   2 |   VIEW               |         |      1 |        |      5 |00:00:00.01 |       6 |       |       |          |
|*  3 |    HASH JOIN         |         |      1 |      1 |      5 |00:00:00.01 |       6 |   778K|   778K|  573K (0)|
|*  4 |     TABLE ACCESS FULL| TABLE_A |      1 |      5 |      5 |00:00:00.01 |       3 |       |       |          |
|*  5 |     TABLE ACCESS FULL| TABLE_B |      1 |     10 |     10 |00:00:00.01 |       3 |       |       |          |
Predicate Information (identified by operation id):
   3 - access("A"."COLUMN2"="B"."COLUMN2" AND "A"."COLUMN3"="B"."COLUMN3" AND "A"."COLUMN4"="B"."COLUMN4"
              AND "A"."COLUMN5"="B"."COLUMN5" AND "A"."COLUMN6"="B"."COLUMN6" AND "A"."COLUMN7"="B"."COLUMN7" AND
              "A"."COLUMN8"="B"."COLUMN8" AND "A"."COLUMN9"="B"."COLUMN9" AND "A"."COLUMN10"="B"."COLUMN10" AND
              "A"."COLUMN11"="B"."COLUMN11" AND "A"."COLUMN12"="B"."COLUMN12" AND "A"."COLUMN13"="B"."COLUMN13")
   4 - filter(("A"."PLAN_ID"=1000000300 AND "A"."COLUMN14"=1000000300 AND "A"."COLUMN15"=1000000002))
   5 - filter("B"."PLAN_ID"=1000000300)
Note
   - dynamic sampling used for this statement
36 rows selected.And with the merge you have only one.
SQL> alter session set statistics_level = typical
  2  /
Session altered.
SQL> select * from table_a
  2  /
   COLUMN1    COLUMN2    COLUMN3    COLUMN4    COLUMN5    COLUMN6    COLUMN7    COLUMN8    COLUMN9   COLUMN10   COLUMN11   COLUMN12   COLUMN13   COLUMN14   COLUMN15    PLAN_ID
        -1          1          1          1          1          1          1          1          1          1          1          1      1 1000000300 1000000000 1000000300
         2          2          1          1          1          1          1          1          1          1          1          1      1 1000000300 1000000002 1000000300
        -1          3          1          1          1          1          1          1          1          1          1          1      1 1000000300 1000000000 1000000300
         4          4          1          1          1          1          1          1          1          1          1          1      1 1000000300 1000000002 1000000300
        -1          5          1          1          1          1          1          1          1          1          1          1      1 1000000300 1000000000 1000000300
         6          6          1          1          1          1          1          1          1          1          1          1      1 1000000300 1000000002 1000000300
        -1          7          1          1          1          1          1          1          1          1          1          1      1 1000000300 1000000000 1000000300
         8          8          1          1          1          1          1          1          1          1          1          1      1 1000000300 1000000002 1000000300
        -1          9          1          1          1          1          1          1          1          1          1          1      1 1000000300 1000000000 1000000300
        10         10          1          1          1          1          1          1          1          1          1          1      1 1000000300 1000000002 1000000300
10 rows selected.On 1.2M rows, the savings should be considerable.
Regards,
Rob.

Similar Messages

  • Not being able to hear application audio on quicktime screen recording when using headset

    Can someone tell me how to still hear the computer audio (like the application sound) on while using quicktime screen recording when using headset?
    Someone help me please or tell me another application to do this with.

    hi paula
    your problem could be hardware/software. lets hope its software issue first and i'd like you to do these:
    if you have personal files on volume c, copy/backup them. shut down your computer, press one key recover button to perform clean windows installation. then check if the issue still persists.
    if you don,t want to use okr, you can use windows restore to restore your computer to previous restore points but if it's windows/virus issue, it may not help.

  • How to set fetchsize of sql Query when using Database Adapter.

    Hi All,
    I am using DatabaseAdapter to connect to database and retriving huge amount of data.For improvement in the performance I want to set the "fetchsize" of sql query. I know fetchsize can be preset in Java using Jdbc 2.0 API.Please let me know how to set this value in BPEL when using DBAdapter?
    Thanks
    Chandra

    I talked to the developer of the db adapter - and he told me this feature will be available in BPEL PM 10.1.3 (which is supposed to be production later this year, and a public beta soon). If this is an emergency I would recommend going throug Oracle support and have them file an enhancement for 10.1.2.0.2
    hth clemens

  • How to transfer range parameter from vb when using bapi calling

    Hi,everyone.how to transfer range parameter from vb when using BAPI calling?

    Did you get the solution to your problem?  Can you please share it with me. I have a similar problem. I have a VB program that calls RFC function. It works with a single parameter but not with a range of parameters. If you have the solution, could you please share sample codes with me? Thank you so much.

  • How can I show additional tab rows when using many open tabs?

    How can I show additional tab rows when using many open tabs?

    What method (code) did you use to get the Tab bar displaying in the space used for the Navigation Toolbar (location bar)?
    The Tab bar should be displayed above the Navigation Toolbar.
    Start Firefox in <u>[[Safe Mode|Safe Mode]]</u> to check if one of the extensions (Firefox/Tools > Add-ons > Extensions) or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox/Tools > Add-ons > Appearance).
    *Do NOT click the Reset button on the Safe Mode start window.
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes

  • How do images embeded in InDesign link when using Creative Cloud on more than two desktops?

    How do images embeded in InDesign link when using Creative Cloud on more than two desktops?

    If I am understanding your question correctly, you shouldn't have to worry about embedded images in InDesign. Once embedded, the image is stored within the file.
    If you are wondering about linked images... InDesign will follow the path on your computer and, if it does not find the image, you will recieve a notification. Edit: To prevent this, I would suggest packaging your file using File > Package... This will create a folder with all of your fonts and linked graphics so that you need not worry about broken links.  I just remembered that you cannot upload folders directly to Creative Cloud so a packaged folder wouldn't be very helpful unless you wanted to upload each file manually.
    The best solution I see right now is to either embed the graphics in the document, or upload the images with your document to relink.
    I hope this helped,
    Michael

  • How do I authorise computers and iPads to use iTunes related purchases

    how do I authorise computers and iPads to use iTunes related purchases

    You can authorise up to 5 computers via iTunes by signing in with your ID.
    On iPads you enter your iTunes/AppStore store ID in Settings if it's not configured or different to your iCloud ID (if you have one).  These do not count as computer authorisations.
    AC

  • How to get around a performance issue when dealing with a lot of data

    Hello All,
    This is an academic question really, I'm not sure what I'm going to do with my issue, but I have some options.  I was wondering if anyone would like to throw in their two cents on what they would do.
    I have a report, the users want to see all agreements and all conditions related to the updating of rebates and the affected invoices. From a technical perspective ENT6038-KONV-KONP-KONA-KNA1.  THese are the tables I have to hit.  The problem is that when they retroactively update rebate conditions they can hit thousands of invoices, which blossoms out to thousands of conditions...you see the problem. I simply have too much data to grab, it times out.
    I've tried everything around the code.  If you have a better way to get price conditions and agreement numbers off of thousands of invoices, please let me know what that is.
    I have a couple of options.
    1) Use shared memory to preload the data for the report.  This would work, but I'm not going to know what data is needed to be loaded until report run time. They put in a date. I simply can't preload everything. I don't like this option much. 
    2) Write a function module to do this work. When the user clicks on the button to get this particular data, it will launch the FM in background and e-mail them the results. As you know, the background job won't time out. So far this is my favored option.
    Any other ideas?
    Oh...nope, BI is not an option, we don't have it. I know, I'm not happy about it. We do have a data warehouse, but the prospect of working with that group makes me whince.

    My two cents - firstly totally agree with Derick that its probably a good idea to go back to the business and justify their requirement in regards to reporting and "whether any user can meaningfully process all those results in an aggregate". But having dealt with customers across industries over a long period of time, it would probably be bit fanciful to expect them to change their requirements too much as in my experience neither do they understand (too much) technology nor they want to hear about technical limitations for a system etc. They want what they want if possible yesterday!
    So, about dealing with performance issues within ABAP, I'm sure you must be already using efficient programming techniques like using Hash internal tables with Unique Keys, accessing rows of the table using Field-Symbols and all that but what I was going to suggest to you is probably look at using [Extracts|http://help.sap.com/saphelp_nw04/helpdata/en/9f/db9ed135c111d1829f0000e829fbfe/content.htm]. I've had to deal with this couple of times in the past when dealing with massive amount of data and I found it to be very efficient in regards to performance. A good point to remember when using Extracts that, I quote from SAP Help, "The size of an extract dataset is, in principle, unlimited. Extracts larger than 500KB are stored in operating system files. The practical size of an extract is up to 2GB, as long as there is enough space in the filesystem."
    Hope this helps,
    Cheers,
    Sougata.

  • Problem While updaing the around 25 lacs record

    Hi,
    we have the more the 25 lacs in DB table we introduced the new Column in that table so that column contain the null values for that
    25 lacs record now we need to update the all record with particular value based on the primary key of that table
    so we wirte the cursor to findout the all record and then update the all record with particular value based on the promary key
    But it take lot of time to execute .
    is there any way that we can excute this query fater means we can update the record in faster way.
    Waiting for any positive response.
    Thanks,
    ahsish

    Hi,
    We use cursor because we need to update the all null
    records with the ids based on the some condition from
    some other tables.
    thanks,
    AsUpdating null columns has the little problem that an index on such a column is usually not used. One workaround would to create a multi column index first.
    For example on the NULL column and on the ID column. Then do a single update like this.
    UPDATE yourTable t
    SET t.col1 = (conditional select from some other tables WHERE t.id = otherTable_fkid)
    WHERE t.col1 is null;

  • How can I increase the thumbnail size when using Safari to upload an image to a website?

    I upload many images to multiple websites and when using Safari to upload these images, the thumbnails are so small I can barely make out what the image is. I can easily figure out how to increase the thumbnail size when viewing them in Finder and set the default to my liking, but I cannot seem to find a way to do this in Safari. The last topic I saw on this was form 2013 and have not seen any update. Is there a way to do this?

    Delete all unused, invisible layers.
    Sometimes zip compression is better than jpg compression (in the pdf output settings). Zip is lossless, and works better with non gradient colour or no images.
    Flattening the image before you save it to pdf can reduce the file size if you are using jpg compression.
    Post a preview of your pdf and we can comment further on how to reduce the file size.

  • How to totally turn off data traffic when using ma...

    Nokia N8-00:
    I only use the integrated gps and have turned off the assisted gps, net based gps and Wi-Fi/Network but when accessing maps it still generates data traffic.
    Normally this is´nt a problem but when traveling abroad data traffic costs a small fortune.
    In my old N95 when I downloaded offline maps and turned everything but integrated gps off there was no data traffic at all but even after the latest maps updates (i.e. yesterday) it appears that the maps still needs downloading when accessed...
    Any suggestions how to completely avoid data traffic when using maps?

    Set all destinations to always ask and select no whenever the phone gives you a request, set Maps to offline, and set location to just use intergrated GPS. By the way, just been to Portugal using Vodafone and data charges only about £5 for week, and they've just improved allowances, may be worth checking your service providers web site and see if it's necessary to bother about data roaming, they all tend to follow each other, and Data roaming charges in europe seem to be coming down !
    If I have helped at all, a click on the White Star is always appreciated :
    you can also help others by marking 'accept as solution' 

  • Can't get sound to record when using isight in my macbook pro

    for some reason it just records the video no audio when using my macbook pro. any thoughts?

    flux302 wrote:
    for some reason it just records the video no audio when using my macbook pro. any thoughts?
    Verify your iMovie "Voiceover" audio source is set to use your MBP's internal Mic before you record.
      http://docs.info.apple.com/article.html?path=iMovie/7.0/en/10311.html
    (You might also need to change it in System Preferneces > Sound > Input.)
    Also verify the microphone's "Level" is not muted or adjusted too low in either place.
    Mac Pro Quad Core (Early 2009) 2.93Ghz w/Mac OS X (10.6.2)  MacBook Pro (13 inch, Mid 2009) 2.26GHz (10.6.2)
    LED Cinema Display  G4 PowerBook 1.67GHz (10.4.11)  iBookSE 366MHz (10.3.9)  External iSight

  • How do you turn off Flash audio when using captivate Nav bar?

    Hi Guys and Girls
    I have an imported flash file that plays an audio track,
    I have no problem turning the audio off, when the user uses
    the button within the flash file to go to the next slide in the
    captivate movie...
    on(release){
    stopAllSounds();
    _root.rdcmndNextSlide = 1;
    BUT if the user decides to use the navigation bar within the
    captivate movie it all goes pair shape.. The flash audio continues
    to play into the next slide. Anyone have a know how to solve this
    problem?
    How do you tell flash to stop playing the audio when using
    the captivate navigation bar?
    (The flash file is a flip book and the audio NEEDS to stay
    within the flash file)
    Cheers
    Aquil0

    Thank you! Thank you! Thank you! This totally solved my issue. I had a Captivate 4 movie using an embeded animation that had audio. It would play the audio again when the next slide appeared. I have to use Captivate 4, because my audience still uses Flash 7 (yikes). However, if you have Captivate 5 and are having this problem there is a widget that solves this issue: http://blogs.adobe.com/captivate/2010/11/animations-%E2%80%93-audio-sync-issue.html#commen t-3872
    Thanks!
    EliteEraser

  • How to do "java Program 50 7" when using Eclipse?

    If you use the command-line environment to compile and run a java program called Sample.java instead of using Eclipse, you could compile by writing "java Sample 30 5" or replace the 30 and 5 with other numbers (lets suppose the Sample.java needs 2 int inputs). How would you do the equivalent of that when using Eclipse?
    Thanks!

    In the Run , there is an arguments tab ..

  • How do i get mail notifications -sounds when using hotmail

    Hey everyone,  I know theres a way to do it but haven't figured it out yet.  How do I get a sound notification when I get new mail - currently using hotmail on my ipad.   Thanks

    This is a general setting for all mail.
    Settings > Notifications > Mail
    Configure it the way you want..........

Maybe you are looking for

  • My phone has just up graded the new updates and the ring tone i purchased from itune will not go back on my phone any help please

    my iphone has just updated the lastest upgrade and i have lost my purchased ring tones they are still in my itunes but will not sync with my phone any help please

  • TX F-30

    Hi, Someone know the diference between TX F-30 and FB05?? I found a Bapi POSTING_INTERFACE_CLEARING I would like to know if I can use this bapi for the same things that TX F-30 Thanks

  • How to uninstall iTunes for Mac OS X?

    Online it says I can unistall iTunes for my Mac but I have to have iTunes for OS X so it will not let me delete the application & uninstall it. How do you get past this step?

  • Labview exe in web browser

    hi i want to open or run labview exe or vi on web browser by calling html page link . i created the html page of  vi  which is statup vi  of my application but this required application already in running condition, and i want to open and run vi by c

  • Sculpture/guitar

    anyone know of a way to make sculpture work with an electric guitar? if so how.thanks