Oracle listens on a second randomly selected port

Hello everybody,
Could someone, please, help me to understand what's going on with my oracle 9.2 db running on Linux.
In addition to known and well defined TCP/IP port 1521 listener uses my oracle also starts listening on some other randomly chosen by itself TCP/IP port.
Let's say right now it listens on port 32039 while during the previous restart it listened on 5389 and etc.
Each oracle db restart (I use dbstart / dbshut cycle) gives me a unique line after "netstat -tanp | grep -e LISTEN" execution:
tcp 0 0 0.0.0.0:32039 0.0.0.0:* LISTEN 2793/ora_d000_db891
tcp 0 0 0.0.0.0:1521 0.0.0.0:* LISTEN 2820/tnslsnr
I can stop listener but that random port will be still there... it makes me nervous.
I asked this question at Oracle-Linux forum and one of the linux experts kindly suggested me to rise this issue over here as well after reporting that he has the same strange listening "creature" within his own oracle db box.
Thank you very much for your help
jeff

That is the way Oracle operates.
For dedicated server operations, the initial connection request is done to the listener. The listener 'spawns' a server process for the connection request. That server process finds a new port and the connection request is turned into a full connection on that new port. The listener is then no longer involved with the connection.
The d000_ is the shared server's dispatcher. It gets a port when the database decides a dispatcher is required, and connection requests are then transferred to an available dispatcher. There can be many dispatchers.
In some cases (such as the XML-related service, used since Oracle8i and prevelant in XE) the dispatcher is pinned to a specific port to support a specific service.

