Simple query but not using index..please help??

I do have this column indexed. Why my query is not using this index?
Any help .
select count(*) from v_dis_sub_har;
SQL>
  COUNT(*)
   4543289
1 row selected.
SQL>
select vzw_vendor_id , count(*)
from v_dis_sub_har
group by vzw_vendor_id
SQL>   2    3    4 
VZW_VENDOR_ID   COUNT(*)
       200091     908653
       200013     908659
       200012     908659
       200057     908659
       200031     908659
5 rows selected.
SQL> SQL>
explain plan for
select
event_seq
from v_dis_sub_har b 
where b.VZW_VENDOR_ID='200013'
-- and b.status='P' and b.extract_date is null
SQL>   2    3    4    5    6    7 
Explained.
SQL> SQL>
select plan_table_output from table(dbms_xplan.display)
SQL> SQL>   2 
PLAN_TABLE_OUTPUT
Plan hash value: 2852398983
| Id  | Operation         | Name          | Rows  | Bytes | Cost (%CPU)| Time     |
|   0 | SELECT STATEMENT  |               |   908K|  7986K|  3132  (16)| 00:00:38 |
|*  1 |  TABLE ACCESS FULL| V_DIS_SUB_HAR |   908K|  7986K|  3132  (16)| 00:00:38 |
Predicate Information (identified by operation id):
PLAN_TABLE_OUTPUT
   1 - filter("B"."VZW_VENDOR_ID"=200013)
13 rows selected.
SQL> SQL>

You are right Justin. Oracle is not stupid as you may want to say some times when things do not happen according to you. I just created a bitmap index on status field and look what appened. Som times it uses bitmap index and some times it does not. And the reason is clear. Row count by status. 'S' status uses bitmap index where 'P' does not.
Thanks for your help.
select   status, count(*)
from v_dis_sub_har
group  by status
;SQL>   2    3    4 
S   COUNT(*)
A    5844982
P    2312759
S      20178
3 rows selected.
SQL>
explain plan for
select
event_seq
from v_dis_sub_har b 
where
--b.VZW_VENDOR_ID=200013
--  and
b.status='S'
--and b.extract_date is null
select plan_table_output from table(dbms_xplan.display)
SQL>   2    3    4    5    6    7    8    9   10 
Explained.
SQL> SQL> SQL> SQL>   2 
PLAN_TABLE_OUTPUT
Plan hash value: 829738689
| Id  | Operation                    | Name                         | Rows  | Bytes | Cost (%CPU)| T
ime     |
PLAN_TABLE_OUTPUT
|   0 | SELECT STATEMENT             |                              | 20290 |   118K|  2772   (1)| 0
0:00:34 |
|   1 |  TABLE ACCESS BY INDEX ROWID | V_DIS_SUB_HAR                | 20290 |   118K|  2772   (1)| 0
0:00:34 |
|   2 |   BITMAP CONVERSION TO ROWIDS|                              |       |       |            |
        |
|*  3 |    BITMAP INDEX SINGLE VALUE | V_DISPATCH_SUBSCRIPTION_NDX2 |       |       |            |
        |
PLAN_TABLE_OUTPUT
Predicate Information (identified by operation id):
   3 - access("B"."STATUS"='S')
15 rows selected.
SQL> SQL> set line 120
SQL> /
PLAN_TABLE_OUTPUT
Plan hash value: 829738689
| Id  | Operation                    | Name                         | Rows  | Bytes | Cost (%CPU)| Time     |
|   0 | SELECT STATEMENT             |                              | 20290 |   118K|  2772   (1)| 00:00:34 |
|   1 |  TABLE ACCESS BY INDEX ROWID | V_DIS_SUB_HAR                | 20290 |   118K|  2772   (1)| 00:00:34 |
|   2 |   BITMAP CONVERSION TO ROWIDS|                              |       |       |            |          |
|*  3 |    BITMAP INDEX SINGLE VALUE | V_DISPATCH_SUBSCRIPTION_NDX2 |       |       |            |          |
PLAN_TABLE_OUTPUT
Predicate Information (identified by operation id):
   3 - access("B"."STATUS"='S')
