Need to rotate the sub query using 11 g

Hello

Please find the below query

SELECT AGING_BUCKET_ID, DAYS_START, DAYS_TO, AR_AGING_BUCKET_LINES TYPE
WHERE AGING_BUCKET_ID = 3

It displays the data as below

AGING_BUCKET_ID DAYS_START DAYS_TO TYPE

3-9999 0 CURRENT
3 1 30 LAST
3 31 60 LAST
3 61 90 LAST
3 91 9999999 PAST


I tried to rotate the data, tried to make use of the PIVOT of the 11 g used the following query function

WITH AGBUCK AS
(
SELECT AGING_BUCKET_ID, DAYS_START, DAYS_TO, AR_AGING_BUCKET_LINES TYPE
WHERE AGING_BUCKET_ID = 3
) SELECT * FROM AGBUCK
PIVOT)
DAYS_START s1, s2 DAYS_TO, type
FOR AGING_BUCKET_ID
(3)
);

finished in the msg below:-ora-56902: wait for the aggregate within the operation of pivot function

can you please help me to fix it.

Concerning
Yram

Hi, Yram,

Whenever you have a problem, after a few sample data and outcomes from these data.
Sorry, I can't make a good guess at what you want, and I'm not an Oracle 11 database now to test. I think you want something like this:

WITH      AGBUCK      AS
(
     SELECT      AGING_BUCKET_ID
     ,     DAYS_START
     ,     DAYS_TO || TYPE      AS label
     FROM      AR_AGING_BUCKET_LINES
     WHERE      AGING_BUCKET_ID     = 3
)
SELECT     *
FROM     agbuck
PIVOT     (     MIN (days_start)
     FOR     label
     IN     (     '0 CURRENT'     AS current_0
          ,     '30 PAST'     AS past_30
          ,     '60 PAST'     AS past_60
          ,     '90 PAST'     AS past_90
          ,     '9999999 PAST'     AS past_9999999
          )
     )
;

The first thing inside the parentheses after the PIVOT keyword must be an aggregate function. If there is a one-to-one correspondence between the lines in the "input" table and cells in the output, so no matter if you use the MIN or MAX (or, in the case of numbers, AVG or SUM).

Tags: Database