Similar Messages

  • Port of the TNS Listener for the second SAP system

    Hello!
    I had problems during the installation of the second SAP system with second Oracle DB on the same host (OP is SOLARIS).
    The error occurs was faced with TNS Listener.
    (> error: TNS Listener is started)
    Which settings are applied for the TNS Listener per default in SAPINST?
    (e.g. on the same port)
    Which settings should I apply in SAPINST for TNS Listener, e.g. configure an another port?
    Thank you very much!
    regards
    Thom

    Hello!
    Thank you very much!
    Even that is the question.
    1) If I have selected "ok" during the installation and no further values selected, will SAPINST check whether the Port 1527 is allocated by the first SAP System and create the second Port 1528?
    2) Do I have one TNS Listener with two file entries or two TNS Listener?
    Thank you very much!
    regards
    Thom

  • Trying to change Oracle listener port 1521 to nodefault port on Oracle RAC

    Could somebody please help me in the process of changing teh Oracle listener port 1521 to a non-default port on an Oracle RAC environment. I am total of four instance.
    Regards.

    Please read carefully about LOCAL_LISTENER parameter, you shouldn't put there just hostname....
    Another way to do so - statically register database SID in listener. You should do it in listener.ora file, please read carefully documentation, otherwise you can use netca utility - it could make configuration for you properly.

  • Oracle 11g:Query to return only 1 to 1 relationship & random selection

    Hi
    I have a complex query to modify but I have below the sample tables and data with only very few fields(only affected fields).
    Query based on 2 tables b_test and s_test.
    Pls see below.
    create table b_test(building_id number not null,invalid varchar2(1));
    create table s_test(sub_building_id number not null,building_id number ,invalid varchar2(1),sequence_no number);
    insert into b_test values (1000,'N');
    insert into b_test values(2000,'N');
    insert into b_test values(3000,'N');
    commit;
    insert into s_test values(1,1000,'N',90);
    insert into s_test values(2,1000,'N',91);
    insert into s_test values(3,1000,'N',92);
    insert into s_test values(4,1000,'Y',93);
    insert into s_test values(5,NULL,'N',NULL);
    insert into s_test values(1,2000,'N',94);
    insert into s_test values(2,2000,'N',95);
    insert into s_test values(3,2000,'N',96);
    insert into s_test values(4,2000,'N',97);
    insert into s_test values(5,2000,'N',98);
    insert into s_test values(6,NULL,'N',NULL);
    insert into s_test values(10,3000,'N',99);
    insert into s_test values(11,3000,'N',100);
    commit;The query below returns all rows required:(also see results:)
    select b.building_id,b.invalid,s.sub_building_id,s.sequence_no from b_test b,
    (select * from s_test where invalid='N') s
    where b.building_id = s.building_id(+)
    and b.invalid='N'
    Results:
    BUILDING_ID INVALID      SUB_BUILDING_ID     SEQUENCE_NO
    1000              N     1                     90
    1000             N     2                     91
    1000             N     3                     92
    2000             N     1                     94
    2000             N     2                     95
    2000             N     3                     96
    2000             N     4                     97
    2000             N     5                     98
    3000             N     10                      99
    3000             N     11                     100Now there are 2 requirements:
    1)How can the above query be changed so that 1:1 relationship if sub_building_id is returned?i.e For 1 building_id, only show 1 sub_building(This could be a random selection)
    (Pls help with query)
    The results would be like
    BUILDING_ID INVALID     SUB_BUILDING_ID     SEQUENCE_NO
    1000               N     1                      90
    2000               N     1                      94
    3000               N     11                     1002)How can the same SEQUENCE_NO be shown for all sub_buildings for the same building? (Pls help with query)
    The results will be:
    BUILDING_ID INVALID     SUB_BUILDING_ID     SEQUENCE_NO
    1000             N     1                       90
    1000             N     2                       90
    1000             N     3                       90
    2000             N     1                       94
    2000              N     2                       94
    2000             N     3                       94
    2000             N     4                       94
    2000             N     5                       94
    3000             N     10                       99
    3000             N     11                       99Many thanks!
    Edited by: Krithi on 08-Nov-2012 08:48
    Edited by: Krithi on 08-Nov-2012 08:55

    Krithi wrote:
    Hi
    I have a complex query to modify but I have below the sample tables and data with only very few fields(only affected fields).
    Query based on 2 tables b_test and s_test.
    Pls see below.
    create table b_test(building_id number not null,invalid varchar2(1));
    Thanks for posting the CREATE TABLE and INSERT statements, and your existing query; that's very helpful.
    The query below returns all rows required:(also see results:)
    select b.building_id,b.invalid,s.sub_building_id,s.sequence_no from b_test b,
    (select * from s_test where invalid='N') s
    where b.building_id = s.building_id(+)
    and b.invalid='N'
    Results:
    BUILDING_ID INVALID      SUB_BUILDING_ID     SEQUENCE_NO
    1000              N     1                     90
    1000             N     2                     91
    1000             N     3                     92
    2000             N     1                     94
    2000             N     2                     95
    2000             N     3                     96
    2000             N     4                     97
    2000             N     5                     98
    3000             N     10                      99
    3000             N     11                     100
    When I run your query, I get NULL for sequence_no on the last 2 rows, where building_id=3000. The numbers 99 and 100 don't seem to occur in either table. Did you post the worng sample data and/or results?
    >
    Now there are 2 requirements:
    1)How can the above query be changed so that 1:1 relationship if sub_building_id is returned?i.e For 1 building_id, only show 1 sub_building(This could be a random selection)
    (Pls help with query) Here's one way:
    WITH       got_r_num  AS
         SELECT  sub_building_id
         ,     building_id
         ,     sequence_no
         ,     ROW_NUMBER () OVER ( PARTITION BY  building_id
                                   ORDER BY          sequence_no
                           )         AS r_num
         FROM    s_test
         WHERE     invalid     = 'N'
    SELECT    b.building_id
    ,       b.invalid
    ,       r.sub_building_id
    ,       r.sequence_no
    FROM             b_test     b
    LEFT OUTER JOIN      got_r_num  r  ON  r.building_id  = b.building_id
    WHERE     NVL ( r.r_num
               , 1
               )          = 1
    ORDER BY  b.building_id
    ;This is called a Top-N Query , because we're picking N items (N = 1 in this case) from the top of an ordered list. What makes one item the "top", and another one "lower"? That's determined by the analytic ORDER BY clause, in this case
    ORDER BY      sequence_noThat means the row with the lowest sequence_no (for each building_id) will get r_num=1. If you want a random row from that building_id to be chosen as #1, then you can change the analytic ORDER BY clause to
    ORDER BY      dbms_random.valueYou can ORDER BY anything you like, even a constant, but you must have an analytic ORDER BY clause. ROW_NUMBER requires an analytic ORDER BY clause.
    The results would be like
    BUILDING_ID INVALID     SUB_BUILDING_ID     SEQUENCE_NO
    1000               N     1                      90
    2000               N     1                      94
    3000               N     11                     100
    Again, I don't see where the 100 comes from. The results I get are:
    BUILDING_ID I SUB_BUILDING_ID SEQUENCE_NO
           1000 N               1          90
           2000 N               1          94
           3000 N              11
    2)How can the same SEQUENCE_NO be shown for all sub_buildings for the same building? (Pls help with query)
    SELECT    b.building_id
    ,       b.invalid
    ,       s.sub_building_id
    ,       MIN (s.sequence_no) OVER ( PARTITION BY  s.building_id)
                            AS seq_no
    FROM             b_test  b
    LEFT OUTER JOIN      s_test  s  ON  s.building_id  = b.building_id
                                AND s.invalid      = 'N'
    The results will be:
    BUILDING_ID INVALID     SUB_BUILDING_ID     SEQUENCE_NO
    1000             N     1                       90
    1000             N     2                       90
    1000             N     3                       90
    2000             N     1                       94
    2000              N     2                       94
    2000             N     3                       94
    2000             N     4                       94
    2000             N     5                       94
    3000             N     10                       99
    3000             N     11                       99
    Again, I don't see where you get sequence_no = 99. The results I get are:
    BUILDING_ID I SUB_BUILDING_ID     SEQ_NO
           1000 N               1         90
           1000 N               2         90
           1000 N               3         90
           2000 N               1         94
           2000 N               2         94
           2000 N               5         94
           2000 N               3         94
           2000 N               4         94
           3000 N              10
           3000 N              11Edited by: Frank Kulash on Nov 8, 2012 12:12 PM
    Added explanation and results
    Edited by: Frank Kulash on Nov 8, 2012 12:28 PM
    It looks like you cahnged your sample data from
    insert into s_test values(10,3000,'N',NULL);
    insert into s_test values(11,3000,'N',NULL);to
    insert into s_test values(10,3000,'N',99);
    insert into s_test values(11,3000,'N',100);The queries I posted are niow getting 99, like you requested.

  • Ipod randomly selects items when newly connected

    Hallo, when I connect my Ipod Nano to the car USB port or disconnect it - the ipod nano automatically switches to random selection of next title.
    I need to stop the play and go to the main page select "Hörbuch" and start over.
    Any idea, how I can prevent random selection of title to be the default selection?
    I usually only listen to audiobooks and would not mind to configure ipod to always follow the sequence.

    See if a smc and pram reset affects anything.
    See if you get this behavior if you log into another account.

  • Oracle Listener Problem

    I am having a problem starting the Oracle Listener after a system crash on Windows NT.
    However, if I first connect to the internet and then try to restart, everything works ok.
    Why should I have to connect to the internet with my laptop in order to start the Oracle Listener?
    The message I am getting is as follows.
    C:\WINNT\Profiles\timh\Desktop>net start OracleStartORCL
    The OracleStartORCL service is starting..........
    The OracleStartORCL service was started successfully.
    C:\WINNT\Profiles\timh\Desktop>net start OracleTNSListener80
    The OracleTNSListener80 service is starting.
    The OracleTNSListener80 service could not be started.
    A system error has occurred.
    System error 1067 has occurred.
    The process terminated unexpectedly.
    null

    some more info.
    Given below is the output of status. does anything look bad or am I doing something wrong?
    for the service"abcd" it says has two instances, one of the status is unknown. does that matter is it always like that or I am asking very dumb questions?
    Please excuse me if that is the case.
    C:\lsnrctl status
    LSNRCTL for 32-bit Windows: Version 9.2.0.1.0 - Production on 23-JUL-2007 14:54:28
    Copyright (c) 1991, 2002, Oracle Corporation. All rights reserved.
    Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=servername)(PORT=1521)))
    STATUS of the LISTENER
    Alias LISTENER
    Version TNSLSNR for 32-bit Windows: Version 9.2.0.1.0 - Produc
    tion
    Start Date 23-JUL-2007 10:27:09
    Uptime 0 days 4 hr. 27 min. 19 sec
    Trace Level off
    Security OFF
    SNMP OFF
    Listener Parameter File D:\oracle\ora92\network\admin\listener.ora
    Listener Log File D:\oracle\ora92\network\log\listener.log
    Listening Endpoints Summary...
    (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=servername.domain)(PORT=1521)))
    (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=servername.domain)(PORT=8080))(Presentation=HTTP)(Session=RAW))
    (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=servername.domain)(PORT=2100))(Presentation=FTP)(Session=RAW))
    Services Summary...
    Service "PLSExtProc" has 1 instance(s).
    Instance "PLSExtProc", status UNKNOWN, has 1 handler(s) for this service...
    Service "abcd" has 2 instance(s).
    Instance "abcd", status UNKNOWN, has 1 handler(s) for this service...
    Instance "abcd", status READY, has 1 handler(s) for this service...
    Service "abcdXDB" has 1 instance(s).
    Instance "abcd", status READY, has 1 handler(s) for this service...
    The command completed successfully

  • Multiple Oracle Homes - Oracle Listener failes to start after installation

    Just in case the listener fails to start after an oracle installation, please check the oracle ports in the listener.ora and tnsnames.ora, both of which are present in the following directory:
    ...\oracle\<SID>\<Ver>\NETWORK\ADMIN
    All installations should have separate listener ports eg. If the first installation has port 1527, the next one should be 1528 and so on..
    If they do not, manually change the ports and start the listeners.
    Also check SAP Note 98252. Although I didn't find it necessary (I think it applies only if you have a single listener for all oracle homes), it did give me an idea that there some config problem in the .ora files.
    Also see [this thread|Oracle Listener error in Import ABAP phase?; for related details

    hi
    thanks for the help ,
    I have been using the SQL Server , i am totally blank about Oracle
    i am totally confused with this user, and hoststring
    i logged in to the enterprise manager using System and manager password
    But i cannot connect to any database using SQL Server
    i am not remembering any user name or password i have given during installation.
    the only thing i remember is
    Global databasename = (globedb) i have given
    For SID = globedb the same name i have given
    for sys ,i have given sysdb as password
    and for system i have given systemdb as password
    with this can i do anything
    when expand the schemas ,i can see the XDB,SCOTT and SYS . how can i login to this .
    if i want to login to the scott
    what would be the username,password,and hoststring. since i haven't set any password and username ,there would be some default username ,password, and hoststring.
    if any one can help me please help me
    thanks regards

  • 2 systems with 2 Oracle Listener on Windows

    Hi Gurus,
    I am installing a 2nd system on a Windows server and want to use a separate Listener (with an own port).
    sapinst is not able to start the 2nd listener and it is also not possible to start it manually.
    The problem is that the new listener OracleQAS102TNSListener seems to point to the 1st listener parameter file.
    System parameter file is K:\oracle\DEV\102\network\admin\listener.ora
    Log messages written to K:\oracle\DEV\102\network\log\listener.log
    I already deleted the service and re-created it, but it is still the same situation. To re-cretae the service I just call lsnrctl start from the correct Oracle home directory and if the service is not avaialable it is created.
    Of course I could configure the 2nd listener within the 1st listener.ora - but I definitely do not want this!
    I checked the environment and there is no entry from the other system - so is there anybody who has an idea where the Oracle listener gets the information to take the wrong listener.ora file?
    Thank you
    Philipp

    Hi Phillipp,
    I have a server with two systems runnning 1527 and 1537 as well, and is was
    set up correctly with sapinst. I can query both listeners from the cmd.exe
    as both sidadm users by only changing the ORACLE_HOME !
    Nothing else matters.
    Login devadm -> "lsnrctl status" shows DEV configuration
    Then SET ORACLE_HOME to the other installtion
    "lsnrctl status" shows QAS configuration
    I think you need to use the net assistent to configure correctly, because on windows
    both listeners have the same name LISTENER (which does not work on UNIX at all,
    and causes shared memory problems there).
    So I suggest:
    - Remove QAS Listener
    - Stop DEV Listener
    - CREATE QAS Listener as qasadm when DEV Listener is stopped
    If you manage to get them to work one by one, stop using lsnrctl for anything else but STATUS.
    To manage the listeners, use "net start / net stop"
    Hope this helps
    Volker

  • Random selection of rows from a 2D array then subset both the rows that were selected and those that were not. Please see message below.

    For example, I have a 2D array with 46 rows and 400 columns. I would like to randomly select 46 data rows from the 2D array. By doing the random selection it means that not all individual 46 rows will be selected some rows may appear more than once as there may be some duplicates or triplicates in the random selection. The importan thing is that we will have randomly selected 46 rows of data (no matter that some rows appear more than once). Then I would like to subset these randomly selected 46 data rows (some which will be duplicated, or triplicated, etc.) and then also find and subset the rows that were not selected. Does this make sense? Then i would like to do this say 10 times for this data set. So that then I will have 2 by 10 data sets: the first 10 each with 46 rows and the other 10 with n rows depending on how many WERE NOT randomly selected. i hope that my explanation is clear. I am relatively new to Labview. It is really great so I am getting better! If anyone can help me with this problems it will be great. RVR

    Start by generating randon #s between 0 and 45. Run a for loop X times and in it use the random function, multiply the result by X and round down (-infinity). You can make this into a subVI, which you can reuse later. In the same loop, or in a different one, use Index Array to extract the rows which were selected (wiring the result out of the loop with auto indexing causes it to be rebuilt into a 2D array).
    One possible solution for the second part would be to go over the array of randomly generated numbers in a for loop and use Search 1D Array to find each of the numbers (i). If you get -1, it means the row wasn't selected and you can extract it.
    I hope this puts you on the right path. If not, don't be afraid to ask more.
    To learn more about LV, I suggest you read the LabVIEW user manual. Also, try searching this site and google for LabVIEW tutorials. Here and here are a couple you can start with. You can also contact your local NI office and join one of their courses.
    In addition, I suggest you read the LabVIEW style guide.
    Try to take over the world!

  • Spotlight is randomly selective

    Upgraded to Tiger mostly for Spotlight, to cross-ref. my research papers, except that Spotlight is randomly selective, i.e. doesn't find all the documents all the time, not even when looking for special terminology, appearing only a few times.
    Not only spooky if it can spot a document for one word but not for the next, but worthless as a research tool.
    Please help me!
    (No spelling mistakes, I've even tested copy and paste)

    Sto, the following post by John McGhie, Microsoft MVP, Word and Word for Macintosh. Consultant Technical Writer, Sydney, Australia may help:
    "Spotlight can look at only the first 100,000 bytes of any file. The question is whether or not the words you are looking for occur within bytes 0 to 99,999 in the file as it is written to disk. In Microsoft Word files, the text is not necessarily stored in the file in the order in which it appears in the document (in fact, if the document has been edited much, you can guarantee that it isn't...)
    A Word document internally is a collection of "pieces", some of those pieces 
are text. If a document were to have, for example, a graphic in the running 
header, plus a large table of styles and numbering formats, it could well be 
80 or 90 kB down the file before you even begin to see "text".
    As an interesting "test", save a copy of that document as "text only". Word 
will write it out to disk with the text in exactly the order that it prints, 
and the file will contain nothing BUT text. Then, chances are Spotlight will find the search string perfectly. Open the text version of the document and save it as a Word document. Chances are, Spotlight will still find the string, because there's still nothing much between the front of the file and the search string. Now throw a few graphics into the document, attach a template and update its styles, and move a few sentences around. Make sure one of the sentences you move is the one containing the text you are searching for (note: I said "sentences", not "paragraphs", we don't want to make things too easy for it...). Save the document and close Word. Chances are that at that point, Spotlight will be unable to find the text, because now it has been moved within the file so that now it's below Spotlight's search depth.
    In a typical Word document, something like half of the bytes in the file are 
not "text", they're formatting, graphics, styles, numbering, languages, 
fonts etc. All the usual paraphernalia that distinguishes a Word document 
from "text". And makes it difficult for search engines to index..."
    ref: http://groups.google.com/group/microsoft.public.mac.office.word/browse_thread/th read/7abd44e5c3f38b62/a2425e610a8781a8%23a2425e610a8781a8
    Now some would ask, why stop indexing at first 100,000 bytes? Well, not only could it take a lot of time, but the resulting storage could be enormous. As a developer of massive database search and management applications, a recently imported 340mb text file containing 250,000 records ended up at 1.5 gigs. Without indexing, what took 3 minutes to find something, takes less that a second with indexing.
    Good luck

  • Oracle Listener

    Dear All,
    We are unable to bring up the SAP as the Oracle Listener is not starting up. We are able to start our database but unable to start the listener.
    The following is the error message we see when we start the oracle listener.
    TNS-12547:TNS:LOST CONTACT
    TNS-12560:TNS:PROTOCOL ADAPTER ERROR
    TNS-00517: LOST CONTACT
    LINUX ERROR : 104 : CONNECTIONS RESET BY PEER
    CONNECTING TO (ADDRESS=(PROTOCOL=IPC)(KEY=PRD)
    TNS-12541:TNS:NO LISTENER
    TNS-12560:TNS:PROTOCOL ADAPTER ERROR
    TNS-00511: NO LISTENER
    LINUX ERROR:111:CONNECTION REFUSED
    CONNECTING TO (ADDRESS=(COMUNITY=SAP.WORLD)(PROTOCOL=TCP)(HOST=VIVPRD)(pORT=1527)
    TNS-12541:TNS:NO LISTENER
    TNS-12560:TNS:PROTOCOL ADAPTER ERROR
    TNS-00511: NO LISTENER
    LINUX ERROR:111:CONNECTION REFUSED
    SAP = ECC6.0
    O/S = RHEL 5.0
    DB = Oracle 10.2
    Please update us as what needs to be done.
    Best Regards
    Sumanth

    The following is the error message we see when we start the oracle listener.
    TNS-12547:TNS:LOST CONTACT
    TNS-12560:TNS:PROTOCOL ADAPTER ERROR
    TNS-00517: LOST CONTACT
    LINUX ERROR : 104 : CONNECTIONS RESET BY PEER
    CONNECTING TO (ADDRESS=(PROTOCOL=IPC)(KEY=PRD)
    TNS-12541:TNS:NO LISTENER
    TNS-12560:TNS:PROTOCOL ADAPTER ERROR
    TNS-00511: NO LISTENER
    LINUX ERROR:111:CONNECTION REFUSED
    CONNECTING TO (ADDRESS=(COMUNITY=SAP.WORLD)(PROTOCOL=TCP)(HOST=VIVPRD)(pORT=1527)
    TNS-12541:TNS:NO LISTENER
    TNS-12560:TNS:PROTOCOL ADAPTER ERROR
    TNS-00511: NO LISTENER
    LINUX ERROR:111:CONNECTION REFUSED
    SAP = ECC6.0
    O/S = RHEL 5.0
    DB = Oracle 10.2
    Please update us as what needs to be done.

  • Nmap scan listing random open ports

    Hello,
    If I issue the following command several times in a row:
    nmap -n -r -v -p1-65535 -sT 127.0.0.1
    On each run, this command would list the usual open ports (ssh etc., same as netstat), but sometimes there would be 1-3 random open ports somewhere in range 10000..60000, every run different ones. Checking listening ports with netstat never shows any such open ports. Random open ports vanish if I use nmap with -sV or -sS instead of -sT option. I can also replace localhost with LAN address and still get the same results. Could these be false-positives?
    I can reproduce this on another Arch box, but not on Ubuntu. Can ask you to try if you are getting similar results, or should I start to worry about a rootkit? Thanks.
    Cheers,
    Marko

    Seem to be false-positives, see:
    http://seclists.org/incidents/2002/Dec/136

  • In oracle rac, If user query a select query and in processing data is fetched but in the duration of fetching the particular node is evicted then how failover to another node internally?

    In oracle rac, If user query a select query and in processing data is fetched but in the duration of fetching the particular node is evicted then how failover to another node internally?

    The query is re-issued as a flashback query and the client process can continue to fetch from the cursor. This is described in the Net Services Administrators Guide, the section on Transparent Application Failover.

  • After ios 8 update has anyones ipad started randomly selecting everything? Even after ios 8.0.1 update it has still continued to do the same thing.

    After ios 8 update has anyones ipad started randomly selecting everything? Even after ios 8.0.1 update it has still continued to do the same thing making it immpossible to use ipad anymore. Has anyone had the same problem and/or knows how to fix this?

    Try a Reboot pess & hold power button & menu button hold both down until you see Apple Logo you will not lose any data This may help but the ipad 2 is a bit under powered for iOS 8 If you can a very good buy now is the iPad Air 32G Since they brought the new one out the price for this model Has come down by £120.00 That's the one I am using and it works great on iOS 8.1 Bsydd uk

  • I synced two of my email accounts via gmail's POP3 thing. But now my iphone's gmail inbox shows a random selection of emails (not most recent ones that are in my inbox). How can I make my iphone inbox match what I see when I log on using a PC?

    I synced two of my email accounts via gmail's POP3 capabilities. But now my iphone's gmail inbox only shows a random selection of emails (i.e. right now it is May 31, 2013 but the emails in my inbox are a couple from Nov 12, a few from Oct 12, and then some way older than that and so on.When I log into my gmail from a computer, I see all my emails in the logical, standard order. How can I make my iphone inbox match what I see when I log on using a PC?

    If you're trying to decide between using POP and IMAP, we encourage you to use IMAP.
    Unlike POP, IMAP offers two-way communication between your web Gmail and your email client. This means when you log in to Gmail using a web browser, actions you perform on email clients and mobile devices (ex: putting mail in a 'work' folder) will instantly and automatically appear in Gmail (ex: it will already have a 'work' label on that email the next time you sign in).
    IMAP also provides a better method to access your mail from multiple devices. If you check your email at work, on your mobile phone, and again at home, IMAP ensures that new mail is accessible from any device at any given time.
    Finally, IMAP offers a more stable experience overall. Whereas POP is prone to losing messages or downloading the same messages multiple times, IMAP avoids this through two-way syncing capabilities between your mail clients and your web Gmail.
    That is from the page that you linked- does highlighted part of message ring a bell?

Maybe you are looking for

  • Creation of Remote Cube on a view

    Hi, How do you create a remote cube on R/3 view? Thanks Suchitra

  • Oracle Forms 11g Login Screen Not Appearing

    Environment: 1 PC running RHEL5 (Red Hat Enterprise Linux version 5) Operating System 64-bit with Oracle Database 11g (64-bit) 1 PC running RHEL5 (Red Hat Enterprise Linux version 5) Operating System 32-bit with Oracle Fusion Middleware 11g (64-bit),

  • Including multiple resources into response

    In a servlet, I am including a text file and an image seperately using RequestDispatcher.include() method. But when I view the output in the browser, i see the content of the text file along with the content of the image, instead of the image itself.

  • Flash movie has border on rollover and 'disabled'

    Hi, I have a html page with a flash movie in it. When the page loads, the movie displays, but when moused over a dotted border (others note an orange border) appears around the movie. As a result the user has to click on the movie to remove the borde

  • New handlers for JDK Logging

    Does anyone know of any OpenSource Handlers for JDK Logging such as a JMS Handler, JDBC Handler, SMPT Handler or Daily Rolling File Handler? I would love to use JDK instead of Log4J, but the latter supplies these handlers (appenders) out of the box.