Cases identified in a clause Where using the clause

Oracle Database 11 g Release 11.2.0.1.0 - 64 bit Production
PL/SQL Release 11.2.0.1.0 - Production
"CORE 11.2.0.1.0 Production."
AMT for Linux: Version 11.2.0.1.0 - Production
NLSRTL Version 11.2.0.1.0 - Production

Hello

I have an APEX application I need to build a SQL statement to a LOV (list of values). I hid filed that contains the type of customer that may be an 'R' or 'B '. The query must be able to display two sets of different results depending on the type of customer 'R' or 'B '.

If the customer type is 'R', then:
SELECT drg_descr d, drg_code r
FROM distance_ranges
WHERE  drg_min_miles IN (0,5)
ORDER BY drg_min_miles
If the customer type is 'B', then:
SELECT drg_descr d, drg_code r
FROM distance_ranges
WHERE  drg_min_miles IN (0,5,10,15,20)
ORDER BY drg_min_miles
Can someone help me with what I think should be a case statement?

Thank you
Joe

Try,

SELECT drg_descr d, drg_code r
  FROM distance_ranges
 WHERE ( (drg_min_miles IN (0, 5)
      AND param_cust_type = 'R')
     OR  (drg_min_miles IN (0, 5, 10, 15, 20)
      AND param_cust_type = 'B'))
ORDER BY drg_min_miles

G.

Tags: Database

