If then the clause for a simple select statement.

Good afternoon

I'm sure this will be really simple for a person: I have three paintings that I need to access it in a simple select statement. However, I need to make two separate petitions by a field has an entry or not. Here is the code I wrote so far. It is only to retune the ELSE part, which means that I know I'm close, but I know I'm missing something incredibly simple and boring for me right now.

IF common_event.efeanme IS NULL
THEN
  SELECT a.num_1 AS "EVENT NUMBER", CONCAT(CONCAT(CONCAT(CONCAT(SUBSTR(a.cdts,5,2), '/'), SUBSTR(a.cdts,7,2)), '/'), SUBSTR(a.cdts,1,4)) AS "EVENT DATE", CONCAT(CONCAT(c.xstreet1, ' / '), c.xstreet2) AS "EVENT LOCATION"
  FROM common_event c JOIN agency_event a ON c.eid=a.eid JOIN disposition_type d ON a.ag_id=d.ag_id
  WHERE a.ag_id='JCSO'
  AND a.lev3='JC3'
  AND a.cdts BETWEEN '20140701' AND '20141001'
  AND d.tycod='CIT'
  ORDER BY a.num_1;
ELSE
  SELECT a.num_1 AS "EVENT NUMBER", CONCAT(CONCAT(CONCAT(CONCAT(SUBSTR(a.cdts,5,2), '/'), SUBSTR(a.cdts,7,2)), '/'), SUBSTR(a.cdts,1,4)) AS "EVENT DATE", CONCAT(CONCAT(CONCAT(CONCAT(CONCAT(CONCAT(c.estnum, ' '), c.edirpre), ' '), c.efeanme), ' '), c.efeatyp) AS "EVENT LOCATION"
  FROM common_event c JOIN agency_event a ON c.eid=a.eid JOIN disposition_type d ON a.ag_id=d.ag_id
  WHERE a.ag_id='JCSO'
  AND a.lev3='JC3'
  AND a.cdts BETWEEN '20140701' AND '20141001'
  AND d.tycod='CIT'
  ORDER BY a.num_1;
END IF;

If I run a query on its own, it works as expected. Which means that I don't get something right (in my opinion) in my CASE SO the ELSE clause. As I said, it's probably something so simple I forget only she, but I better ask for a direction somewhat see where I'm going to do it right.

Thanks in advance for any guidance.

Tony

Cant you just do:

SELECT a.num_1 'EVENT NUMBER. "

Concat (Concat (Concat (Concat (substr (a.CDTS, 5, 2), ' / '), SUBSTR (a.cdts, 7, 2)), ' / '), SUBSTR (a.cdts, 1, 4)) AS 'EVENT DATE ',.

-case when c.efeanme IS NULL

then CONCAT (CONCAT (c.xstreet1, ' /'), c.xstreet2)

of another CONCAT (CONCAT (CONCAT (CONCAT (CONCAT (CONCAT (c.estnum, ' '), c.edirpre), ' '), c.efeanme), ' '), c.efeatyp)

end AS 'EVENT ADDRESS'

OF common_event c

JOIN THE

agency_event one

WE c.eid = a.eid

JOIN the disposition_type d

ON a.ag_id = d.ag_id

WHERE a.ag_id = 'JCSO.

AND a.lev3 = 'JC3.

AND a.cdts BETWEEN '20140701' AND '20141001'

AND d.tycod = 'CIT '.

ORDER BY a.num_1

Concerning

Etbin

Deleted AND c.efeanme IS NULL

Tags: Database

