Having trouble wrapping query as subquery in order to sum a column

I have a query whose first column in the "select" is something like "count(distinct t.id)", and the query has a "group by" for several columns.
This generates a number of rows with a number in the first column representing the number of distinct id values in the resulting group, and several other columns.
I need to create a modified query that produces the sum of that first column.
I figured this would look something like:
select sum(total) from (select count(distinct t.id) as "total", ... from ... ... where)
I'm not able to get this to work. It appears I can't refer to the alias from the parent query, but I've tried other ways of referencing that column value, and I just can't figure it out.
I'd prefer not to have to provide the original query here. I'm hoping that I've provided enough information that someone could use to give me a useful response.

sb92075 wrote:
How do I ask a question on the forums?
SQL and PL/SQL FAQ
Handle:     david.karr
Status Level:     Pro (560)
Registered:     Mar 14, 2003
Total Posts:     911
Total Questions:     67 (50 unresolved)
I extend my condolences to you since you rarely get answers to your questions here.What would be the point of asking easy questions? :)

Similar Messages

  • Having trouble with query

    I am trying to query for a report to list aircraft by manufacturer, model name, aircraft number, destinations flown, miler per charter and the total revenue per charter, as well as total amount of revenue generated and total number of mile flown for each aircraft. This is what I have so far, I keep getting stumped when I try to sum I get error that certain lines is not single-group group function.
    -----DATA
    3 tables:
    Aircraft {PK} ac_number
    {FK} mod_code
    ac_ttaf
    ac_ttel
    ac_tter
    Model {PK} mod_code
    mod_manufacturer
    mod_name
    mod_seats
    mod_chg_mile
    Charter {PK} char_trip
    char_date
    {FK2} ac_number
    char_destination
    char_hours_flown
    char_hours_wait
    char_fuel_gallons
    char_oil_qts
    FK1} cus_code
    ---code written so far--
    --program Unit 5 Q4 Reprot of Aircraft By Renvue                         
    --author Barbara Forget                                                  
    --date February 24.2008                                                  
    --purpose to list aircraft by revenue, model, manufacturer and number    
    SELECT m.mod_manufacturer "MANUFACTURER",
    m.mod_name "A/C NAME",
    a.ac_number "A/C #",
    c.destination "AIRPORT",
    c.char_distance "TOTALMILEAGE"
    FROM hartmar.model m,
    hartmar.aircraft a,
    hartmar.charter c
    WHERE m.mod_code = a.mod_code (+)
    AND a.ac_number = c.ac_number (+)
    ORDER BY m.mod_name
    Can someone give me a little input as to how to accomplish this, I get the report as such
    MANUFACTURER A/C NAME A/C # AIR TOTALMILEAGE
    Piper Axtec 1484P BNA 352
    Piper Axtec 1484P STL 508
    Piper Axtec 1484P TYS 644
    Piper Axtec 1484P STL 472
    Piper Axtec 1484P STL 508
    Piper Axtec 1484P TYS 644
    Piper Axtec 1484P BNA 352
    Piper Axtec 1484P STL 472
    Piper Axtec 1484P STL 508
    Cessna Citation Mustang 1234C
    Cessna Citation Sovereign 2345C
    MANUFACTURER A/C NAME A/C # AIR TOTALMILEAGE
    Beechcraft KingAir 2289L GNV 1645
    Beechcraft KingAir 2289L ATL 1023
    Beechcraft KingAir 2289L GNV 1645
    Beechcraft KingAir 2289L GNV 1574
    Beechcraft KingAir 2289L ATL 936
    Beechcraft KingAir 2289L ATL 936
    Beechcraft KingAir 2289L GNV 1574
    Beechcraft KingAir 2289L ATL 1023
    Beechcraft KingAir 2289L GNV 1574
    Beechcraft KingAir 2289L GNV 1574
    Piper Navajo Chieftain 2278V GNV 1574
    MANUFACTURER A/C NAME A/C # AIR TOTALMILEAGE
    Piper Navajo Chieftain 4278Y TYS 644
    Piper Navajo Chieftain 2278V BNA 320
    Piper Navajo Chieftain 4278Y GNV 1574
    Piper Navajo Chieftain 4278Y GNV 1574
    Piper Navajo Chieftain 4278Y STL 472
    Piper Navajo Chieftain 2278V GNV 1574
    Piper Navajo Chieftain 2278V BNA 320
    Piper Navajo Chieftain 4278Y ATL 998
    Piper Navajo Chieftain 4278Y TYS 644
    Piper Navajo Chieftain 2278V MOB 884
    Piper Navajo Chieftain 4278Y TYS 646
    MANUFACTURER A/C NAME A/C # AIR TOTALMILEAGE
    Piper Navajo Chieftain 4278Y ATL 936
    Piper Navajo Chieftain 2278V MQY 312
    Piper Navajo Chieftain 2278V MQY 312
    Piper Navajo Chieftain 4278Y ATL 936
    Piper Navajo Chieftain 4278Y TYS 646
    Piper Navajo Chieftain 2278V MOB 884
    Piper Navajo Chieftain 4278Y ATL 998
    Piper Navajo Chieftain 4278Y STL 472
    Piper Navajo Chieftain 4278Y ATL 998
    Piper Navajo Chieftain 4278Y GNV 1574
    Piper Navajo Chieftain 2278V BNA 320
    MANUFACTURER A/C NAME A/C # AIR TOTALMILEAGE
    Piper Navajo Chieftain 4278Y TYS 644
    Piper Navajo Chieftain 4278Y ATL 936
    Piper Navajo Chieftain 4278Y TYS 646
    47 rows selected.
    but, I need each a/c to be listed once with charter number total miles flown and total revenue generated.
    Any suggestions?

    Here's what I could fathom:
    test@ORA10G>
    test@ORA10G> with model as (
      2    select 1 as mod_code, 'Cessna' as mod_manufacturer, 'Citation Mustang' as mod_name, 0.1 as mod_chg_mile from dual union all
      3    select 2,'Piper',     'Axtec',             0.2 from dual union all
      4    select 3,'Piper',     'Navajo Chieftain',  0.3 from dual union all
      5    select 4,'Beechcraft','KingAir',           0.1 from dual union all
      6    select 5,'Cessna',    'Citation Sovereign',0.5 from dual),
      7  aircraft as (
      8    select '1234C' as ac_number, 1 as mod_code from dual union all
      9    select '1484P', 2 from dual union all
    10    select '2278V', 3 from dual union all
    11    select '2289L', 4 from dual union all
    12    select '2345C', 5 from dual union all
    13    select '4278Y', 3 from dual),
    14  charter as (
    15    select 1 as char_trip, '1234C' as ac_number, null as destination, null as char_distance from dual union all
    16    select 2, '1484P', 'BNA', 10     from dual union all
    17    select 3, '1484P', 'STL', 10     from dual union all
    18    select 4, '1484P', 'STL', 20     from dual union all
    19    select 5, '1484P', 'TYS', 100    from dual union all
    20    select 6, '2278V', 'BNA', 20     from dual union all
    21    select 7, '2278V', 'GNV', 30     from dual union all
    22    select 8, '2278V', 'MOB', 40     from dual union all
    23    select 9, '2278V', 'MQY', 50     from dual union all
    24    select 10, '2289L', 'ATL', 10    from dual union all
    25    select 11, '2289L', 'ATL', 20    from dual union all
    26    select 12, '2289L', 'GNV', 15    from dual union all
    27    select 13, '2289L', 'GNV', 25    from dual union all
    28    select 14, '2345C',  null, null  from dual union all
    29 select 15, '4278Y', 'ATL', 10 from dual union all
    30 select 16, '4278Y', 'ATL', 25 from dual union all
    31    select 17, '4278Y', 'GNV', 35    from dual union all
    32    select 18, '4278Y', 'STL', 20    from dual union all
    33    select 19, '4278Y', 'TYS', 40    from dual union all
    34    select 20, '4278Y', 'TYS', 50    from dual)
    35  --
    36  SELECT
    37    m.mod_manufacturer as manufacturer,
    38    m.mod_name as ac_name,
    39    a.ac_number as ac_num,
    40    c.destination as airport,
    41    sum(c.char_distance) as total_mileage,
    42    to_char(sum(c.char_distance*m.mod_chg_mile*0.035),'$99,990.99') as trip_charge
    43  FROM
    44    model m,
    45    aircraft a,
    46    charter c
    47  WHERE m.mod_code = a.mod_code(+)
    48  AND a.ac_number = c.ac_number(+)
    49  GROUP BY m.mod_manufacturer,
    50           m.mod_name,
    51           a.ac_number,
    52           c.destination;
    MANUFACTUR AC_NAME            AC_NU AIR TOTAL_MILEAGE TRIP_CHARGE
    Piper      Axtec              1484P BNA            10       $0.07
    Piper      Navajo Chieftain   2278V BNA            20       $0.21
    Piper      Navajo Chieftain   2278V MQY            50       $0.53
    Piper      Navajo Chieftain   4278Y TYS            90       $0.95
    Piper      Navajo Chieftain   4278Y GNV            35       $0.37
    Cessna     Citation Mustang   1234C
    Piper      Navajo Chieftain   2278V MOB            40       $0.42
    Piper      Axtec              1484P STL            30       $0.21
    Piper      Axtec              1484P TYS           100       $0.70
    Piper      Navajo Chieftain   4278Y STL            20       $0.21
    Piper      Navajo Chieftain   2278V GNV            30       $0.32
    Beechcraft KingAir            2289L ATL            30       $0.11
    Cessna     Citation Sovereign 2345C
    Beechcraft KingAir            2289L GNV            40       $0.14
    Piper Navajo Chieftain 4278Y ATL 35 $0.37
    15 rows selected.
    test@ORA10G>
    test@ORA10G>Notes:
    (1) Lines 29 and 30 (in bold) show that '4278Y', which corresponds to mod_code = 3 i.e. "Piper Navajo Chieftain", flew to ATL twice traveling 10 and 20 miles respectively.
    (2) The last line of the resultset (in bold) shows the total miles for "Piper Navajo Chieftain" i.e. 35 miles.
    The trip charge, consequently, is 35 miles * 0.3 * 0.035 = 0.3675
    where 0.3 is the mod_chg_mile for "Piper Navajo Chieftain".
    (3) Note the change in the columns that constitute the GROUP BY clause. What it does is - for every combination of:
        (i)    m.mod_manufacturer
        (ii)   m.mod_name
        (iii)  a.ac_number
        (iv)   c.destinationit sums up the c.char_distance and multiplies it with the product of m.mod_chg_mile and 0.035.
    (4) Also note that you can use aggregate functions (sum, in this case) more than once in the SELECT <column_list> part of the query. You need to include the rest of the columns (the 4 above) in the GROUP BY clause.
    Hope that helps.
    cheers,
    pratz

  • I am having trouble with my bookmark bar changing order between my devices. I have them organized for convenience, but when I arrange them on one device they change on the others to a different order. how can I fix this?

    I have 2 desktops and a laptops connected by Firefox sync which I set up at some time during the beta. I have several folders, dividers, and bookmarks on the toolbar which I try to keep organized based on their use (web design, hardware/tech support sites, personal, etc) but when I arrange them on one computer it screws them up on the others. I would like for it either to keep them in the same order on all machines, or at least have to arrange them on each machine separately without them affecting the other so they stay where I put them. Does anyone know how I can accomplish this?

    This is what I'd suggest get your machines matched. Sync your machines so all data is on both. Then pick one to get all of your organizing as you want it. (or do this before you even setup sync) Then, when you do your initial sync from that organized machine, select: replace all other devices with this computers data. (you can also do that as Manage Account > reset sync.
    After that, changes in order on one machine should be reflected on the other. Remember though Sync '''merges ''' the data from your machines. If you work on two machines side by side and make order changes on both without syncing either, once you do sync, Sync will have to again figure out how to merge the incongruities, which may not be what you expect.. Be careful, if order is important to you.

  • I am having trouble simply getting into my account

    Hello I am a firsdt time user and am really frustrated. I have just replaced my iphone and am having trouble getting into my account in order to sync my phone

    Very vague.
    Exactly what "trouble" are you having?
    What are you trying to do?
    What happens?
    Error message?
    What does it say?
    Any info about your issue at all?

  • Having trouble of thinking of a query to accomplish this

    So I have the following data:
    Oracle: 10g
    Table name: cs.tm_data
    --This is just simply SAMPLE data which will help explain what I need a little bit easier
    GAME_CODE     733665     733666     733667     733813     733814     733815     733838     733839       
    GAME_DATE     5/28     5/29     5/30     7/16     7/17     7/18     9/13     9/14       
    HOME_TEAM_ID     235     235     237     237     235     235     235     235       
    HOME_TEAM_NAME     Oakland     Oakland     Oakland     Oakland     Oakland     Oakland     Oakland     Oakland       
    AWAY_TEAM_ID     237     237     235     235     237     237     237     237       
    AWAY_TEAM_NAME     Texas     Texas     Texas     Texas     Texas     Texas     Texas     Texas       
    GAME_NUMBER_HOME 50     51     52     53     94     95     96     97       
    GAME_NUMBER_AWAY 51     52     53     92     93     94     146     147       
    HOME_OUTCOME      L     L     W     W     L     L     L     L       
    AWAY_OUTCOME      W     W     L     L     W     W     W     W      What i'm trying to do is determine number of times a team has won all four games in a 4-game series, with the 4th win being on the road.
    So to clairfy:
    In the example above: team_id = 235 (Oakland) qualifies under the scope I've described. They won a four game series (game codes: 733814,733815,     733838, 733839), with the forth and final game being a 'W' (Win) on the road.
    Four Game Series: Four consecuitive game dates where the same two teams play against each other.
    The four game series including game_codes (733665,733666,733667,733813) doesn't qualify under the scope because the forth and final game of the four game series wasn't won at home.
    So I have two issues,
    1)I'm having trouble finding code to determine a four game series. In plain english it would be, where the same two team_id's play against each other for four consecutive game_dates), I'm having trouble translating that into sql code.
    2) After I figure how to return a four game series, how to code: where the team 'W' (won) all four games in the four game series.
    Please Note:
    - Those are the only columns availble to figure out the scope i've described above
    - The data I've provided is merely sample data that is convienent in showing what I'm trying to accomplish, the actual table clearly doesn't contain this convienent of data.
    Edited by: user652714 on Jun 5, 2009 3:25 PM

    Hi,
    We want to count the number of times where
    (a) the away team won
    (b) the same team won the last 3 games against the same oponent
    The WHERE clause condition for (a) is: "away_outcome = 'W'
    The WHERE clause condition for (b) is somewhat more complicated.
    {code}
    WITH     got_cnt     AS
         SELECT     away_outcome
         ,     COUNT ( DISTINCT
                   CASE
                        WHEN home_outcome = 'W'
                        THEN home_team_id
                        ELSE away_tem_id
                   END
              ) OVER ( PARTITION BY LEAST (home_team_id, away_team_id)
                   ,     GREATEST (home_team_id, away_team_id)
                   ORDER BY     game_date
                   ROWS BETWEEN 3 PRECEDING
                        AND     CURRENT ROW
                   ) AS cnt
         FROM     cs.tm_data
    SELECT     COUNT (*)
    FROM     got_cnt
    WHERE     away_outcome     = 'W'
    AND     cnt          = 1
    {code}
    First of all, how do we know which team wom any game?
    {code}
    CASE
         WHEN home_outcome = 'W'
         THEN home_team_id
         ELSE away_tem_id
    END
    {code}
    How do we know if the same team won the last three games against the same oponent?
    This just reeks of analytics: we need to partition by the pair of teams who played, sort by date, look at the window consiting of the last four games, and see if there was only won distinct winner in that window. I called this count cnt in the query above.
    The tricky part of this is how to partition by pairs. Since they have unique ids, we can sort their ids and PARTITION BY x, y, where x is the lower one and y is the higher one.
    Since this cnt is to be calculated by an analytic function and then used in a WHERE clause, it must be computed in a sub-query.
    If you'd post the CREATE TABLE ... and INSERT statements for the sample data, as Centinul said, then I could test this.
    Edited by: Frank Kulash on Jun 6, 2009 5:48 AM
    The query above needs an additional check that there have been at least four games between these two teams.
    One way to do this would be to repeat the analytic COUNT, but without DISTINCT, and check that it returned 4. ROW_NUMBER would be a shorter alternative.
    Either way, the new analytic function would need the same CASE, GREATEST and LEAST calculations, so I would add another sub-query to calculate those values once.

  • I have a new MacBook and I'm having trouble with the help section. I would like to rearrange the order of my photos with in an Event, how do I do this? I follow the directions but it will not work. Thanks for some tips.

    I have a new MacBook Pro and I'm having trouble with some of the Help sections. I want to rearrange the order of my photo's within an Event. I have followed the directions but it will not let me do it, what am I missing?  Thanks for any tips.

    Are you talking about iPhoto? If you are please post this in the iPhoto forum, thanks!

  • I'm having trouble facetiming.  I live in mexico and I don't know if that is the problem.  Everything seems to be in order, it rings on my end when I call someone but it doesn't get through to them.  Same is true when someone calls/facetimes me.

    I'm having trouble facetiming.  I live in Mexico but I know other people who facetime from where I live.  Everything seems to be in order; I call, it rings on my ipad but it doens't ring through to the person I'm calling.  Likewise, when someone calls me, it doesn't ring on my ipad.

    Using FaceTime http://support.apple.com/kb/ht4319
    Troubleshooting FaceTime http://support.apple.com/kb/TS3367
    The Complete Guide to FaceTime: Set-up, Use, and Troubleshooting Problems
    http://tinyurl.com/32drz3d
     Cheers, Tom

  • News for Users having trouble ordering books

    I was having trouble like many others ordering books during the last 2 weeks. I was also concerned about pending charges on my bank account. I received a very detailed explanation and helpful suggestions today form Apple Support. I am posting this in hopes that it helps others and ends all the frustration.
    My name is Patrick and I'll be assisting you.
    I understand that you're having an issue placing a book order. I also understand that there were charges on your credit card statement that were eventually dropped.
    I reviewed the orders you submitted for the book titled "Honeymoon" and found that the file could not be opened. That is why your orders haven't processed completely. The size of the book shouldn't be an issue, so you don't need to change anything in it. Please keep submitting the order until you're successful. You may want to try during non peak hours so there'll be less traffic on your ISP's network.
    As for the multiple charges, when you make a purchase using iPhoto, Apple sends an authorization request to your credit card company for the approximate amount of the purchase. This is to verify that your account has sufficient credit to cover the amount of sale. It is a temporary authorization hold, not an actual charge. Most credit card companies remove authorization holds within 48 hours.
    Please note that even an unsuccessful attempt to purchase an item may cause an authorization hold, depending upon how much of the transaction was completed, and multiple attempts can cause multiple authorization holds.
    If you have any questions about whether an amount found on your online statement is an authorization request or a charge, or when the authorization hold will be removed from your account, please contact your credit card company or financial institution.
    To view your purchase history, visit http://www.apple.com/internetservices/yourorderstatus and sign in using your Apple ID and password.
    I hope this clears things up for you. Please accept my apologies for any frustration this has caused you. I want your experience with us to be the best possible. Have a pleasant day.

    It's really hard to say without seeing the form, and ideally being at the machine that it doesn't work with. I'd be happy to take a look at the form if you're free to send it to me: acroscript at gmail dot com

  • Having trouble with order

    Is anyone but me having trouble getting a new iphone? My daughter and I ordered them on the 9th, had them canceled by apple on the 17th. We reordered them and I can tell that by tomorrow apple is about to cancel them again. My order status went from prepared to ship to not yet shipped today. I spent 4 hrs on the the phone between apple and ATT today about this. Each one blames the other. I have talked to so many people I have a headache, and am ready to throw my iphone at someones head. We both have the original iphone so we are ready to upgrade, but now we are bith so frustrated that I am ready to leave ATT and forget the whole thing.

    On your first cancellation email, did it say that it was cancelled because it couldn't get an approval from ATT? if so, try calling ATT to see why it's not approved. I had similar issue where I accidentally placed 2 orders and one number can only buy one phone.

  • I would like to print a four sided programme, but am having trouble finding out how to organise the sections onto a 17  by 11 paper with the sections in the right order. Any help?

    I would like to print a four sided programme, but am having trouble finding out how to organise the sections onto a 17  by 11 paper with the sections in the right order. Any help?

    If all you are going to do is print double sided and them make
    a single fold reducing the page to 8 1/2 x 11, one side of the
    original 17 x 11 page will be page 4 on the left as you hold
    the page facing you and page 1 on the right, reverse side
    should be printed so top is same as top on the the first side
    and will be page 2 to the left and page 3 to the right. Pick
    up the double sided document with pages 2 and 3 facing you, fold
    left edge to meet right edge; you should now have fold on the left
    with page 1 facing up toward you, turn the page as you normally
    would and pages 2 & 3 should be in order, and one more turn brings
    you to page 4 and the fold should know be on the right. I hope this
    explains clearly enough - if not, post back and some one should
    join in with a better explanation.

  • I'm having trouble with the purchase of currency in the game Castle Clash locks! In order status says "Back" returns so what? Money at stake so I have not returned!

    I'm having trouble with the purchase of currency in the game Casyle Clash locks! In order status says "Back" returns so what? Money at stake so I have not returned!

    You need to contact the developer of the game, or, the iTunes store support.  iTunes store "MIGHT" issue a 1 time refund.  If you want the credits for the game, talk to the game creator.

  • To whom this may concern, I'm having troubles with uploading Flash Files Online throught Adobe Flash Professional and I would to correct the Error Messages I've received as an indication that I need to correct them in order to test a Flash and Shockwave F

    To whom this may concern, I'm having troubles with uploading Flash Files Online throught Adobe Flash Professional and I would to correct the Error Messages I've received as an indication that I need to correct them in order to test a Flash and Shockwave Files I have stored into the Software of Flash!. Could you please help me get this matter resolved? Gerard Hargrove.

    what exactly are you trying to do and attach a screenshot of the error message, if it's in english.

  • HT3529 I'm having trouble with my iPhone 5 iMessage service. The device does not recognize the users who have iMessage when I try to contact them using this feature. Who have the same issue and what did you do in order to solve it?

    I'm having trouble with my iPhone 5 iMessage service. The device does not recognize the users who have iMessage when I try to contact them using this feature. Who have the same issue and what did you do in order to solve it?

    Read here:
    http://support.apple.com/kb/ts2755

  • I am having trouble uploading an Aperture photographic book to Apple. The first time I tried "Buy Book" the order proceeded normally but when it came to uploading the book to Apple it "uploaded" for six hours without going through so I aborted the attempt

    I am having trouble uploading anAperture photographic book to Apple. The first time I tried “Buy Book” theorder proceeded normally but when it came to uploading the book to Apple it"uploaded" for six hours without going through so I aborted theattempt and cancelled the order.
    The second time I tried the samething happened so after nine hours I found that the "Quit Aperture"button had greyed out so I had to Force Quit. I do not know if the order wascancelled but I do not think that the upload was successful.
    What can I do about this problem?

    I also am not able to print a book.  I have Aperture on two Mac, MacBook Pro (current) and a MacPro - both printed books prior to update 3.1.3 now all I get is the spinning ball then I have to Force Quit.  I tried books I have ordered in the past (trying to print a new book) and they also failed.  This is not a picture problem but a problem with 3.1.3 update.   I would like to print some more books and give Apple some money but can't.
    Any suggestions?
    Ken

  • I'm having trouble with something that redirects Google search results when I use Firefox on my PC. It's called the 'going on earth' virus. Do you have a fix that could rectify the vulnerability in your software?

    I'm having trouble with a virus or something which affects Google search results when I use Firefox on my PC ...
    When I search a topic gives me pages of links as normal, but when I click on a link, the page is hijacked to a site called 'www.goingonearth.com' ...
    I've done a separate search and found that other users are affected, but there doesn't seem to be a clear-cut solution ... (Norton, McAfee and Kaspersky don't seem to be able to detect/fix it).
    I'd like to continue using the Firefox/Google combination (nb: the hijack virus also affects IE but not Safari) - do you have a patch/fix that could rectify the vulnerability in your software?
    thanks

    ''' "... vulnerability in your software?" ''' <br />
    And it affects IE, too? Ya probably picked up some malware and you blame it on Firefox.
    Install, update, and run these programs in this order. They are listed in order of efficacy.<br />'''''(Not all programs detect the same Malware, so you may need to run them all to solve your problem.)''''' <br />These programs are all free for personal use, but some have limited functionality in the "free mode" - but those are features you really don't need to find and remove the problem that you have.<br />
    ''Note: If your Malware infection is bad enough and you are mis-directed to URL's other than what is posted, you may have to use a different PC to download these programs and use a USB stick to transfer them to the afflicted PC.''
    Malwarebytes' Anti-Malware - [http://www.malwarebytes.org/mbam.php] <br />
    SuperAntispyware - [http://www.superantispyware.com/] <br />
    AdAware - [http://www.lavasoftusa.com/software/adaware/] <br />
    Spybot Search & Destroy - [http://www.safer-networking.org/en/index.html] <br />
    Windows Defender: Home Page - [http://www.microsoft.com/windows/products/winfamily/defender/default.mspx]<br />
    Also, if you have a search engine re-direct problem, see this:<br />
    http://deletemalware.blogspot.com/2010/02/remove-google-redirect-virus.html
    If these don't find it or can't clear it, post in one of these forums for specialized malware removal help: <br />
    [http://www.spywarewarrior.com/index.php] <br />
    [http://forum.aumha.org/] <br />
    [http://www.spywareinfoforum.com/] <br />
    [http://bleepingcomputer.com]

Maybe you are looking for

  • RENDER /EXPORT problems with the new CC 2014

    I have updated to the new Premiere pro CC 2014 version. I realise its a standalone upgrade so i deleted the previous cc version from my pc to save disk space... I have a 3 hour file just raw footage, with no plugins on it.... I have tried rendering t

  • Permanently disable show results in printer settings

    I have to send out 20+ pdf reports from Excel every day and its infuriating having to manually go into the print settings and unchecking 'view PDF results' every time. How do I permenently disable this stupid feature?

  • Music transfer from iPod to Laptop

    I have an iPod that contains music from 2 different computers (including one Apple Notebook). Can I transfer all the songs from my iPod (including the music from my old computer) to my Apple Notebook?

  • Load image data into array collection without ever displaying it

    Hi all, I am starting with a String that is a path to a local file. I need to add that image (png) to an array collection without ever displaying it on screen. What would be the most direct process to get it into the type BitmapData. No matter what i

  • Can anyone explain the integration of sd and mm with fico

    Hi all, Can anyone explain with an scenario how fico integrates with sd and mm. thanxs regds hari