Similar Questions

  • How to change the value of string clustered, to implement using the node value of property instead of writing directly on the flow of data or using the variable

    new to labview :-) and I have a problem when I want to change the value of a string in bunches, and I want to implement this using the node value of property instead of writing directly to the stream or by using the variable, enclosed is the picture.   No matter, I have change in cluster (control) or value of Popery out (indicator) cluster, the value (sensor 7) dataflow keeps unchanged even I gave the new value by value of property node. Thank you to give me some advice about this.

    Hi GerdW

    Thanks a lot for your answer. The reason I'm stubbornly tring to break the flow of DATA is: we have a test system that have about 100 screws, they have a few connected flow, some of them will be unbundling a cluster dataflow chain to check the value in order to make the different cases.  Now I want to insert user event by changing the control and influential cases during run time.

    As I initially uses a global variable (to control cases) instead of unbundle string data flow, it works well.  But then, I found there are a lot of screws that are using the string unbundle.  One of the 'lazy' means, I tried is to change the value via the property node (because that way, I did not need to find all the places where using the unbundle string and replace them with the global variable), then I noticed a problem with "dataflow", the value in the stream of cluster in fact will not be changed by changing the value of the property node.

    I did a test with VI simple (like the picture in last post), and after reading your advice, I tell myself that I need to understand the concept of "DATAFLOW" in labview, it seems that my "lazy" way can not work in this scenario.

    I have attached the criterion VI here, have you furthur suggestions on what I can do in this case?

    Mant thanks!

    Minyi

  • What should I do to be able to use the Kodak filters with PSE V13?

    With PSE Version 10 (and PSE Versions older than V10), I have to be able to use the Kodak filters (e.g. the Kodak 'Digital Roc Professional V2.1.0,' the KODAK "Digital GEM Professional V2.1.0",...), I had to (one time) the following when you run PES Editor:

    • Preferences-> Plug-Ins
    • Check the box "Plug-in additional files" and then "select" files C\Program (X 86) \Kodak folder that contains the files with the Kodak flters

    Once I did that (after stopping and restarting of the PES editor), I could use the KODAK filters with full Editor from PSE via the Menu-> filters.

    With PSE V13, it does not. In the V13 PES Editor, Menu-> filters don't show me any KODAK filter.

    Because the V13 PES editor not showing me filters KODAK via the Menu-> filters: I tried the following: I copied the folder that contains the KODAK filters in the V13 PES editor plug-in folder. It worked too much

    I'd appreciate your help / feedback, because I need KODAK filters for retouching of tousands of scanned old slides (among others for the removal of color in all cases casts where using the PES editor alone is not enough to eliminate the strong color casts in old slides)

    Thanks in advance

    You use windows? Remember that PSE 13 is 64-bit, unless you have a 32-bit system (indicating the path of file in your post is not the case) and plugins should be as well. Many existing plugins will not work unless there is a updated version. If these are the image enhancement plug-ins, note the tecniques:

    V

    2.1: Compatible with WINDOWS 7, XP and Vista for ADOBE PHOTOSHOP CS5/CS6 (32-bit ONLY) and CS5 MAC/INTEL (32-bit ONLY).

  • Problem with Textfield autocomplete--> only use the INSTR function

    Hello team dev,

    I use the new "textfield autocomplete" item type APEX and you have a crazy problem with it.

    I have a table with an index on the same column I want to search with AutoComplete field.

    Index:
    CREATE BITMAP INDEX TEST.GEO_DATA_IDX1 ON TEST.GEO_DATA (postcode)
    NOLOGGING TABLESPACE TS_INDEX;
    Select which is automatically generated by APEX 4:
    SELECT   a.*
      FROM   (  SELECT   DISTINCT postcode AS RV
                  FROM   TEST.GEO_DATA
                 WHERE   country_id = :P1_COUNTRY
              ORDER BY   1) a
     WHERE   INSTR ("RV", :p$_search_string) > 0 AND ROWNUM <= :p$_max_rows;
    
    -- plan
    Plan
    SELECT STATEMENT  ALL_ROWSCost: 4,308  Bytes: 45,31  Cardinality: 1,97            
         2 SORT UNIQUE  Cost: 4,307  Bytes: 45,31  Cardinality: 1,97       
              1 TABLE ACCESS FULL TABLE #TABLE# Cost: 4,306  Bytes: 47,311  Cardinality: 2,057  
    The APEX 3, I used the addon of Tyler Muth with my own Select:
    SELECT   DISTINCT
                postcode AS DV,
                postcode AS RV
         FROM   TEST.GEO_DATA
         WHERE   country_id = L_COUNTRY
         AND    postcode like l_search||'%'
         ORDER BY 1
    
    -- Plan
    SELECT STATEMENT  ALL_ROWSCost: 840  Bytes: 152,867  Cardinality: 13,897                                
         8 SORT ORDER BY  Cost: 840  Bytes: 152,867  Cardinality: 13,897                           
              7 HASH UNIQUE  Cost: 838  Bytes: 152,867  Cardinality: 13,897                      
                   6 VIEW VIEW index$_join$_001 Cost: 836  Bytes: 232,111  Cardinality: 21,101                 
                        5 HASH JOIN            
                             2 BITMAP CONVERSION TO ROWIDS  Cost: 31  Bytes: 232,111  Cardinality: 21,101       
                                  1 BITMAP INDEX RANGE SCAN INDEX (BITMAP) #INDEX#
                             4 BITMAP CONVERSION TO ROWIDS  Cost: 45  Bytes: 232,111  Cardinality: 21,101       
                                  3 BITMAP INDEX SINGLE VALUE INDEX (BITMAP) #INDEX#
    Is there a chance to get my INDEX used by the new element of the APEX? I do not. But I still want to ask before I just rebuild. :)

    Best regards

    Tobias

    Hi Tobias,.

    I guess that you are currently using "contains and case sensitivity ' to the attribute of"search ". Have you ever tried out "Exact and case sensitivity? Because that internally uses the LIKE operator as does your original query and the % is at the end, she must allow the use of an index. But it might still work, because ORDER BY can be run at a different time in your original example, but it's worth a try.

    Concerning
    Patrick
    -----------
    My Blog: http://www.inside-oracle-apex.com
    APEX 4.0 Plug-Ins: http://apex.oracle.com/plugins
    Twitter: http://www.twitter.com/patrickwolf

  • Satellite L750D - cannot connect using the administrator account

    Hello

    I have a Toshiba Satellite L750D-14R and it I cannot access to my administrator account, I had not changed my password or anything either, and, the night before, I had been on that fine and the next day he said my username or password was incorrect.

    I tried to put my password in full about 30 times and he wouldn't so I had to use the account invited to try and find a solution, whenever I connect I try to put my password and it still says the same thing.

    Can someone help me please?

    Someone at - it other access to your laptop? I mean the password cannot be changed without reason.

    Maybe a stupid question now but have you created the recovery disc? Problem is that without this password, you will not be able to install the OS by using recovery image saved on the HARD disk and in the worst case, you must reinstall OS by using the recovery disk.

  • VI Analyzer in an application using the built

    I have an application which is designed for a continuous integration server.  This application uses the VI Analyzer API (Labview 2009 for the moment) to run a series of tests on a case of the screws.  The problem is that when the program is run like VI all is happy, that the folder is added using the 'Add VIAn Item.vi' and the task runs on the four VI in the folder.  But when the VI is built and comes as an exe file, 'VIAn Add Item.vi' appears to add the folder but no vi is analyzed and if a specific VI is given then error 53 is thrown by "NI_FileType.lvlib:Get leader Type.vi.  Is it just a case of not being able to use the VI Analyzer API in a built application that is running as an exe?  I have attached the front panel of the application built after he was executed and the rear panel of the source code in question; There is more that the rest is just to determine the paths to analyze.

    The VI Analyzer API is not supported in a built EXE.

  • using the module knowledge Oracle LKM to Oracle (DBLINK)

    Hello

    I use in an interface the LKM oracle to oracle (dblink) because my store of data source and target are oracle. I run my interface, but the operator gives me the following error:

    1729: 42000: java.sql.SQLException: ORA-01729: database link name EXPECTED

    In the descriptions, there is this implementation:

    create the database link
    connect to applications
    identified by < @= snpRef.getInfo ("SRC_PASS") @ >
    using the "

    So it seems that it does not create the database link, also if I put the AUTO_CREATE_DB_LINK Yes!

    Why? Can someone help me? How can I set the database link?

    Thank you

    Hello

    go to your physical server and put the name of DBLink on the box corresponding to the first edit window...

    This help you?

  • Using the Case statement in Where clause with operator

    Hi all

    I'm doing the following work (this is just a simple version of what I'll eventually need):

    Sorry, I forgot how to use the code tags...

    and li. MAJOR_ACCT in case
    When: prompt = 'Energy' then ('9320906 ', ' 9321471')
    end


    Problem is that I get a missing closing parenthesis error.

    Wouldn't - that evaluate against a value(as below) it works fine:

    and li. MAJOR_ACCT in case
    When: prompt = 'Energy' then ('9320906')
    end


    Any thoughts? Is it possible to use a box (or decode) in an In clause with multiple values? I tried to use decode as well and get the same results.

    Thank you.

    Darren.

    What:

    and ( case
            when :prompt = 'Energy' and li.MAJOR_ACCT in ('9320906', '9321471') then 1
            when :prompt = 'Vehicle' and li.MAJOR_ACCT in ('9812180', '9812320')  then 1
            when :prompt = 'Meals' and li.MAJOR_ACCT in ('983120', '983452') then 1
          end
        ) = 1
    
  • Using the index function in where clause of Exchange.

    Hello friends,

    I need your help with a problem.

    I have a query that uses two table Say T1 and T2, where C1 is common column with which both are joined.
    C1 is the primary key in T1, but no index available in Q2 for the C1. T1C2 is the column that we want to select.
    (Note that table may be a Master table)

    Now let's see the query:
    Select T1C2
    From T1, T2
    where T2. C1 = T1. C1

    Here where the clause may have other conditions and From clause can have other tables as needed.

    I want to know that if I have change the query as continuation of leave my query to use the index available of T1. C1.

    Select T1C2
    from T1, T2
    where T1. C1 = T2.C1

    Then, the query uses the index available of T1. and I get better performance. Even a small improvement of performance help me much because this type of query is used in a loop where clause (so it will be run several times).

    Please advise on this...

    Kind regards
    Lifexisxnotxsoxbeautiful...

    Hello

    18:43:17 rel15_real_p>create table t1(c1 number primary key, c2 number);
    
    Table created.
    
    18:43:26 rel15_real_p>create table t2(c1 number, c2 number);
    
    18:45:08 rel15_real_p>
    18:45:09 rel15_real_p>begin
    18:45:09   2  for i in 1..100
    18:45:09   3  loop
    18:45:09   4        insert into t1(c1,c2) values (i,i+100);
    18:45:09   5  end loop;
    18:45:09   6  commit;
    18:45:09   7  end;
    18:45:09   8  /
    
    PL/SQL procedure successfully completed.
    
    18:45:09 rel15_real_p>
    18:45:09 rel15_real_p>
    18:45:09 rel15_real_p>begin
    18:45:09   2  for i in 1..100
    18:45:09   3  loop
    18:45:09   4        insert into t2(c1,c2) values (i,i+200);
    18:45:09   5  end loop;
    18:45:09   6  commit;
    18:45:09   7  end;
    18:45:09   8  /
    
    18:45:23 rel15_real_p>select count(*) from t1;
    
      COUNT(*)
    ----------
           100
    
    18:45:30 rel15_real_p>select count(*) from t2;
    
      COUNT(*)
    ----------
           100
    
    18:45:49 rel15_real_p>select index_name,index_type from user_indexes where table
    _name='T1';
    
    INDEX_NAME                     INDEX_TYPE
    ------------------------------ ---------------------------
    SYS_C0013059                   NORMAL
    
    18:48:21 rel15_real_p>set autotrace on
    18:52:25 rel15_real_p>Select T1.C2
    18:52:29   2  From T1, T2
    18:52:29   3  where T2.C1 = T1.C1
    18:52:29   4  /
    
            C2
    ----------
           101
           102
           103
           104
           105
      .....
      ......
    
            C2
    ----------
           200
    
    100 rows selected.
    
    Execution Plan
    ----------------------------------------------------------
       0      SELECT STATEMENT Optimizer=ALL_ROWS (Cost=7 Card=100 Bytes=
              900)
    
       1    0   HASH JOIN (Cost=7 Card=100 Bytes=3900)
       2    1     TABLE ACCESS (FULL) OF 'T1' (TABLE) (Cost=3 Card=100 By
              es=2600)
    
       3    1     TABLE ACCESS (FULL) OF 'T2' (TABLE) (Cost=3 Card=100 By
              es=1300)
    
    Statistics
    ----------------------------------------------------------
              0  recursive calls
              0  db block gets
             21  consistent gets
              0  physical reads
              0  redo size
           1393  bytes sent via SQL*Net to client
            562  bytes received via SQL*Net from client
              8  SQL*Net roundtrips to/from client
              0  sorts (memory)
              0  sorts (disk)
            100  rows processed
    
    18:52:31 rel15_real_p>analyze table t1 compute statistics;
    
    Table analyzed.
    
    18:55:35 rel15_real_p>analyze table t2 compute statistics;
    
    18:55:38 rel15_real_p>set autotrace on
    18:55:42 rel15_real_p>Select T1.C2
    18:55:43   2  From T1, T2
    18:55:45   3  where T2.C1 = T1.C1
    18:55:46   4  /
    
            C2
    ----------
           101
           102
           103
           104
           105
    
      .....
      ......
    
            C2
    ----------
           200
    
    100 rows selected.
    
    Execution Plan
    ----------------------------------------------------------
       0      SELECT STATEMENT Optimizer=ALL_ROWS (Cost=6 Card=100 Bytes=7
              00)
    
       1    0   MERGE JOIN (Cost=6 Card=100 Bytes=700)
       2    1     TABLE ACCESS (BY INDEX ROWID) OF 'T1' (TABLE) (Cost=2 Ca
              rd=100 Bytes=500)
    
       3    2       INDEX (FULL SCAN) OF 'SYS_C0013059' (INDEX (UNIQUE)) (
              Cost=1 Card=100)
    
       4    1     SORT (JOIN) (Cost=4 Card=100 Bytes=200)
       5    4       TABLE ACCESS (FULL) OF 'T2' (TABLE) (Cost=3 Card=100 B
              ytes=200)
    
    Statistics
    ----------------------------------------------------------
              1  recursive calls
              0  db block gets
             23  consistent gets
              0  physical reads
              0  redo size
           1393  bytes sent via SQL*Net to client
            562  bytes received via SQL*Net from client
              8  SQL*Net roundtrips to/from client
              1  sorts (memory)
              0  sorts (disk)
            100  rows processed
    
    18:56:56 rel15_real_p>Select T1.C2
    18:56:56   2  From T1, T2
    18:56:56   3  where T1.C1 = T2.C1
    18:56:58   4  /
    
            C2
    ----------
           101
           102
           103
           104
           105
    
      .....
      ......
    
            C2
    ----------
           200
    
    100 rows selected.
    
    Execution Plan
    ----------------------------------------------------------
       0      SELECT STATEMENT Optimizer=ALL_ROWS (Cost=6 Card=100 Bytes=7
              00)
    
       1    0   MERGE JOIN (Cost=6 Card=100 Bytes=700)
       2    1     TABLE ACCESS (BY INDEX ROWID) OF 'T1' (TABLE) (Cost=2 Ca
              rd=100 Bytes=500)
    
       3    2       INDEX (FULL SCAN) OF 'SYS_C0013059' (INDEX (UNIQUE)) (
              Cost=1 Card=100)
    
       4    1     SORT (JOIN) (Cost=4 Card=100 Bytes=200)
       5    4       TABLE ACCESS (FULL) OF 'T2' (TABLE) (Cost=3 Card=100 B
              ytes=200)
    
    Statistics
    ----------------------------------------------------------
              1  recursive calls
              0  db block gets
             23  consistent gets
              0  physical reads
              0  redo size
           1393  bytes sent via SQL*Net to client
            562  bytes received via SQL*Net from client
              8  SQL*Net roundtrips to/from client
              1  sorts (memory)
              0  sorts (disk)
            100  rows processed
    

    -Pavan Kumar N

  • using the function to decode or case in query

    Hi experts

    I use the Oracle 11 G server, I need to check the length of the value in the name column of the table employee and if length (name) > 39 then the value should be substr (name, 0, 39)
    else value should be the name.
    I tried code below
     
    select CASE when length(name) > 39,substr(name,0,39)
                else name
           END
      from employee 
    but it's not working... can I do this using decode too? which one would be better or this is not a good way?

    Thank you

    Hello

    siebelD wrote:
    Hi experts

    I use the Oracle 11 G server, I need to check the length of the value in the name column of the table employee and if length (name) > 39 then the value should be substr (name, 0, 39)
    else value should be the name.
    I tried code below

    
    select CASE when length(name) > 39,substr(name,0,39)
    else name
    END
    from employee 
    

    but it's not working...

    Review the syntax of the CASE expression in the Manual of the SQL language. An expression BOX always at least a THEN clause. Commas are not part of the syntax of the CASE expression.

    can I do this using decode too?

    Of course, everything you can do with CASE, you can also do it with DECODE.

    that it would be better

    This is one of the many situations where the CASE is much shorter, clearer and more effective than DECODE.

    or is not a good way?

    What is

    SELECT  SUBSTR (name, 1, 39)  AS employee_name
    FROM    employee;
    

    ?
    If the name is 39 characters (or less), then SUBSTR (name, 1, 39) will ship itself, unchanged.

    Published by: Frank Kulash on 3 March 2013 14:07

  • Not able to connect after changing the password using the VALUES ALTER clause

    Hello

    John explained earlier the clause VALUES below thread.

    Status expired

    I created a new account named SURI, and tried to use the password of the user account from the HR by using the VALUES clause. I was able to change the password but not able to connect SURI with HR password.

    Please see below for details. And the SQL statements that I have tried.
    SQL*Plus: Release 10.2.0.1.0 - Production on Mon Aug 13 18:44:50 2012
    
    Copyright (c) 1982, 2005, Oracle.  All rights reserved.
    
    Enter user-name: sys as sysdba
    Enter password:
    
    Connected to:
    Oracle Database 10g Express Edition Release 10.2.0.1.0 - Production
    
    SQL> SELECT password
      2  FROM dba_users
      3  WHERE username = 'HR';
    
    PASSWORD
    ------------------------------
    4C6D73C3E8B0F0DA
    
    SQL> ALTER USER SURI IDENTIFIED BY VALUES '4C6D73C3E8B0F0DA';
    
    User altered.
    
    SQL> SELECT password
      2  FROM dba_users
      3  WHERE username='SURI';
    
    PASSWORD
    ------------------------------
    4C6D73C3E8B0F0DA
    
    SQL> conn suri/hr     -- HR account's password is hr only
    ERROR:
    ORA-01017: invalid username/password; logon denied
    
    
    Warning: You are no longer connected to ORACLE.
    
    SQL>
    Thank you
    Suri

    Its because you have used a different username.
    Oracle produces a hash based on the user name and the password, not only the password.

    Therefore, you can not use the hashed password of a user to log on to the account of another user.

    You need to get the password hashed Suri and then connect you to suri by using the password hashed Suri (using the identified by the syntax of values)

  • Use the bind variable in example of a clause giving questions

    create or replace procedure pr_mbk (p_val in number)
    is
    CROR type is ref cursor;
    REF CROR;
    type numbertype is the table of index number of pls_integer;
    numtype numbertype.
    v_str varchar2 (2000): = 'select empno from emp sample(:val) ";
    Start
    Open ref for v_str using p_val;
    Close ref;
    end;
    /

    Successfully compiled.

    But when I run the same

    Exec pr_mbk (10);

    ERROR on line 1:
    ORA-00933: SQL not correctly completed command.
    ORA-06512: at "SCOTT. PR_MBK', line 9
    ORA-06512: at line 1

    My question is can use us Bind variables within a sample clause.

    Receive your answer.

    Thank you
    Madhu K.

    I guess that SAMPLE is considered as a special case, and is not considered as something that takes a 'value' in the same way as values in where clause or values in the query itself.
    Let's face it, the SAMPLE is not the standard SQL syntax and is probably something Oracle implements in a separate thread for processing SQL itself i.e. engine Oracle saying to herself... "I will remember this bit of the sample until I questioned the data using the SQL engine, so I'll take a suitable sample of the results," but it's the SQL engine treats the binding of values and the Oracle process that awaits the results taste, knows nothing of the binding values in it's special EXAMPLE of keyword.

  • First HP: help using the command CAS.solve (STRING1, STRING2) within a program

    Hello and hope you can help me with my problem!

    I write a somewhat complicated program (operating mode no case) who has a subroutine called STSOLVE where his entry is always a string from the main program that contains a formula as "'I' = 'V' / 'R', 'R'" and its goal is to replace all the variables contained in "" to the compatible standard CASE generated automatically variable (teiXX where XX is a unique number) and then use the command solve to assess this formula (say final temporary formula "tei1 = tei2 / ') tei3, tei3"). Before returning, he replaces the temporary variables, generated automatically with the original on the result, so the original formula will be sent back solved in the main program.

    My problem:

    It returns the result {UNDEF} or simply {} even in expressions that absolutely work if used with the command solve manually, in the main screen of calculators CASES when the CAS.solve command is used either! Even though I know that the entry of this order is correct according to the tutorials I've read in the forums, I can't work properly.

    I tried all methods of writing the order and I only managed to get a result when I wrote this:

    RPART1: = cas.expr (RPART1);

    RESLT: = case. Solve (RPART1, "tei2");

    .. .or RPART1 contains, say, the part 'tei1 = tei2/tei3' (NOT AS A STRING!) and "tei2" SHOULD be written as shown here, a chain, entered manually just for test (can be 'tei1' or 'tei3' too for this particular case). However, if I put "tei2" in RPART2 of local variable in the subroutine as a string and then pass this variable to the solve command, say:

    RPART1: = cas.expr (RPART1);

    RESLT: = case. Solve (RPART1, RPART2);  RPART2 contains the string "tei2", "tei1" or "tei3.

    Here again, I get a {} as a result!

    I tried so already a lot of things that I don't know exactly what mention here, but I hope I described the main situation enough to start detailed and of course, I'll give you any other information you might need to give me more help. I tried to paste the entire subroutine, or even the entire program, but I don't have any windows pc to connect the first HP and copy the program. I am writing from an Android Tablet and I should maybe type the everything here is not very easy, I will of course if you ask.

    Perhaps, I should also note that the generated vars tei1, tei2 etc. do not exist as variables in the calculator, but if I copy channels same as the program tries to run in the command CAS.solve and manually write in case screen (not a string of course) then they get solved without problems.

    Hope to get help and learn from you and I wish I could found more help about it online, but it seems very difficult and also all the tutorials I found on the cas.solve command in the programs did not work in my case!

    Andreas

    It works, or is this not the problem?

    CAS.solve ("tei1 = tei2/tei3", "tei2");

    I get output: {tei1 * tei3} which is correct.

  • I hear a lot about several programs for maximum protection, how can I use the firewall of cases AND stop the rest of loading or starting at startup?

    At the start of my acer aspire desktop from walmart (not saying not just because his Wal-Mart like this cant be) I noticed that mcafee takes up some space, whenever she starts up. I only need the firewall and what is needed to run just the firewall. I use panda antivirus for viruses and malwarebytes antimalware for this. I would like to know, step by step if possible... How to stop or 'block' additional cases of services from the very beginning that it interferes with the pandas scanner, spikes in CPU when I don't need to use it and occationally crashes my computer by overloading, my ram is 500 MB and it started happening a few days out of the box. Once I have shut down the computer runs faster, but I lose my firewall, so I don't really wish to go unprotected, but really not need the rest services case as I hav more to compensate. The only thing I want to know here's how to get to where I can block all mcafee services that do not affect its ' firewall service while preventing others from starting in the first place. I don't mean that I found through research on the internet because they do not explain how it's done and avoid mentioning insofar as I've seen. If the answers there, I give credit to those who has asked and answered before, I just need help. :'(c'est un windows 8.1 je crois, mais si cela semble éteint juste me dire où regarder vers le haut, de toute façon je doute qui aura une incidence sur ma question trop.)

    I don't know if this is possible. If it was me, I remove McAfee completely and just use Windows Firewall. It is the only firewall I have used for ten years and never had any problems.
     
    How to uninstall or reinstall supported McAfee products using the McAfee Consumer Products Removal tool
    http://service.McAfee.com/FAQDocument.aspx?ID=TS101331
     
     
  • How and where should I go to find out how to configure my joystick so I can use the joystick to use the flight simulation game that I bought from microsoft?

    I can't find out how to configure my joy (attack3) stick to play Flight Simulator. I don't want to use the keyboard on my computer to steal the game... Where can I find the instructions on how to configure and use the joystick?

    Hello

    1. what happens when you connect the joy stick?

    2. do you get an error message?

    3. what version of Windows are you using?

    Perform the steps mentioned below and check if that helps:

    Step 1:

    Flight Simulator x: using a gamepad

    http://www.Microsoft.com/en-US/Download/details.aspx?ID=16624

    Step 2:
    Usually, vista Windows 7 will find and automatically install the necessary drivers when you plug your game controller into your computer.

    (a) connect the joystick to the USB port via the adapter.

    (b) see if it is detected.

    (c) Windows should recognize the new hardware and set in place to work properly.

    If this isn't the case, install the relevant drivers for gamepad for the manufacturers Web site.

    Step 3:

    I suggest the following steps and check for the device.

    1. in Control Panel, open game controllers. To do this, use one of the following methods:

    a. click Start, typejoy.cpl in the Search box and press ENTER.

    2. click on your game controller, and then click Properties.

    3. on the Test tab, test the game controller to verify functionality.

    Here is the link:

    http://support.Microsoft.com/kb/831361

    I hope this helps.

Maybe you are looking for