Similar Questions

  • Can I omit THEN in a when then the clause of an insert statement multi-table?

    Example of a test of the demo:

    You have been appointed as the DBA for a National Bank that provides services of credit and debit cards to its customers. The records for these two types of card users are stored and preserved in the card_customers of Bank data table.

    You decide to create separate tables for credit card users and users of debit cards and then use the data in the card_customers table to populate the new tables. Information for clients who hold both types of card must be added to the time of the tables.

    Which of the two following options provide the most effective way of inserting the customer data in the credit_card_holders and debit_card_holders tables? (Choose two.)

    Explanation:

    In this scenario, the following statement provides the most effective way of inserting data in the credit_card_holders and debit_card_holders tables:

    INSERT ALL
    When card_type = 'Crédit' THEN credit_card_holders
    When card_type = 'Throughput' THEN debit_card_holders
    SELECT * FROM card_customers;

    Le INSERT all THE statement verifies the conditions in the two clauses WHEN , regardless whether one of them is true or false. If a condition when is true, then the line corresponding to the INSERT statement is executed is inserted in the card_customers in the credit_card_holders table or the debit_card_holders table. If a customer has a credit card and a debit card, there will be two rows in the table card_customers for the same customer, one with card_type = 'Crédit' and the other with card_type = 'Throughput'. This statement inserts the correct lines in the tables in a single pass.


    The TIME is here (in bold) are not present in answer C.


    basic question: can I omit the keyword THEN in a moment, then clause?

    What happened when you tried the failure THEN?

    Do not be afraid to break the Oracle by actually TRYING things.

    The best and fastest, to learn is to try things yourself.

    Then, see the documentation for the basic issues.

    http://docs.Oracle.com/CD/B28359_01/server.111/b28286/statements_9014.htm

    View the diagram of syntax for the 'conditional_insert_clause' and you will see that the word is necessary.

  • I can't find the driver for PCI Simple Communication Controller for my laptop.

    Hi, I just got a HP Probook s 4540, produces none. H5J75EA #ABB and I do not know what driver to install for the controller PCI of Communication Simple, actually I can't. Could you help me please?

    Hello

    You are welcome

    You must download and install driver Intel management engine Interface from the corresponding link below.

    The IMEI - for Windows driver 7/8

    The IMEI - for Windows XP driver

    Kind regards

    DP - K

  • Placing values retuened to a cursor at the place where the clause of a query SELECT

    Hello
    I'm trying to accomplish a task of writing a SELECT statement where I have to query the table based on the values returned by a cursor.
    For example:
    SELECT a.operator_name, a.country_name, a.state_name FROM Table_A a WHERE a.country_id IN (values returned by cursor for country ID) AND the a.operator_name in (values returned by cursor for Operator_Id) AND a.state_id in (values returned by cursor State_ID for).

    Is it possible to make this request, my task is to write it in a stored procedure so that I can return a cursor reference with values as described above.
    Please let me know how to go about this request.

    PS: Cursors are used because it is a Wild-Card search for values where several records can be returned.

    Thanks in advance.

    Kind regards
    Priya

    Because your

    SELECT a.operator_name, a.country_name, a.state_name
      FROM Table_A a
     WHERE a.country_id IN (Values returned from cursor for Country ID's)
       AND a.operator_name IN (Values returned from Cursor for Operator_Id's)
       AND a.state_id IN (Values returned from Cursor for State_ID's)
    

    say something like (sliders deliberately avoided (see Tom Kyte mantra - http://asktom.oracle.com/pls/apex/f?p=100:11:0:::P11_QUESTION_ID:73891904732164))

    SELECT operator_name,country_name,state_name
      FROM Table_A
     WHERE country_id IN (select country_id
                            from countries
                           where upper(country_name) like 'U%?
                         )
       AND operator_name IN (select operator_id
                               from operators
                              where operator_name like 'A%'
                            )
       AND state_id IN (select state_id
                          from states
                         where state_name like 'C%'
                       )
    

    Concerning

    Etbin

  • Simple select statement

    drop table t10;
    create table t10 (seq number, code number, value varchar2(10));
    insert into t10 values (1, 10, 'first');
    insert into t10 values (2, 10, 'second');
    insert into t10 values (3, 10, 'third');
    insert into t10 values (1, 20, 'first');
    insert into t10 values (2, 20, 'second');
    commit;
    select * from t10;
    

    the result obtained

    SQL> select * from t10;
    
    
           SEQ       CODE VALUE
    ---------- ---------- ----------
             1         10 first
             2         10 second
             3         10 third
             1         20 first
             2         20 second
    
    
    
    

    can we select it write as simply as possible to return onlythe row that contains the highest SEQ for a CODE

    so I would like to

    
    
          SEQ       CODE VALUE
    ---------- ---------- ----------
             3         10 third
             2         20 second
    
    
    

    This seems like it should be simple, but the brain is just not see the solution and fried.  Thank you.

    Hello

    GregV wrote:

    Hello

    Another way:

    Select max (seq) Dungeon (last dense_rank command by seq) seq, code, max (value) value of Dungeon (last dense_rank command by seq)

    T10

    Code group;

    You can simplify that:

    Max (SEQ)

    Get exactly the same results as

    Max (SEQ) keep (last dense_rank command by seq)

  • a simple select statement once again

    What is the meaning of the one below select statement, pay attention to (sysdate + 1.1)

    Select (sysdate + 1.1) of the double

    Hello

    a_cute_person wrote:

    Lo, seriously, dude you do not make to_char thing, when I select sysdate, sysdate + 1.1 double I see clearly there is time change, I wanted to know what the weather has changed when I do sysdate + 1.1, and why there is no change in time sysdate + 1. hope you have the hand on what I ask

    Understand this:

    When you add 1 to SYSDATE, a full day is added. So, if the current time i.e. SYSDATE is January 22, 2015 16:55 ', by adding 1, it will be named January 23, 2015 16:55 '. Simple.

    But, 1.1 means one-tenth day and fractional hour comes in picture.

    Yes, day 1.1

    = 1 + 1/10 of the next whole day

    = 24 * 60 * 60 seconds + (1/10) * 24 * 60 * 60 seconds

    and here the time portion changes.

    HTH.

    -Nordine

  • Assign the values of the two variables in a select statement

    I'm trying to set two variables in a select statement in my definition of the procedure. I get the error identifier not valid "ATTRIBUTE" running the following code.
    create or replace procedure tbl_auth (
    Email in varchar2,
    UserLevel out number)
    as
      v_Email varchar2(100) := lower(Email);
      v_login_chk number := 0;
    begin
     select UserLevel into p_UserLevel,
            v_login_chk into v_login_chk
     from tbl_User
     where eMail=v_Email  
    
    exception
     when no_data_found then
      UserLevel := 0;
    end tbl_auth;
    Can I not connect two different values to two different variables in the same select?

    Thank you

    Published by: jerry8989 on August 22, 2011 07:06

    Published by: jerry8989 on August 22, 2011 07:06

    change as follows:

     select UserLevel, v_login_chk into p_UserLevel,
            v_login_chk
    

    IN ONE ALONE is enough.

    BTW, don't you have "login Check" column in the "tbl_user"? If you do, your selection should be like this:

    ...
    select UserLevel, loginChk into /* check the column name in your table */
             p_UserLevel, v_login_chk
     from tbl_User
    ...
    
  • JDBC PreparedStatement gives null after the execution of a valid SELECT statement

    Hello

    I have the following code:
        public static String GetJobLogLocation(Connection connection, int jobId) throws SQLException
        {
            String sqlstr = "SELECT LOGFILE_NAME FROM apps.fnd_concurrent_requests WHERE REQUEST_ID = ?";
            PreparedStatement prest = connection.prepareStatement(sqlstr);
            prest.setInt(1, jobId);
            ResultSet rs1 = prest.executeQuery();
            String rv = null;
            if (rs1.next())
            {
                rv = rs1.getString(1);
                System.out.println(">>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>" + rv);
            }
            rs1.close();
            prest.close();
            return rv;
        }
    As you can see, this function executes a select statement. Before I continue, let me first say that executing the exact same statement in PL/SQL Developer (external program) gives correct/expected results. In addition, run this on my Windows gives correct results environment. I seem to have this problem only on my Unix (SunOS) environment.

    in any case, I get out of this function (running against my Unix environment, of course):

    + > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > + null

    The thing is, it doesn't error out, which means that the result set contains a string, but the string is returned to me with the null value, even if there is a real valid result (that is, in this case, a path).

    Someone has an idea, what happens? I tried to use ojdbc6.jar AND ojdbc14.jar is, with the same results. I just don't understand...

    Thank you.

    Published by: 964530 on 4 January 2013 14:31

    Published by: EJP on 01/07/2013-17:48: added {noformat}
    {noformat} tags and removed your bizarre bold formatting. Please do this properly in future.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            

    ASCI says:
    I'm glad that this is a not prove to be a stupid question. At least I'm feeling a little justified due to this fact.

    There is no stupid question...; (o)

    So what remains is: your selection is too early. Can join after insertion, update to each line to trigger the table that loggs insert/update timestamp and the contents of the LOGFIILE_NAME field?

    Good bye
    DPT

  • Problem with the cascading for interactive report selection list

    Hi all.

    I'm trying to implement the solution of cascading to the tabular presentation list.

    https://Apex.Oracle.com/pls/Apex/f?p=31517:176:103661090335568:

    But instead of the form of paintings, I use interactive report. After executing the query, I get the error:

    ORA-06550: line 1, column 147: PL/SQL: ORA-00936: lack of expression ORA-06550: line 1, column 13: PL/SQL: statement ignored


    My Sql query for the report:

    select 
    apex_item.hidden(1, a."DATA_ID")DATA_ID,
    apex_item.select_list_from_query(10,
      b.WAVE_GROUP,
     'select GROUP_DISPLAY, GROUP_RETURN from dwd_wave_group',
     'onchange="f_set_casc_sel_list_item(this,f11_'||LPAD (a.DATA_ID, 4,'0')||')"',
     'YES',
     '',
     '- Select Group -',
     'f10_' || LPAD (a.DATA_ID, 4, '0'),
      NULL,
     'NO'
     )WAVE_GROUP,
    apex_item.select_list_from_query(11, b."WAVE_USER",
    'SELECT username d, '
    ||'username r FROM dwd_user where groups = '||b."WAVE_GROUP",
    '',
    'YES',
    '', 
    '- Select User -',
    'f11_' || LPAD (a.DATA_ID, 4, '0'),
     NULL,
    'NO'
    )WAVE_USER
    from "DWD_WAVE_MASTER" a, dwd_wave_assignment b
    where a.data_id = b.data_id
    and b.wave_id = 'wave_1'
    

    If I exclude the condition 2nd selection list query and change as below then everything works fine. Query does not give error on sql developer.

    Use: APEX 4.2.6 with Database 11g.

    apex_item.select_list_from_query(11, b."WAVE_USER",
    'SELECT username d, '
    ||'username r FROM dwd_user',
    '',
    'YES',
    '', 
    '- Select User -',
    'f11_' || LPAD (a.DATA_ID, 4, '0'),
     NULL,
    'NO'
    )
    

    Can someone please help!

    Thank you

    Nabila

    The nabila Islam wrote:

    I'm trying to implement the solution of cascading to the tabular presentation list.

    https://Apex.Oracle.com/pls/Apex/f?p=31517:176:103661090335568:

    But instead of the form of paintings, I use interactive report. After executing the query, I get the error:

    ORA-06550: line 1, column 147: PL/SQL: ORA-00936: lack of expression ORA-06550: line 1, column 13: PL/SQL: statement ignored

    My Sql query for the report:

    1. Select
    2. apex_item. Hidden (' 1, a. "DATA_ID DATA_ID").
    3. apex_item.select_list_from_query (10,
    4. b.WAVE_GROUP,
    5. "select GROUP_DISPLAY, GROUP_RETURN from dwd_wave_group,"
    6. "onchange =" f_set_casc_sel_list_item (this, f11_'|) LPAD (a.DATA_ID, 4, '0'). ") » ',
    7. '' YES. ''
    8. '',
    9. -Select Group «-»,
    10. "f10_" | LPAD (a.DATA_ID, 4, '0'),
    11. NULL,
    12. 'NO '.
    13. ) WAVE_GROUP,.
    14. apex_item.select_list_from_query ("11, b.") WAVE_USER,"
    15. "SELECT user name d.
    16. |' username r FROM dwd_user where group = ' | b."WAVE_GROUP."
    17. '',
    18. '' YES. ''
    19. '',
    20. "- Select user -",
    21. "f11_" | LPAD (a.DATA_ID, 4, '0'),
    22. NULL,
    23. 'NO '.
    24. ) WAVE_USER
    25. of 'DWD_WAVE_MASTER' a, b dwd_wave_assignment
    26. where a.data_id = b.data_id
    27. and b.wave_id = 'wave_1. '

    If I exclude the condition 2nd selection list query and change as below then everything works fine. Query does not give error on sql developer.

    Use: APEX 4.2.6 with Database 11g.

    1. apex_item.select_list_from_query ("11, b.") WAVE_USER,"
    2. "SELECT user name d.
    3. |' username r FROM dwd_user ",
    4. '',
    5. '' YES. ''
    6. '',
    7. "- Select user -",
    8. "f11_" | LPAD (a.DATA_ID, 4, '0'),
    9. NULL,
    10. 'NO '.
    11. )

    What is the data type of DWD_WAVE_ASSIGNMENT. WAVE_GROUP? If it is not a number, then it must be enclosed in quotes when it is used as a literal:

    apex_item.select_list_from_query(11, b."WAVE_USER",
    'SELECT username d, '
    
    ||'username r FROM dwd_user where groups = ' || dbms_assert.enquote_literal(b."WAVE_GROUP"),  
    
    '',
    'YES',
    '',
    '- Select User -',
    'f11_' || LPAD (a.DATA_ID, 4, '0'),
    NULL,
    'NO'
    )
    
  • HP 15 r203tx: regarding the drivers for PCI Simple Communication controller

    I bought HP r203xt laptop. I installed win7 ultimate 64-bit. I need driver for simple PCI communications controller. I find the Web site but impossible to get.

    Hello:

    See if this driver works...

    This package provides the driver Intel Management Engine Interface (MEI) for the notebook models and operating systems. The Intel Management Engine Interface allows communication between the host operating system and the Intel Management Engine firmware.

    File name: sp70033.exe

  • Problem with the simple Select statements

    Hi experts,

    I have with SQL Server and I'm going to hurt when I use the similar syntax in sqlplus to query an Oracle table.

    For example... my table contains column SCHID SET in the numeric form. Table has thousands of lines and the SCHID column is filled.

    Select TOP 100 AFTSCHAUXDATA SCHID;

    Get the "Word FROM key not found where expected" error

    Select DISTINCT from AFTSCHAUXDATA SCHID;

    Download "no selected lines.

    Can someone help me please?

    Thank you, John

    Can someone tell me how to find the names of the 20 largest tables (bigger which means that most of the files)?

    Once you have updated statistics on the table, you can query the DataDictionary: USER_TABLES/ALL_TABLES/DBA_TABLES.
    I'm assuming that user_tables will do:

    select *
    from ( select table_name
           ,      num_rows
           from   user_tables
           order by num_rows desc nulls last
         )
    where rownum <= 20; 
    

    You can find more explanations about the DataDictionary in the Oracle Online Documentation.
    Just do a quick and easy search
    http://www.Oracle.com/pls/db112/homepage
    or
    http://www.Oracle.com/pls/db102/homepage
    Depending on your version of the database.

  • Question about the clause for the EVE of BACKUP command

    Hello

    I would like to know the exact difference between BACKUP CONTROLFILE CURRENT and BACKUP CONTROLFILE CURRENT for INTELLIGENCE in Oracle 11 g. I searched the docs and My Oracle Support OTN, but still I have not found an answer. I would be grateful for any explanation or references.

    Thanks in advance.

    Hello

    Allows to consider from scratch,

    What is a controlfile :--> its a small binary file that records the physical structure of the database.
    The control file includes:
    The name of the database
    The names and locations of the partners of the data files and redo log files
    The timestamp of the creation of the database
    The current sequence number
    Control point information

    Now, down to backup controlfile--> will have the exact backup of the controlfile used by the database (including the role of the database) Please note that this controlfile cannot serve as a controlfile standby when you try to use it it will return the error

    Backup controlfile as Eve--> will anything similar as for the previous command except for the role of database that are not primary indicator but would be pahysical Eve, all other information would be same.. like with it it will not be an exact replica of the primary database.

    It is the only difference from what I understand concepts.

    Regrads

  • Need help with the code for drop-down selection, please!

    I'm falling out of scope with a drop of water in my form. My form is long, and certain areas are in Page 2. When I click on the "Customer hospitality event" drop-down list selection, the fields of P2 do not hide. Here is the code that I have on the menu drop-down:

    -form1. P1.meetDetails.meetType::exit :-(JavaScript, client).

    switch

    (this.rawValue)

    {

    " case" " Customer home ' :

    Header.PRESENCE = "visible";

    meetDetails.presence = "visible";

    meetDetailsaddl.presence = "visible";

    Form1. P2.rstatus.presence = 'hidden '.

    Form1. P2. Status.Presence = 'hidden '.

    breaking ;

    }

    Help, please!

    Thank you!

    I see that references to the P2 have no end of line separators (-).

    Form1. P2.rstatus.presence = 'hidden '.

    Form1. P2. Status.Presence = 'hidden '.

    The JavaScript runtime engine is perhaps unfortunate. Try to add them.

    Steve

  • a simple select statement

    I have data like below

    p_no s_text

    1-abcdefgh

    1 ijklmnop

    1 qrstuvwx

    what I need, it is print the output as below, I do not want to use sys_connect_by_path and please advise me not to look at the lines of examples of columns

    p_no s_text_1 s_text_2 s_text_3

    1 abcdefgh ijklmnop qrstuvwx

    Strange HM. You have 'only' with the statement.

    with tab (p_no, o_text)

    as - look here, have you?

    (

    Select 1, 'asdasd' from dual
    Union of all the
    Select 1, 'xcvxcvxc' from dual
    Union of all the
    Select 1, 'Souleymane' from dual
    )
    Select P_no, min (case when r = 1 then end s_text) S_text_1,.
                 min (case when r = 2 end s_text) S_text_2,.
                 min (case when r = 3 there end s_text) S_text_3
    de)
    Select p_no, o_text, row_number() over (partition by order p_no by s_text) r of the tab)
    P_no group;

    try using this table querry.

    Select P_no, min (case when r = 1 then end s_text) S_text_1,.

    min (case when r = 2 end s_text) S_text_2,.

    min (case when r = 3 there end s_text) S_text_3

    de)

    Select p_no, o_text, row_number() over (partition by order p_no by s_text) r of ) - put your table here

    P_no group;

  • Solution for a required select statement

    Hello world. I am new to oracle and it's my first thread on this forum. We know that there are a few tables emp, dept, salgrade etc. under the user Scott.

    Emp table contains a foreign key, named Bishop, which is basically empno of an employee who manages the employee concerned.

    I want to write a query that shows (the name and the number of employees managed) this manager that manages maximum number of employees.

    Since there is a self-join involved if things became very difficult for me as I'm new to SQL, so if someone could tell me please the solution so it would be great. Soon thanks in advance.

    Hello

    Welcome to the forum!

    It's a good start!
    Now look at this request, which considers the person in the table emp with the highest sal:

    WITH     got_r_num     AS
    (
         SELECT     ename
         ,     sal
         ,     RANK () OVER (ORDER BY  sal  DESC)     AS r_num
         FROM     scott.emp
    )
    SELECT     ename
    ,     sal
    FROM     got_r_num
    WHERE     r_num     = 1
    ;
    

    Output:

    ENAME             SAL
    ---------- ----------
    KING             5000
    

    You want to do something similar, only you don't want to use Sal; you want to use COUNT (sub.empno), which you called "number of subordinates.

    Small is an example of a + Top - N Query."  If you are looking for 'Top - N query', you can find many other examples (including some using aggregate functions, such as COUNT) and explanations.

    See if you can adapt the query above to your needs. If you get stuck, post your best attempt and a specific question.

Maybe you are looking for

  • Out loging: S

    When I log on Skype after a few seconds I get out sgined! Show me "you have been disconnected", what should I do? And I changed the password too

  • temperatures Y50-70

    Hello everyone, I got my lenovo y50-70 for a few days and I used it a lot lately. After a while I noticed that my temperature rose significantly. What worries me the most, it is my slow time symmetric mode (energy Manager) are around 50-60 used to be

  • Difficulty of Windows mail

    When I open the windows mail, it goes directly to the Inbox.  How can I return the left column? (spam, sent items, etc.)

  • On overide on 1515n toner

    How to turn off the function on a Color Laserjet 1515n overide toner? When my color toners are empty, I need to be able to print with black toner only. I use Windows 7 and Toolbox Fx does not work with my operating system! Thank you

  • Cisco ask the Expert Award winner - 7 October - thank you Cisco!

    Hi all I don't know if you had the chance to join the ask the Expert Live recent event with Lucien Avramov. I did, and guess what? I won a free subscription to Cisco Live virtual environment! I'm a little ashamed to say that I used a bug in the rules