15 rows selected.
SQL>
explain plan for
select
event_seq
from v_dis_sub_har b 
where
--b.VZW_VENDOR_ID=200013
--  and
b.status='P'
--and b.extract_date is null
select plan_table_output from table(dbms_xplan.display)
      SQL>   2    3    4    5    6    7    8    9   10 
Explained.
SQL> SQL> SQL> SQL>   2 
PLAN_TABLE_OUTPUT
Plan hash value: 2852398983
| Id  | Operation         | Name          | Rows  | Bytes | Cost (%CPU)| Time     |
|   0 | SELECT STATEMENT  |               |  2325K|    13M|  5784  (18)| 00:01:10 |
|*  1 |  TABLE ACCESS FULL| V_DIS_SUB_HAR |  2325K|    13M|  5784  (18)| 00:01:10 |
Predicate Information (identified by operation id):
PLAN_TABLE_OUTPUT
   1 - filter("B"."STATUS"='P')
13 rows selected.
SQL>

Similar Messages

  • "Tables are not using indexes"-Please help

    We have a new database , version
    Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - 64bi
    PL/SQL Release 10.2.0.1.0 - Production
    CORE 10.2.0.1.0 Production
    TNS for IBM/AIX RISC System/6000: Version 10.2.0.1.0 - Productio
    NLSRTL Version 10.2.0.1.0 - Production
    We have created Indexes for the tables and analysed the table. Problem is , non of the tables are using indexes. Explain paln for the sql queries are showing full table scan.
    Kindly let me know any parameter I have to change or is there any setttings needed on database level?
    Thanks in advance.
    Regards,
    Chotu

    What is your optimizer mode?
    Another question why you want to use indexes? Use of indexes depends,
    Here is a simple example
    test@>ed
    Wrote file afiedt.buf
      1  explain plan for
      2  select c.cname from mytable c, mytable1 m
      3* where c.cname=m.cname
    test@>/
    Explained.
    test@>SELECT PLAN_TABLE_OUTPUT FROM TABLE(DBMS_XPLAN.DISPLAY());
    PLAN_TABLE_OUTPUT
    Plan hash value: 2460944079
    | Id  | Operation         | Name         | Rows  | Bytes | Cost (%CPU)| Time     |
    |   0 | SELECT STATEMENT  |              |     8 |    64 |     1   (0)| 00:00:01 |
    |   1 |  NESTED LOOPS     |              |     8 |    64 |     1   (0)| 00:00:01 |
    |   2 |   INDEX FULL SCAN | C_MYTAB_IDX  |     8 |    32 |     1   (0)| 00:00:01 |
    |*  3 |   INDEX RANGE SCAN| C_MYTAB1_IDX |     1 |     4 |     0   (0)| 00:00:01 |
    Predicate Information (identified by operation id):
       3 - access("C"."CNAME"="M"."CNAME")
    15 rows selected.
    test@>explain plan for
      2  select * from mytable;
    Explained.
    test@>SELECT PLAN_TABLE_OUTPUT FROM TABLE(DBMS_XPLAN.DISPLAY());
    PLAN_TABLE_OUTPUT
    Plan hash value: 1229213413
    | Id  | Operation         | Name    | Rows  | Bytes | Cost (%CPU)| Time     |
    |   0 | SELECT STATEMENT  |         |     8 |    32 |     3   (0)| 00:00:01 |
    |   1 |  TABLE ACCESS FULL| MYTABLE |     8 |    32 |     3   (0)| 00:00:01 |
    8 rows selected.As you see MYTABLE has an index but it not always uses that index it depends on the need.
    sql queries are showing full table scan this is a not a curse. So unless you are having some problem. You should not change queries only because to avoid full table scans, there is no rule that indexes should always be used in every case.
    Adith

  • My macbook won't start up i have used the option command p r while holding down power button but not done.. please help guys

    my macbook won't start up i have used the option command p r while holding down power button but not done.. please help guys

    It not polite to repost asking fro more help three minutes after initial post.
    Recovery mode is Command & R keys after depressing and releasing the Power button  for a normal startup.
    OS X: About OS X Recovery - Apple Support
    That only works for Lion and later.
    What exactly happens when your try to boot to Recovery?
    Try starting in Safe Mode resetting the SMC and NVRAM/PRAM
    OS X: What is Safe Boot, Safe Mode?
    Intel-based Macs: Resetting the System Management Controller (SMC)
    About NVRAM and PRAM
    What model MacBook Pro and what OSX version was on the Mac?
    Have you tried booting from an OSX install DVD?
    When you try to start doe the Power light light?
    This is the Mac Pro desktop forum. I requested your post be moved to the MacBook Pro laptop forum.

  • Hi, i just updated my iphone 3gs to iso5 now it will not activate ive ''try again'' alot but not getting anywere please help!!

    hi, i just updated my iphone 3gs to iso5 now it will not activate ive pressed ''try again'' alot but not getting anywere please help! i need my phone for work not had it too long and really annoyed lol thanks,

    Sorry, but Apple does not provide a downgrade path for iOS.
    Because downgrading is unsupported by Apple we cannot discuss it on these forums, but you can use Google to find information on how to install an older version of iOS on any device.
    Note that you will void the warranty and loose official support by Apple.
    Feel free to let Apple know at http://www.apple.com/feedback
    Anyway, give a try resetting all your settings:
    Settings > General > Reset > Reset All Settings

  • I have purchased adobe pdf pack so i can delete some text from my converted files, this will only let me add text but not delete any, please help

    i have purchased adobe pdf pack so i can delete some text from my converted files, this will only let me add text but not delete any, please help

    I tyhink that you need ExportPDF, Adobe ExportPDF (read only). In any case, thius may help: Cancel your membership or subscription | Acrobat.com online services

  • After stopping FF when I restart it , I get a pop up displaying Firefox already running but not responding. Please Help?

    After stopping FF when I restart it , I get a pop up displaying Firefox already running but not responding. Please Help?

    There are several possible causes, see [[Firefox is already running but is not responding]].

  • IPod recognised by computer but not by iTunes, Please Help!!

    When i connect my iPod to my computer, the 'do not disconnect' screen appears , and my ipod is shown in 'my computer', but not on iTunes please can anyone help and give suggestions. All replies are gratefully appreciated.
    Kayleigh xxxxxxx

    Peter,
    Peter. I had the same problem (only after installing 5.0.1). The only solution I found to work was to uninstall 5.0.1 and install the previous version that came on the packaged disk.
    Something I noticed, however, is that you can still download and successfully run the most recent iPod updater software. The 9/23/05 iPod updater release works just fine with iTunes 4.7., but it would not recognize the iPod when running 5.0.1 (iPod service error). There is clearly a commong problem with many Windows users with the 5.0.1 release. Don't know if it's a bad iPod service script or what...but it doesn't work for a lot of users (although I, too, had access to the iPod as an external drive in explorer). Haven't seen anything from Apple on it, though.
    Would like to see this fixed, soon!

  • Query can not use index

    1,i found a sql :select userid,repute from user_attribute where
    repute>3000 order by repute desc
    cost heavily;
    SELECT STATEMENT Cost = 637
    SORT ORDER BY
    TABLE ACCESS FULL USER_ATTRIBUTE
    2,i use: select index_name from user_indexes where table_name
    = 'USER_ATTRIBUTE'
    INDEX_NAME
    IDX_USER_ATTRIBUTE_FACE
    IDX_USER_ATTRIBUTE_POWER
    IDX_USER_ATTRIBUTE_REPUTE
    IDX_USER_ATTRIBUTE_USERID
    so column repute has indexed
    3, i use CBO with analysize shema compute
    optimizer_index_caching integer 99
    optimizer_index_cost_adj integer 5
    4,i use: select /*index(IDX_USER_ATTRIBUTE_REPUTE)*/
    userid,repute from user_attribute where repute>3000 order by
    repute desc
    i got same explain plan as old
    5,why it can not use index to query,thanks.

    I think your optimizer hint syntax is wrong. you need a "+"
    sign to indicate that the comment block is an optimizer hint,
    and the table name is not optional in the index hints
    select /*+ index(user_attribute
    IDX_USER_ATTRIBUTE_REPUTE)*/
    userid,repute from user_attribute where repute>3000 order
    by
    repute desc
    also, try ...
    select /*+ index_desc(user_attribute
    IDX_USER_ATTRIBUTE_REPUTE)*/
    userid,repute from user_attribute where repute>3000
    This should order the result for you.

  • Same Conect By query workds fine in 9i but not in 10g - Please help

    We recently moved our project from 9i to 10g. A connect by query works fine in 9i environment but same not working in 10g environment. Please help.
    While trying with a sample table, that also behaves samem way. Please find the query and help on how to solve.
    create table test_connect_by (
    parent number,
    child number,
    constraint uq_tcb unique (child)
    insert into test_connect_by values ( 5, 2);
    insert into test_connect_by values ( 5, 3);
    insert into test_connect_by values (18,11);
    insert into test_connect_by values (18, 7);
    insert into test_connect_by values (17, 9);
    insert into test_connect_by values (17, 8);
    insert into test_connect_by values (26,13);
    insert into test_connect_by values (26, 1);
    insert into test_connect_by values (26,12);
    insert into test_connect_by values (15,10);
    insert into test_connect_by values (15, 5);
    insert into test_connect_by values (38,15);
    insert into test_connect_by values (38,17);
    insert into test_connect_by values (38, 6);
    insert into test_connect_by values (null, 38);
    insert into test_connect_by values (null, 26);
    insert into test_connect_by values (null, 18);
    COMMIT;
    In Oracle 10g:
    SQL> select level, lpad(' ',2*(level-1)) || to_char(child) s
    2 from test_connect_by
    3 start with level = 1
    4 connect by prior child = parent;
    no rows selected
    In Oracle 9i:
    SQL> select level, lpad(' ',2*(level-1)) || to_char(child) s
    2 from test_connect_by
    3 start with level = 1
    4 connect by prior child = parent;
    LEVEL S
    1 2
    1 3
    1 10
    1 5
    2 2
    2 3
    1 9
    1 8
    1 11
    1 7
    1 13
    1 1
    1 12
    1 15
    2 10
    2 5
    3 2
    3 3
    1 17
    2 9
    2 8
    1 6
    1 38
    2 15
    3 10
    3 5
    4 2
    4 3
    2 17
    3 9
    3 8
    2 6
    1 26
    2 13
    2 1
    2 12
    1 18
    2 11
    2 7
    39 rows selected.

    Hi,
    user10739895 wrote:
    It works fine and gives result without the "START WITH LEVEL = 1".
    However, in 9i, we get the result with the clause "START WITH LEVEL = 1" and after migrating, now in 10g, we are not getting the result. Is it like in 10g, if it is Level 1, we should not specify?
    Also, please clarify, is it like, if we don't specify the default is Level 1? Conceptually, LEVEL is assigned when rows enter the result set. Rows that enter because of the START WITH clause, by definition, have LEVEL=1. Rows that enter because of CONNECT BY have the LEVEL of the row to which they are connected, plus 1.
    "START WITH LEVEL = 1" returns no rows when I try it in Oracle 11.1.0.
    I suggest not using it.
    If you don't have a START WITH clause, you'll START WITH every row in the table. That seems to be what you got in Oracle 9. Is that what you want? If so, then just don't use a START WITH clause.

  • Simple array comparison not working. Please HELP!

    I have been struggling to solve this problem for a few days now, and I'm slowly losing my mind.
    I am in Adobe Acrobat 10.
    I have a group of button fields called: btn0, btn1, btn2, etc.
    I have a group of text fields called: txt0, txt1, txt2, etc.
    I have a script that takes the value of txt0 and makes it the caption for btn0, and so on.
    I have a script that sets the MouseUp action of btn0 to setFocus to txt0, and so on.
    These scripts work fine.
    I have a script that takes the values of all the txt fields and puts them in an array, and sorts it.
    I have a script that takes the array[0] item and makes it the caption for btn0, and so on (alphabetizing my list of buttons).
    Those scripts work fine.
    I am trying to compare the value of the array[0] item to each of the txt fields to find the match, and then set the MouseUp action of btn0 to setFocus to the matching txt field, and so on (so my alphabetized list points to the correct locations).
    This is where I'm at a loss.
    Here is what I have:
    //specified the txt fields
    var txt0 = this.getField("Z name");
    var txt1 = this.getField("A name");
    //etc.
    //put their values into an array called rxArray
    var rxArray = [txt0.value, txt1.value]; //etc.
    //sorted the array
    rxArray.sort();
    //set the captions equal to the sorted array items
    for (var i = 0; i < 5; i++) {
        var b = ("btn" + i);
        this.getField(b).buttonSetCaption(rxArray[i]); //works fine; alphabetizes the list of buttons
        //below is what goes wrong
        for(var x = 0; x < 5; x++) {
            var r = ("txt" + x);
            if(rxArray[i] == r.value){
                var s = (r + ".setFocus();");
                this.getField(b).setAction("MouseUp", s);
    //end
    Here is what I know:
    The alphabetizing and labeling works fine, but the buttons' MouseUp scripts don't work at all. Nothing happens.
    If I change the following piece of the above script:
            if(rxArray[i] == r.value){
                var s = (r + ".setFocus();");
                this.getField(b).setAction("MouseUp", s);
    To this:
            if(rxArray[i] == txt1.value){
                var s = (r + ".setFocus();");
                this.getField(b).setAction("MouseUp", s);
    Because rxArray[0] does equal the value of txt1 ("A name"), then the MouseUp script for btn0 gets set to:
    txt4.setFocus();
    So I know that, each time the nested loop runs, the if statement is true, and the setFocus script updates. Until the end of the loop, leaving the setFocus as the last item run. So why doesn't my script work? It should only update the setFocus script IF the array item matches the txt field, and should set it to THAT txt field.
    Please please help. I know I'm missing something simple in there somewhere.

    @Try67:
    That's a good question. I was running into some other issues and have revamped my code. Here is what I have in my test file:
    A list of five buttons and a list of five text fields. One additional button that sets the focus to the next empty text field to add a new item, and two additional buttons, one that sorts my list alphabetically, and one that unsorts it.
    with the following field names
    The sort button calls function sortName and the unsort calls function sortNumber (the order of entry).
    Here are those scripts in final form:
    function sortName() {
    //first reset the captions for the buttons to blank
    for (var a = 0; a < 5; a++) {
        var b = ("btn" + a);
        this.getField(b).buttonSetCaption("");
    var txt0 = this.getField("t0");
    var txt1 = this.getField("t1");
    var txt2 = this.getField("t2");
    var txt3 = this.getField("t3");
    var txt4 = this.getField("t4");
    var rxArray = [txt0.value, txt1.value, txt2.value, txt3.value, txt4.value];
    for(var m = rxArray.length - 1; m > -1; m--){
        if(rxArray[m] == ""){
            rxArray.splice(m, 1);
    rxArray.sort();
    var newArray = [txt0, txt1, txt2, txt3, txt4];
    for(var n = newArray.length - 1; n > -1; n--){
        if(newArray[n].value == ""){
            newArray.splice(n, 1);
    for (var i = 0; i < rxArray.length; i++) {
        var b = ("btn" + i);
        this.getField(b).buttonSetCaption(rxArray[i]);
        for (var x = 0; x < newArray.length; x++) {
            if(rxArray[i] == newArray[x].value){
                var s = ("this.getField('" + newArray[x].name + "').setFocus();");
                this.getField(b).setAction("MouseUp", s);
    //end
    function sortNumber() {
    var txt0 = this.getField("t0");
    var txt1 = this.getField("t1");
    var txt2 = this.getField("t2");
    var txt3 = this.getField("t3");
    var txt4 = this.getField("t4");
    var newArray = [txt0, txt1, txt2, txt3, txt4];
    for (var x = 0; x < newArray.length; x++) {
        var b = ("btn" + x);
        this.getField(b).buttonSetCaption(newArray[x].value);
        var s = ("this.getField('" + newArray[x].name + "').setFocus();");
        this.getField(b).setAction("MouseUp", s);
    //end
    As you can see, I've used the array lengths rather than fixed numbers, except when clearing the button values. I use a number there because there is no array to reference and didn't feel like making an array just for that. The number of buttons won't change.
    I've also added in a splice() method to remove the blank entries from my arrays when appropriate (making using the array length even more important).
    The result of the sort is:
    The only quirk I've found in all this is with the Add New button, which calls function addNew, which is:
    function addNew() {
    var txt0 = this.getField("t0");
    var txt1 = this.getField("t1");
    var txt2 = this.getField("t2");
    var txt3 = this.getField("t3");
    var txt4 = this.getField("t4");
    var newArray = [txt0, txt1, txt2, txt3, txt4];
    for (var i =  newArray.length - 1; i > -1 ; i--) {
        if (newArray[i].value == "") {
            newArray[i].setFocus();
    //end
    For this, I would have though that running through the array from start to finish looking for the first empty text field and setting the focus to it would have been correct. But that resulted in the last empty text field being focused. So I reversed the for loop to run finish to start, and the result was that the first empty field was focused. Not sure why that is...

  • IPod nano (5th gen.) being recognized by computer (Windows XP) but not iTunes. Please Help.

    Hello everyone,
         When I plug in my iPod nano 5th generation, my computer is recognizing it, but iTunes is not. I just recently bought it off of a friend and it was working perfectly. Today is the first time that it wouldn't connect to iTunes. I have tried using different USB ports and that didn't work. I plugged in my sister's iPod Touch and it worked fine. I don't want to have to try to uninstall/reinstall iTunes for fear of loosing some of the information on there. I have also read several things that say that that doesn't work, so I don't see any reason to take a pointless risk. If there is anything that I can do to get it to work? I would try another computer, but my home computer is the only one that I have. I really need to get it to work ASAP. PLEASE HELP!!

    If you check other error problems linked to this issue (example errors 1437 and 1439), you will note that these recognition issues have been prevalent for a lot of iPods (not only nanos and suffles) since iTunes version 7.5 went away. Seems like Apple doesn't have a clue, and doesn't want to have a clue. Many people all over the world have come up with things that have worked for them, but none of those fixes are working for me any more. Maybe this is just Apple's way of forcing people to buy their brand computers. It stinks. I am at a total loss as to what to do to get my Nano recognized at all in iTunes, and my Shuffles to sync. Obviously we are all venting our frustrations on an Apple hosted discussion board. Equally obvious is that no one at Apple is reading this stuff, further displaying that Apple simply does NOT CARE.
    If I ever in the next couple of years or so (see, I am not very optimistic) get an HONEST answer out of Apple, or a workable solution elsewhere around the internet, I'll do a follow-up post here. But, I am not very hopeful. I think my iPods have just become expensive chunks of junk, because I am NOT going to buy an Apple computer just for them.
    [ Nano 2nd gen, shuffles 2nd gen ]

  • IPod visible in Windows but NOT in iTunes - please help!

    I just got this sexy black iPod. Too bad I can't use it! Please help!
    Here's what I've done thus far to try to troubleshoot why Windows sees my iPod but iTunes does not:
    -went through the 5 R's (http://www.apple.com/support/ipod/five_rs/) Did this twice with NO luck! I obviously was not able to do the fifth R (restore) since iTunes never saw my sexy black iPod.
    -reinstalled iTunes many times (restarted the service, deleted temp files etc)
    -went through these steps: http://docs.info.apple.com/article.html?artnum=93716
    -made sure that Terminal Services is set to Manual (in services)
    -made sure the the black thing was not on 'hold'
    -hit menu & select for 10 seconds
    -tried on a different PC with a fresh copy of WinXP Pro installed. Same thing! Windows sees the iPod but iTunes does not.
    -I ran the diagnostic and it says that my iPod is connected! What!? No it's not!
    It also seems kind of slow, however, I don't have anything to compare this to.
    I'm beginning to think that my iPod is iBroken. I'm very iDissapointed.
    Any suggestions would be greatly appreciated!
    --cheeto

    I have the exact same problem with the same sexy black iPod. Let me know if someone helps you out. Sorry I don't have a solution. I'll keep you posted.

  • Can connect to network but not internet. Please Help!!!!!!!!!

      I have a Thinkpad T-60p and have encountered a serious problem; I am unable to connect to the internet. The Thinkpad will recognize and connect to wireless networks but when I go to actually open a webpage it does not open. I spent hours troubleshooting the problem to no avail. My other laptop connects to the internet fine, so I do not think it is an issue with my router or modem. I also went to my neighbors and I was unable to connect to the internet even though I could connect to his network; once again my second computer does not have a problem. I tried what I could in the Thinkvantage wireless software but I am not that familiar with it. When I use the test connection option it just reads, “unable to connect to internet” but I have a strong signal to my network. I then tried a wired connection directly to my cable modem and my neighbors; once again it showed that I have a connection, but still will not connect to the internet. I tried disabling my Firewall and Virus software and still could not connect. I have shutdown, unplugged and reset everything. I still receive the same results. I am not sure what has happened, I have not installed any new software or hardware recently. The computer has been working great up until this morning. I ran my virus software and a free online scan as well, nothing had been detected. I called tech support and they said it was a software issue to either pay $100 for help or post in the forum. The only other option I can think of is a complete systems restore, which I am trying to avoid. Anyone have any suggestions?  
    Please Help,
    P.

    ConnectDon wrote:
    Perhaps the domain names are not resolving properly.  Instead of http://lenovo.com, try http://64.26.254.19, which is the numerical address for lenovo.com.  If you see the Lenovo home page, it will point us in the right direction.
    Don
         I will try that when I get home from work, thank you for the advice. However,I did notice that when it attempts to connect it shows the IP Address in the IE window bottom left corner. In the past it would always read connecting to "website name" but since the problem started it shows the IP address instead of the actual name.

  • Connect to Airport But NOT the Internet - Please help

    My iPod touch has never had any problems till recently with connecting to the Internet.
    I does connect to the Airport. But I cannot go to the Internet.
    The error message I keep getting is that the server stopped responding, when using Safari.
    My computer connects to the Internet no probs.
    I done as much checking as I can, what else can I do?
    Please help?

    I had a similar problem and simply unplugged my cable modem for a few seconds. When it came back up, everything connected fine.

  • Upon opening a new tab, it auto selects the address bar. Also when closing firefox, you must wait 5 seconds before re-opening or you get an error saying it's already open but not responding. Please help!

    Please help with this annoying problem - the firefox main start page that runs off google accel. should set it to the dialog box to search so you can begin typing A.S.A.P
    Same with other websites like bing and google.

    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > Appearance/Themes).
    *Don't make any changes on the Safe mode start window.
    *https://support.mozilla.com/kb/Safe+Mode
    *https://support.mozilla.com/kb/Troubleshooting+extensions+and+themes
    Try to wait a bit longer before reopening Firefox to give Firefox more time to close completely.
    Try to use "Firefox/File > Exit" (Mac: "Firefox > Quit"; Linux: "File > Quit") to close Firefox if you are currently doing that by clicking the close X on the title bar.
    See "Hang at exit":
    *http://kb.mozillazine.org/Firefox_hangs
    *https://support.mozilla.com/kb/Firefox+hangs

Maybe you are looking for