Similar Questions

  • Order By in the Sub query

    We cannot use ORDER BY in the Sub query.
    select * from emp where emp_no in (select emp_id from dept order by dept_no )
    Get the below error
    ORA-00907: missing right parenthesis

    Hello

    user13024762 wrote:
    To get the number of EMP table for maximum number of dept dept

    If this is what you want, then do something like this:

    select  *
    from      emp
    where      emp_no in (
                          select    MAX (emp_no) KEEP (DENSE_RANK LAST ORDER BY dept_no NULLS FIRST)
                   from      dept
                )
    ;
    

    or maybe

    select  *
    from      emp
    where      emp_no  = (
                          select    emp_no
                   from      dept
                   where     dept_no = (
                                                    SELECT  MAX (dept_no)
                                 FROM    dept
                                                 )
                )
    ;
    

    Depending on what you want in the case of a tie.

    select * from emp where emp_no in (select emp_no from dept where rownum =1 order by dept_no desc)
    

    The subquery that you posted above does not necessarily return the line containing the largest dept_no, since ROWNUM is affected before ORDER BY is done.

    I hope that answers your question.
    If not, post a small example of data (CREATE TABLE and only relevant columns, INSERT statements) for all tables and also post the results desired from these data.
    Explain how you get these results from these data.

  • the share button don't work and need to leave the app after used

    the share button does not work and I need to force quit the app after used

    Any individual plugin or all of them?

  • How to rotate a video clip shot with a mobile phone.  I need to rotate the screen, not just the clip.

    I know how to rotate the clip in the screen using the 'Effects' Panel, but when I export the video finished it is small with a lot of black space around it.  It does not fill the screen.  I don't know there is a way but it can not understand.

    Thanks for any help, that all the world can offer.

    Go into the settings of the sequence and it set to custom and change the framesize.

    Staples can be turned in under the Motion effect options.

  • UPDATE on the same table in the sub query

    DB version: 11.2

    We have a table called SHP_GC_TRACK, which has about 8 million records with partitions. In the below UPDATE, it updates a column based on the SELECT on the same table in a subquery.
    UPDATE shp_gc_track a
       SET f_tran_proc  = 'Y'
     WHERE last_update_date <
              (SELECT MAX (last_update_date)
                 FROM shp_gc_track b
                WHERE a.shp_trx_rowid = b.shp_trx_rowid
                  AND a.c_shp_inst = b.c_shp_inst
                  AND a.f_tran_proc  = b.f_tran_proc 
                  AND b.f_ltr_received = 'D'
                  AND f_rec_code IN ('G', 'W')
                  AND b.f_rec_status = 'B'
                  AND b.c_shp_inst = :b1
                  )
       AND a.c_shp_inst = :b1
       AND a.f_ltr_received = 'D'             -----------------> part of composite index
       AND a.f_tran_proc  = 'N'              -----------------> part of composite index
       AND a.f_rec_code IN ('G', 'W')      --------------> part of composite index  
       AND a.f_rec_status = 'B';              -----------------> part of composite index  
    This UPDATE takes a long time to run and sometimes get hung up.

    We have a composite index on four columns f_ltr_received, f_rec_code, f_rec_status and f_tran_proc. Explain the plan shows that this composite index is used.



    Any way to rewrite this query or suggestion?

    Steve_74 wrote:
    DB version: 11.2

    We have a table called SHP_GC_TRACK, which has about 8 million records with partitions. In the below UPDATE, it updates a column based on the SELECT on the same table in a subquery.

    UPDATE shp_gc_track a
    SET f_tran_proc  = 'Y'
    WHERE last_update_date <
    (SELECT MAX (last_update_date)
    FROM shp_gc_track b
    WHERE a.shp_trx_rowid = b.shp_trx_rowid
    AND a.c_shp_inst = b.c_shp_inst
    AND a.f_tran_proc  = b.f_tran_proc
    AND b.f_ltr_received = 'D'
    AND f_rec_code IN ('G', 'W')
    AND b.f_rec_status = 'B'
    AND b.c_shp_inst = :b1
    )
    AND a.c_shp_inst = :b1
    AND a.f_ltr_received = 'D'             -----------------> part of composite index
    AND a.f_tran_proc  = 'N'              -----------------> part of composite index
    AND a.f_rec_code IN ('G', 'W')      --------------> part of composite index
    AND a.f_rec_status = 'B';              -----------------> part of composite index  
    

    This UPDATE takes a long time to run and sometimes get hung up.

    We have a composite index on four columns f_ltr_received, f_rec_code, f_rec_status and f_tran_proc. Explain the plan shows that this composite index is used.

    Any way to rewrite this query or suggestion?

    Setting updates with subqueries may be difficult: (.) Unfortunately my suggestions below are of the try-it-and-see-what-happens variety - nothing of certain

    First of all, check the index. Is it bitmap or tree? If the tree to see if the more restrictive columns are listed first - this can help with effectiveness of b-tree indexes. Also if the tree a composite bitmap for columns with lots of repeat values instead could help

    Its a correlated subquery so that you cannot run just the subquery first put the result in a scalar varaiable and using the variable in the SQL instead. You can try putting the keys w/join subuqery results in a TWG first to use TWG in SQL to see if I/O is reduced together during these two operations.

    You have the license for the parallel query option? Using parallel DML (this must be activated manually) can help. Check the documentation of the ALTER SESSION command to do so. In addition, the PARALLEL_INDEX() indicator could help

    Display the SQL execution plan

  • Need to create the directory (folder) using phonegap (mobile jquery)

    In my application, I have a button field and text on each click I need to create a folder (folder create text file with text field data). I also read data from the text file. I also need to count the number of folder in this directory how it is it possible to phonegap + jquery mobile.

    is it possible to control this feature in office or I need device?

    I suggest you start here

    www.html5rocks.com/en/tutorials/file/filesystem/

    Its a good guide

  • Need help in the sql query

    Hi all

    Here is the sql query,

    Select papf.employee_number,

    -papf.full_name, ppa.effective_date, pp.payroll_name,

    PET.element_name,

    PIV. Name input_value,

    prrv.result_value

    -, ppa.payroll_action_id, ppa.time_period_id

    Of

    Apps.pay_payroll_actions App,

    pay_assignment_actions AAP,

    pay_payrolls_f pp,

    pay_run_results prr,

    prrv pay_run_result_values,

    pay_input_values_f piv,

    animal pay_element_types_f,

    Apps.per_all_assignments_f ADP,

    Apps.per_all_people_f women's wear

    -where ppa.payroll_action_id =: payroll_action_id - give your payroll_action_id

    where ppa.payroll_id =: payroll_id

    and ppa.payroll_action_id =: payroll_action_id

    - and paa.assignment_action_id =: assignment_action_id

    and ppa.payroll_action_id = paa.payroll_action_id

    and ppa.payroll_id = pp.payroll_id

    and paa.assignment_action_id = prr.assignment_action_id

    and prr.run_result_id = prrv.run_result_id

    and prrv.input_value_id = piv.input_value_id

    and piv.element_type_id = pet.element_type_id

    and paaf.assignment_id = paa.assignment_id

    and paaf.person_id = papf.person_id

    and trunc (sysdate) between pp.effective_start_date and pp.effective_end_date

    and trunc (sysdate) between pet.effective_start_date and pet.effective_end_date

    and trunc (sysdate) between piv.effective_start_date and piv.effective_end_date

    and trunc (sysdate) between paaf.effective_start_date and paaf.effective_end_date

    and trunc (sysdate) between papf.effective_start_date and papf.effective_end_date

    - and papf.employee_number = '1'

    - and ppa.effective_date = July 22, 2014"

    and pet.element_name in ('Local Mission allowance', "Compensation of Mission International")

    order by 1.3

    The result is:

    Employee_number Element_Name Input_Value Result_value

    1 compensation of Mission international day amount 1000

    1 compensation of international Mission Distance days 4

    1 value to pay compensation of 1200 International Mission

    1 International Mission allowance Start Date 01/01/2014

    1 compensation of Mission international day amount 800

    1 compensation of international Mission Distance days 10

    1 International Mission allowance pay value 2000

    1 International Mission allowance Start Date 01/02/2014

    1 compensation of Mission local day amount 500

    1 compensation of local Mission Distance days 10

    1 Mission allowance paid local value 1000

    1 compensation of local Mission Start Date 01/11/2014

    Desired output:

    Employee_number Element_Name Day_Amount Distance_Days Pay_Value Start_Date

    1 compensation of international Mission 1000, 1200 4 2014/01/01

    1

    International Mission allowance80010200001/02/2014
    1Mission local compensation50010100001/11/2014

    Please suggest.

    INSERT statement:

    TOGETHER TO DEFINE

    Insert into APPS. PER_ALL_PEOPLE_F

    (EMPLOYEE_NUMBER, NOM_ELEMENT, INPUT_VALUE, RESULT_VALUE)

    Values

    ('1', 'International Mission allowance', 'Day amount', '1000');

    Insert into APPS. PER_ALL_PEOPLE_F

    (EMPLOYEE_NUMBER, NOM_ELEMENT, INPUT_VALUE, RESULT_VALUE)

    Values

    ('1', 'International Mission allowance', 'Day amount', '1000');

    Insert into APPS. PER_ALL_PEOPLE_F

    (EMPLOYEE_NUMBER, NOM_ELEMENT, INPUT_VALUE, RESULT_VALUE)

    Values

    ('1', 'International Mission allowance', 'number of orders', '196');

    Insert into APPS. PER_ALL_PEOPLE_F

    (EMPLOYEE_NUMBER, NOM_ELEMENT, INPUT_VALUE, RESULT_VALUE)

    Values

    ('1', 'International Mission allowance', 'number of orders', '195');

    Insert into APPS. PER_ALL_PEOPLE_F

    (EMPLOYEE_NUMBER, NOM_ELEMENT, INPUT_VALUE, RESULT_VALUE)

    Values

    ('1', 'International Mission allowance', ' Distance days, 4 ");

    Insert into APPS. PER_ALL_PEOPLE_F

    (EMPLOYEE_NUMBER, NOM_ELEMENT, INPUT_VALUE, RESULT_VALUE)

    Values

    ('1', 'International Mission allowance', ' Distance days, 1 ");

    Insert into APPS. PER_ALL_PEOPLE_F

    (EMPLOYEE_NUMBER, NOM_ELEMENT, INPUT_VALUE, RESULT_VALUE)

    Values

    ("1', 'International Mission allowance', 'employee Category", "scale of employment medical cities");

    Insert into APPS. PER_ALL_PEOPLE_F

    (EMPLOYEE_NUMBER, NOM_ELEMENT, INPUT_VALUE, RESULT_VALUE)

    Values

    ("1', 'International Mission allowance', 'employee Category", "scale of employment medical cities");

    Insert into APPS. PER_ALL_PEOPLE_F

    (EMPLOYEE_NUMBER, NOM_ELEMENT, INPUT_VALUE, RESULT_VALUE)

    Values

    ('1', 'International Mission allowance', 'Class level', 'G3');

    Insert into APPS. PER_ALL_PEOPLE_F

    (EMPLOYEE_NUMBER, NOM_ELEMENT, INPUT_VALUE, RESULT_VALUE)

    Values

    ('1', 'International Mission allowance', 'Class level', 'G3');

    Insert into APPS. PER_ALL_PEOPLE_F

    (EMPLOYEE_NUMBER, NOM_ELEMENT, INPUT_VALUE, RESULT_VALUE)

    Values

    ('1', 'International Mission allowance', 'class of employment, ' ');

    Insert into APPS. PER_ALL_PEOPLE_F

    (EMPLOYEE_NUMBER, NOM_ELEMENT, INPUT_VALUE, RESULT_VALUE)

    Values

    ('1', 'International Mission allowance', 'class of employment, ' ');

    Insert into APPS. PER_ALL_PEOPLE_F

    (EMPLOYEE_NUMBER, NOM_ELEMENT, INPUT_VALUE, RESULT_VALUE)

    Values

    ('1', 'International Mission allowance', 'Country of Mission', ' 3003 - Kuwait ");

    Insert into APPS. PER_ALL_PEOPLE_F

    (EMPLOYEE_NUMBER, NOM_ELEMENT, INPUT_VALUE, RESULT_VALUE)

    Values

    ('1', 'International Mission allowance', 'Country of Mission', ' 2004 - Canada ");

    Insert into APPS. PER_ALL_PEOPLE_F

    (EMPLOYEE_NUMBER, NOM_ELEMENT, INPUT_VALUE, RESULT_VALUE)

    Values

    ('1', 'International Mission allowance', ' Mission days, 4' ");

    Insert into APPS. PER_ALL_PEOPLE_F

    (EMPLOYEE_NUMBER, NOM_ELEMENT, INPUT_VALUE, RESULT_VALUE)

    Values

    ('1', 'International Mission allowance', ' Mission days, 3' ");

    Insert into APPS. PER_ALL_PEOPLE_F

    (EMPLOYEE_NUMBER, NOM_ELEMENT, INPUT_VALUE, RESULT_VALUE)

    Values

    ('1', 'compensation of Mission international","End of Mission Date"' 2014/07/10 00:00:00 ');

    Insert into APPS. PER_ALL_PEOPLE_F

    (EMPLOYEE_NUMBER, NOM_ELEMENT, INPUT_VALUE, RESULT_VALUE)

    Values

    ('1', 'compensation of Mission international","End of Mission Date"' 2014/07/19 00:00:00 ');

    Insert into APPS. PER_ALL_PEOPLE_F

    (EMPLOYEE_NUMBER, NOM_ELEMENT, INPUT_VALUE, RESULT_VALUE)

    Values

    ('1', 'compensation of Mission international", 'Mission Start Date', ' 2014/07/07 00:00:00 ');

    Insert into APPS. PER_ALL_PEOPLE_F

    (EMPLOYEE_NUMBER, NOM_ELEMENT, INPUT_VALUE, RESULT_VALUE)

    Values

    ('1', 'compensation of Mission international", 'Mission Start Date', ' 2014/07/17 00:00:00 ');

    Insert into APPS. PER_ALL_PEOPLE_F

    (EMPLOYEE_NUMBER, NOM_ELEMENT, INPUT_VALUE, RESULT_VALUE)

    Values

    ('1', 'International Mission allowance', 'value of pay', '3000');

    Insert into APPS. PER_ALL_PEOPLE_F

    (EMPLOYEE_NUMBER, NOM_ELEMENT, INPUT_VALUE, RESULT_VALUE)

    Values

    ('1', 'International Mission allowance', 'value of pay', '4000');

    00:00 ');

    Insert into APPS. PER_ALL_PEOPLE_F

    (EMPLOYEE_NUMBER, NOM_ELEMENT, INPUT_VALUE, RESULT_VALUE)

    Values

    ('70', 'Local Mission allowance', 'number of orders', '45');

    Insert into APPS. PER_ALL_PEOPLE_F

    (EMPLOYEE_NUMBER, NOM_ELEMENT, INPUT_VALUE, RESULT_VALUE)

    Values

    ('70', 'Local Mission allowance', 'number of orders', "456789");

    Insert into APPS. PER_ALL_PEOPLE_F

    (EMPLOYEE_NUMBER, NOM_ELEMENT, INPUT_VALUE, RESULT_VALUE)

    Values

    ('70 ', 'local Mission allowance', ' away days '0' ");

    Insert into APPS. PER_ALL_PEOPLE_F

    (EMPLOYEE_NUMBER, NOM_ELEMENT, INPUT_VALUE, RESULT_VALUE)

    Values

    ('70 ', 'local Mission allowance', ' Distance days, 1 ");

    Insert into APPS. PER_ALL_PEOPLE_F

    (EMPLOYEE_NUMBER, NOM_ELEMENT, INPUT_VALUE, RESULT_VALUE)

    Values

    ('70 ', 'local Mission allowance', 'Provided food', 'Y');

    Insert into APPS. PER_ALL_PEOPLE_F

    (EMPLOYEE_NUMBER, NOM_ELEMENT, INPUT_VALUE, RESULT_VALUE)

    Values

    ('70', 'compensation of local Mission","Accommodation provided", 'Y');

    Insert into APPS. PER_ALL_PEOPLE_F

    (EMPLOYEE_NUMBER, NOM_ELEMENT, INPUT_VALUE, RESULT_VALUE)

    Values

    ('70', 'compensation of local Mission","Accommodation provided", 'Y');

    Insert into APPS. PER_ALL_PEOPLE_F

    (EMPLOYEE_NUMBER, NOM_ELEMENT, INPUT_VALUE, RESULT_VALUE)

    Values

    ('70 ', "local Mission allowance", "Mission City", "AL MEDINA");

    Insert into APPS. PER_ALL_PEOPLE_F

    (EMPLOYEE_NUMBER, NOM_ELEMENT, INPUT_VALUE, RESULT_VALUE)

    Values

    ('70 ', "local Mission allowance", "Mission City", "RIYADH");

    Insert into APPS. PER_ALL_PEOPLE_F

    (EMPLOYEE_NUMBER, NOM_ELEMENT, INPUT_VALUE, RESULT_VALUE)

    Values

    ('70 ', 'local Mission allowance', ' Mission days, 4' ");

    Insert into APPS. PER_ALL_PEOPLE_F

    (EMPLOYEE_NUMBER, NOM_ELEMENT, INPUT_VALUE, RESULT_VALUE)

    Values

    ('70 ', 'local Mission allowance', ' Mission days, 5' ");

    Insert into APPS. PER_ALL_PEOPLE_F

    (EMPLOYEE_NUMBER, NOM_ELEMENT, INPUT_VALUE, RESULT_VALUE)

    Values

    ('70', 'Local Mission allowance', 'End of Mission Date' ' 2014/06/16 00:00:00 ');

    Insert into APPS. PER_ALL_PEOPLE_F

    (EMPLOYEE_NUMBER, NOM_ELEMENT, INPUT_VALUE, RESULT_VALUE)

    Values

    ('70', 'Local Mission allowance', 'End of Mission Date' ' 2014-06-14 00:00:00 ');

    Insert into APPS. PER_ALL_PEOPLE_F

    (EMPLOYEE_NUMBER, NOM_ELEMENT, INPUT_VALUE, RESULT_VALUE)

    Values

    ('70', 'Local Mission allowance', 'Mission Start Date', ' 2014/06/13 00:00:00 ');

    Insert into APPS. PER_ALL_PEOPLE_F

    (EMPLOYEE_NUMBER, NOM_ELEMENT, INPUT_VALUE, RESULT_VALUE)

    Values

    ('70', 'Local Mission allowance', 'Mission Start Date', ' 2014/06/10 00:00:00 ');

    Thank you very much in advance.

    Kind regards

    Afzal.

    So then... something like this:

    SELECT employee_number

    element_name

    MAX (decode (input_value, 'Day amount', result_value)) AS day_amount

    MAX (decode (input_value, 'Days of Distance', result_value)) AS Distance_Days

    , MAX (decode (input_value, 'Value of pay', result_value)) AS Pay_Value

    MAX (decode (input_value, 'Start Date', result_value)) AS Start_Date

    from (SELECT papf.employee_number

    pet.element_name

    piv.NAME input_value

    prrv.result_value

    prrv.run_result_id

    OF apps.pay_payroll_actions App

    pay_assignment_actions PAA

    pay_payrolls_f pp

    pay_run_results prr

    pay_run_result_values prrv

    pay_input_values_f piv

    pay_element_types_f pet

    apps.per_all_assignments_f ADP

    apps.per_all_people_f women's wear

    -where ppa.payroll_action_id =: payroll_action_id - give your payroll_action_id

    WHERE ppa.payroll_id =: payroll_id

    AND ppa.payroll_action_id =: payroll_action_id

    - and paa.assignment_action_id =: assignment_action_id

    AND ppa.payroll_action_id = paa.payroll_action_id

    AND ppa.payroll_id = pp.payroll_id

    AND paa.assignment_action_id = prr.assignment_action_id

    AND prr.run_result_id = prrv.run_result_id

    AND prrv.input_value_id = piv.input_value_id

    AND piv.element_type_id = pet.element_type_id

    AND paaf.assignment_id = paa.assignment_id

    AND paaf.person_id = papf.person_id

    AND trunc (sysdate) BETWEEN pp.effective_start_date AND pp.effective_end_date

    AND trunc (sysdate) BETWEEN pet.effective_start_date AND pet.effective_end_date

    AND trunc (sysdate) BETWEEN piv.effective_start_date AND piv.effective_end_date

    AND trunc (sysdate) BETWEEN paaf.effective_start_date AND paaf.effective_end_date

    AND trunc (sysdate) BETWEEN papf.effective_start_date AND papf.effective_end_date

    AND pet.element_name IN ('local Mission allowance', 'International Mission'))

    GROUP BY employee_number

    element_name

    run_result_id

    ;

    You should get your desired result.

    Roger

  • Need help with the RESEARCH QUERY

    Hello

    I have the follwing query to search in my table.
    If the search box is empty and I click to perform a search, all the elements of the array are listed.

    How can I change the following query so if: P1_REPORT_SEARCH is null, I have no results.

    Thank you

    Roseline

    SELECT
    "RDO"."ID",LPAD(NOD, 4, '0') as NOD,"IDD","TIT","TIC", '- - -' AS "DISQUE" ,'- - -' AS "ELEMENT"
    
     from   "REGDOSSIERS" "RDO"
           where 
           ( 
            TRANSLATE ( UPPER ("TIT")
           , 'ÀÂÉÈÊÎÔÛÙÜ'
           , 'AAEEEIOUUU'
           )  like   '%' || TRANSLATE ( UPPER (:P1_REPORT_SEARCH)
                             , 'ÀÂÉÈÊÎÔÛÙÜ'
                               , 'AAEEEIOUUU'
                             )
                   || '%'
           )

    Hello

    Try

    SELECT
    "RDO"."ID",LPAD(NOD, 4, '0') as NOD,"IDD","TIT","TIC", '- - -' AS "DISQUE" ,'- - -' AS "ELEMENT"
    
     from   "REGDOSSIERS" "RDO"
           where
           (
            TRANSLATE ( UPPER ("TIT")
           , 'ÀÂÉÈÊÎÔÛÙÜ'
           , 'AAEEEIOUUU'
           )  like   '%' || TRANSLATE ( UPPER (:P1_REPORT_SEARCH)
                             , 'ÀÂÉÈÊÎÔÛÙÜ'
                               , 'AAEEEIOUUU'
                             )
                   || '%'
           )
    AND :P1_REPORT_SEARCH IS NOT NULL
    

    BR, Jari

  • Need to monitor the media port use on 8510

    Info on MCU:

    Cisco TelePresence MCU MSE 8510

    Serial number SM021XXX

    Software version 4.4 (3.49)

    Build 6.18 (3.49)

    Availability 6 days, 22 hours, 15 minutes

    It is a HD blade that is configured for the ports of 40 media

    I have to be able to look at the use of the port over time to know when we have exceeded the maximum number of ports and the appellant has been abandoned to the audio only

    Thoughts?

    --

    Dan

    You can find exactly what you are looking for in the event logs.  I just maxed out our 8510 by a participant, the same fall first one I added in the test that matched my allocation of port instead of going 1-sending video of my test results are below.

    30330 17:40:09.423 CONFERENCE Info Unable to send the video to "Patrick Sparkman" - allocation exceeded
    30331 17:40:09.536 CONFERENCE Info now able to send the video extended to "Patrick Sparkman"
  • Need help with the recursive query

    I have test table

    Create table test (key primary number col_pk,)

    number of fins,

    number of fo_fv

    number of jup_fv

    action varchar2 (10)

    );

    Insert into test values(1,1,1,1,'LOAD');

    Insert into test values(2,2,null,2,'ROLL');

    Insert into test values(3,3,null,3,'ROLL');

    Insert into test values(4,4,null,4,'ROLL');

    Insert into test values(5,5,null,5,'ROLL');

    Insert into test values (6, null, null, 5.1, 'FLATTEN');

    Insert into test values (7, null, null, 5.2, 'FLATTEN');

    Insert into test values(8,null,null,1,'SIGNOFF');

    Insert into test values (9, null, null, 1,001, 'SIGNOFF');

    Insert into test values(10,6,2,6,'LOAD');

    Insert into test values (11, null, null, 6.1, 'FLATTEN');

    Insert into test values(12,7,1,7,'RELOAD');

    Insert into test values(13,null,null,1,'SIGNOFF');

    Select * from test;

    I want the result of the query in the form below:

    COL_PK FINS FO_FV JUP_FV ACTION

    ---------- ---------- ---------- ---------- ----------

    1 1 1 1 LOAD

    --------------------------------------------------

    2 2 1 2 ROLL

    --------------------------------------------------

    3 3 1 3 ROLL

    --------------------------------------------------

    4 4 1 4 ROLL

    --------------------------------------------------

    ROLL 5 5 1 5

    --------------------------------------------------

    5.1 6 5 1 FLATTEN

    --------------------------------------------------

    7 5 1 5.2 FLATTEN

    --------------------------------------------------

    8 5 1 1 APPROVAL

    --------------------------------------------------

    9 5 1 APPROVAL 1,001

    --------------------------------------------------

    10 6 2 6 LOAD

    --------------------------------------------------

    11 6 2 6.1 FLATTEN

    --------------------------------------------------

    12 7 1 7 RELOAD

    --------------------------------------------------

    13 7 1 1 APPROVAL

    --------------------------------------------------

    Help, please

    Hello

    This sounds like a job for the analytical LAST_VALUE function:

    SELECT col_pk

    LAST_VALUE (fins IGNORE NULLS)

    COURSES (ORDER BY col_pk) AS fins2

    LAST_VALUE (fo_fv IGNORE NULLS)

    COURSES (ORDER BY col_pk) AS fo_fv2

    jup_fv

    action

    OF the test

    ORDER BY col_pk

    ;

    Output:

    COL_PK FINS2 FO_FV2 JUP_FV ACTION

    ---------- ---------- ---------- ---------- ----------

    1 1 1 1 LOAD

    2 2 1 2 ROLL

    3 3 1 3 ROLL

    4 4 1 4 ROLL

    ROLL 5 5 1 5

    5.1 6 5 1 FLATTEN

    7 5 1 5.2 FLATTEN

    8 5 1 1 APPROVAL

    9 5 1 APPROVAL 1,001

    10 6 2 6 LOAD

    11 6 2 6.1 FLATTEN

    12 7 1 7 RELOAD

    13 7 1 1 APPROVAL

  • Need answers of the sub questions?

    What is the difference bw ESX3.5 and 4.0?

    What is the latest version of vmware now. ?

    Wat is drs and ha?

    difference bw drs and ha?

    ESX box is low how to help out you. ?

    How do you move SV in esx 3.0 and 3.5?

    What is the difference bw ESX3.5 and 4.0?

    VI vs vSphere 4.0 3.5

    What is the latest version of vmware now. ?

    4.1

    Wat is drs and ha?

    difference bw drs and ha?

    See on the VMware Site

    How do you move SV in esx 3.0 and 3.5?

    On 3.0 is not possible.

    3.5, you can do this using RCLI or with a 3rd party plugin.

    André

  • Rotate the crop proportions using LR3

    I know miss me something totally easy here... but nevertheless I can't understand it.  How to use hotkey harvest aspect change (x) without signaling my photos?

    I made sure I'm mode reframing.  When I hit the x button, it reports the photo to get rid.

    Thanks for your help!

    Don't have your caps lock and not typing shift - x.

    HAL

  • Need help with the horizontal navigation using &lt; ul &gt;

    Although I normally use tables, I read that it is better to use < ul > and < li > my site horizontal navigation bar.

    I have problems with spacing, I want each item in the navigation bar to fit in one area of 166 width.

    Here is my CSS:

    {#ul.navbar}
    list-style-type: none;
    make-weight: bold;
    background-image: url (.. / images/166bar.gif);
    margin: 0;
    padding: 0;
    Width: 100%;
    }
    #ul.navbar li {}
    margin: 0px 20px 10px 20px;
    list-style: none;
    }
    #ul.navbar a {}
    text-decoration: none;
    }

    How can ensure me that each element of the horizontal navigation bar is in the center of the box? Can any recommend a good tutorial or an example?

    http://ALT-Web.com/demos/CSS-menus.shtml

    Change

    text-align: left

    TO

    text-align: center

    I want each item in the navigation bar to fit in one area of 166 width.

    In this case, you must use tables, images, or the vertical list menu.

    http://CSS.maxdesign.com.au/Listamatic/

    Nancy O.
    ALT-Web Design & Publishing
    Web | Graphics | Print | Media specialists
    www.Alt-Web.com/
    www.Twitter.com/ALTWEB

  • Adding link in the sub-tab using personlization

    I want to add the new link to the Page OA (subtabLayout region) using customization.

    I activated customizing page OA to help 'Customize the self-service definition' to 'yes '.

    But create a button element is disabled.

    Could someone tell me how to activate the button to create a new item.

    Thank you

    Hello

    When you click on the link of customization on the upper right corner of the page, it will open the personalization page.
    There will be two radio buttons under the section - Structure of customization

    "Simple view" and "full view."

    Before any customization, select the option of full view,

    Thank you
    Anoop

  • I need to uninstall the toolbar "many" - used Add/Remove in Control Panel, but did not firefox.

    I have installed a freeware no net program, said to alot toolbar, but it installed in all cases. I then went to the Add/Remove programs in the contral Panel, says delete, then he said is was uninstalled, but it is still in the firefox and internet explore BOTH. I love Firefox, but want the toolbar out alot. Help, please

Maybe you are looking for

  • HP mini 1000 computer: unknown Bios password

    A friend of mine gave me his netbook she had sitting in a box for over a year because she didn't know what was the password of the bios. I have the box he is come with, when it was brand new and all. I can't in the real bios or operating system becau

  • Mobile access point does not

    Well, I'll do that, nice and simple. Since the upgrade to the marshmallow on my Moto X pure on Verizon, I was not able to use my Mobile Hotspot. When I allow it, it reads just "Turning hot spot..." "it turns on but it never broadcasts the network nam

  • HP Pavilion Notebook 15-p219nt: computer laptop HP Pavilion 15-p219nt Win7 driver Touchpad not supported

    Hello I have a HP Pavilion Notebook 15-p219nt which has been reinstalled with Windows 7 (it came with 8.1) I can't find the Driver for the Touchpad for Win7 OS. Is it true that it does not support Win7? Thank you Anders

  • No download, no printer.

    My Inspiron 530 s works well but I can not download anything from the internet and the printer does not appear in the computer.    This problem started now, before everything was Ok. Can someone help me please, thank you.

  • 2408W problem to calibrate and with RGB in Photoshop

    Hello I check the Forum, but I have seen no response to my problem so I try it myself! I just bought a DELL Monitor to match with my DELL E196FP monitor strictly 2408W and my personal computer. I see a lot of difference between the qualities of both