Show data concatenated with another column labels

Dear all,

Want to show the data label concatenated with the value axis of legend or any other

http://obiee11ge.blogspot.com/2010/07/show-data-labels-concatenated.html

Concerning

Mustafa

Hello Mustafa,

Maybe you can start with this: http://obiee101.blogspot.com/2008/01/obiee-xy-and-data-in-mouse-over-label.html

concerning

John
http://obiee101.blogspot.com

Tags: Business Intelligence

Similar Questions

  • I need an html link tag in answers + concatenate with another column, so that the link may open the site with the countries

    Please share me your ideas for this problem

    in the responses, I need to add a link to HTML and parallel to concatenate it with another column

    example of think this link as https:\\google.com + another column (column for the google link concatenation)

    https:\\google.com + column country so that it can turn directly to page-> https:\\google.com\India

    so that helps me to access a particular site of my organization and opening of a given page

    Hi 3051369,

    Glad it worked.

    Could you please mark this question as answered?

    Thank you

    JeromeFr

  • update of column with another column with in the same table

    Hello
    We are using oracle 10g,
    I have a table with two columns i a s number one other data type is varchar2, varchar2 column contains
    numAriques and data type character I want to move only numAriques to the numeric data type field data, please kindly give answer

    Thanks and greetings
    tmadugula

    You are not providing any version of the database, sample data or table desc, but anyway:

    http://asktom.Oracle.com/pls/asktom/f?p=100:11:0:P11_QUESTION_ID:3083286970877 #49518312679214

    Something like:

    create or replace function is_num
    (p_str in varchar2)
    return number
    as
    begin
      return to_number(p_str);
    exception
      when others then return null;
    end;
    

    Which translates into:

    MHO%xe> select * from bla;
    
    MY_VA  MY_NUMBER
    ----- ----------
    AAAAA
    BBBBB
    11111
    22222
    CCCCC
    33333
    
    6 rijen zijn geselecteerd.
    
    Verstreken: 00:00:01.32
    MHO%xe> desc bla
     Naam                                      Null?    Type
     ----------------------------------------- -------- ----------------------------
     MY_VARCHAR                                         VARCHAR2(5)
     MY_NUMBER                                          NUMBER(5)
    
    MHO%xe> select * from bla where is_num(my_varchar) is not null;
    
    MY_VA  MY_NUMBER
    ----- ----------
    11111
    22222
    33333
    
    Verstreken: 00:00:01.73
    MHO%xe> update bla
      2  set my_number  = is_num(my_varchar)
      3  where is_num(my_varchar) is not null;
    
    3 rijen zijn bijgewerkt.
    
    Verstreken: 00:00:00.51
    MHO%xe> select * from bla;
    
    MY_VA  MY_NUMBER
    ----- ----------
    AAAAA
    BBBBB
    11111      11111
    22222      22222
    CCCCC
    33333      33333
    
    6 rijen zijn geselecteerd.
    
  • How to write the xml content of a file (Blob data Type) with other columns in file system

    Team,
    We are currently working on oracle 11 g. Suppose that we consider the SCOTT. EMP table for our creation of the table.
    All existing columns of SCOTT along. EMP table allows to assume that this table has an additional column name emp_xml, which is of TYpe of BLOB data and it holds xml data.
    the size of the data blob for each record in this col is greater than 32 KB (normally about 1 GB), now I want to write the contents of this column along
    with enmae, empno, hiredate into an external file. Assume that if we are only to the BLOB column that is emp_xml then the code below works

    Start

    for c in (select emp_xml from your_table)

    loop

    dbms_xslprocessor.clob2file (emp_xml.getclobval (), 'YOUR_LOCATION', 'YOUR_DYNAMIC_FILENAME')
    end loop;
    end;

    but I want empno, enmae, hiredate with blob emp_xml written in the external file. Any assistance in this case welcome.

    Concerning

    max_linesize

    Maximum number of characters for each line, including the newline character,
    for this file (minimum 1, maximum value 32767). If not specified, Oracle
    provides a default value of 1024.

    Defines how much you can read or write to a single call. I have to loop through the clob object and I write a pieces of 1024. So there is no limit to how much she can write. Just test it, IT will WORK!

  • Is there a way to only show the pages with a color label?

    I'm working on a document and I have several pages with colorful labels (gold, blue)

    I ask if there is a way not to show my pages gold for example, so I have an overview of these pages?

    Thank you

    There is no ability to filter these pages.

  • Input data match with two columns in a table

    Hello

    I want to find records where the input data (> 100 records) are adapted to the two columns of the table

    See below
    with t as
    (select 1 as id, 101 as num 'ram' that pat from dual
    Union
    Select 2 102, 'tom' from dual
    Union
    Select 1 103, 'tom1' from dual
    Union
    Select 2 101, 'tom2' from dual
    Union
    Select 2 104, 'tom3' from dual
    Union
    Select 1 105, 'tom1' from dual
    Union
    Select 2 105, 'tom1' from dual

    )
    Select * from t

    I want to find records from the 't' table where (id, num) will be (1 101, 2 102, 1, 105)

    Output must be

    ID num
    1 101
    2 102
    1 105
    select *
    from t
    where  (id, num) in (
              (1,101),
              (2,102),
              (1,105)
                 );
    

    Or store the input in a temporary table values and use IN

    select *
    from t
    where  (id, num) in (
              select col1,col2
                                    from your_temp_table
                 );
    

    Published by: JAC on 20 may 2013 14:55

  • How to check multiple values with another column?

    Hi all

    create table xxc_abc (col1 , dept_id number number);

    create the table xxc_bbb (col2 number,sa_dept_id number);

    insert into xxc_abc values (1,10)

    insert into xxc_abc values (2,11)

    insert into xxc_abc values (3,12)

    insert into xxc_bbb values (20.10)

    insert into xxc_bbb values (20,11)

    insert into xxc_bbb values (20,12)

    SELCT

    xxc_abc a.,

    xxc_bbb b

    where a.dept_id = b.sa_dept_id

    Expected results

    a.Col1 b.col2

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

    1 20

    2 20

    3 20

    I need to get several values a.col1 with the same value of the b.col2 column

    a.Col1 b.col2

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

    1 20

    2 20

    3 20

    Thank you

    Post edited by: Rajesh123 added Test cases in the main Thread

    Select the number you want to


    with

    xxc_abc as

    (select 1 col1, 10 dept_id in union double all the)

    Select 2,11 Union double all the

    Select double 3.12

    ),

    xxc_bbb as

    (select col2 20, 10 sa_dept_id union double all the)

    Select 20,11 Union double all the

    Select 20,12 double

    )

    Select col1, col2, cnt_all, cnt_not_null, cnt_unique

    from (select a.col1, b.col2,

    Count (*) on cnt_all (b.col2 partition).

    Count (a.Col1) on cnt_not_null (b.col2 partition),

    Count (distinct a.col1) on cnt_unique (b.col2 score)

    xxc_abc a.,

    xxc_bbb b

    where a.dept_id = b.sa_dept_id

    )

    where least (cnt_all, cnt_not_null, cnt_unique) > 1

    order by col1

    COL1 COL2 CNT_ALL CNT_NOT_NULL CNT_UNIQUE
    1 20 3 3 3
    2 20 3 3 3
    3 20 3 3 3

    Concerning

    Etbin

  • Search for a similar string in the 2D array and displays the result with another column

    Hello

    One who can help, I have a chart 2D of txt file that have as many lines and 5 columns and I want to do a search and display the other results of the column.

    For example.

    Column 0                      1                           2                                  3                           4

    12345 qwer asdf 12qwe tjhrtyert

    werr 23568 wef fgertge fsefff

    If I manage to find 12345 and I want to display 12qwe, what should I do in labview? Help, please!

  • Is it possible to add a link to a column based on a data variable in another column?

    For example, colonne_1 is A, B, C. I would like to add a link to column_2 but only if colonne_1 = has in fact no connection. Is this possible?

    Hello

    Yes, you can, but for this you generate links in your query itself

    select COL2
    ,COL3
    ....
    ....
    , case
          when COL1 = 'A' then
            ''||COL1||''
          else
            COL1
          end as "col_heading"
    from table_name
    

    Kind regards

    Jitendra

  • How do rotate on a date and see the sum of the value of another column

    Hello

    I searched through the forum and cannot find a query similar to my question feels so post this new thread.

    First of all, it is probably useful indicating that I am using Oracle 10 g.

    I have a table that is used to store the details of the booking (essentially a booking system) and I would use this data to display the details of the customers stay on one line.

    The table has the following columns:
    BOOKING_ID
    CUSTOMER_ID
    DATE_OF_ARRIVAL
    NUMBER_OF_NIGHTS
    NUMBER_OF_PEOPLE
    Some example records could be:

    BOOKING_ID    CUSTOMER_ID     DATE_OF_ARRIVAL    NUMBER_OF_NIGHTS   NUMBER_OF_PEOPLE
    --------------------------------------------------------------------------------------------
    1                    201      13-JAN-2010        5                   1
    2                    202      13-JAN-2010        3                   2  
    3                    202      13-JAN-2010        4                   1
    4                    203      15-JAN-2010        2                   3
    On this basis I would like to display the output so that I can show a sum of the NUMBER_OF_PEOPLE reserved to per customer per day, as such:
    CUSTOMER_ID     13-JAN   14-JAN   15-JAN   16-JAN   17-JAN   18-JAN   19-JAN 
    -----------------------------------------------------------------------------------------
    201                   1       1        1        1        1        0        0
    202                   3       3        3        1        0        0        0
    203                   0       0        3        3        0        0        0
    I watched analytical functions in the documentation and several books of Oracle that I have, but have so far struggled to find how to make the performance desired. Even using the excellent response to the previous post on the forum, I got Re: how to count the occurrence of a date in a range I was not able to get a feasible request.

    Any help or advice would be much appreciated.

    Kind regards
    Stu

    Published by: macmanxie on January 10, 2011 21:16

    Hello

    macmanxie wrote:
    ... The suggested approach goes only to return a number if the DATE_OF_ARRIVAL corresponds to the date in the CASE statement, however I have the added complexity of wanting to show a count of all the days that the customer is booked, for, by making use of the NUMBER_OF_NIGHTS. I tried to use some of the examples provided on morganslibrary.org, for example:

    sum( CASE WHEN  TRUNC (arrival_date) between '01/13/2011' and TRUNC (arrival_date+no_of_nights) THEN nvl(no_of_people,0) ELSE 0 END) AS jan_13
    

    but this does not produce the desired result.

    You check if arrival_date is between January 13 and arrival_date + no_of_nights (as if the arrival date could all be posterior to the arrival_date + no_of_nights).
    Are not really interested in whether or not January 13 ib between arrival_date and arrival_date + no_of_nights?

    NVL ( SUM ( CASE
                    WHEN  TO_DATE ( '01/13/2011'
                           , 'MM/DD/YYYY'
                         )          BETWEEN  TRUNC (arrival_date)
                             AND       TRUNC (arrival_date) + no_of_nights
                 THEN  no_of_people
             END
           )
        , 0
        )          AS jan_13
    

    Always format your code. It is important to format your code if you are the only who who will ever read but it is even more important if you are posting on a forum like this and ask other people to read.
    Not to compare the DATEs in the strings; explicitly use a conversion function, like TO_DATE, above, where necessary.
    Both
    SUM (NVL (x, 0)) and
    NVL (SUM (x), 0) get the same results, but the latter is more effective. If you have 1000 lines, the first way is calling NVL 1000 times, but the second way is calling only once.

    If your previous thread
    Re: How to count the occurrence of a date in a range
    Gets you the right data, but it has one row for each distinct combination of customer_id and date, then you can switch it to a form that contains a line by the customer and another column for each date.

    If you need help, post CREATE TABLE and INSERT statements for some examples of data and outcomes from these data. The post you are trying better to a request, including a subquery that gets no cross-the raw table dynamic results.
    There will be a fixed number of columns in the output swing? If this is not the case, how do you deal with that? Which of these options in the thread I posted above)
    Re: County report and the sum of the number of rows by multiple columns
    ) is best for your needs? Than others is acceptable?

  • I have a column with two values, separated by a space, in each line. How to create 2 new columns with the first value in a column, and the second value in another column?

    I have a column with two values, separated by a space, in each line. How do I create 2 new columns with the first value in one column and the second value in another column?

    Add two new columns after than the original with space separated values column.

    Select cell B1 and type (or copy and paste it here) the formula:

    = IF (Len (a1) > 0, LEFT (A1, FIND ("", A1) −1), ' ')

    shortcut for this is:

    B1 = if (Len (a1) > 0, LEFT (A1, FIND ("", A1) −1), ' ')

    C1 = if (Len (a1) > 0, Member SUBSTITUTE (A1, B1 & "", ""), "")

    or

    the formula of the C1 could also be:

    = IF (Len (a1) > 0, RIGHT (A1, LEN (A1) −FIND ("", A1)), "")

    Select cells B1 and C1, copy

    Select cells B1 at the end of the C column, paste

  • Formula that multiplies the value in each cell in a column with another cell

    Hello

    is it possible to do a simple way?

    I need a formula that will multiply each cell in a column, one by one, with another cell. And then a way to fill the 32 raws and 12 columns.

    That's how I explain what I need simplified.

    G1 = ((chaque cellule de B1:B32, un par un) * E1) + (( B1:B32each cell, one by one) * E2) +...

    and then that again and again for coulumn 12.

    G1 to G12.

    G2 would be = ((chaque cellule de C1:C32, un par un) * E1) + ((each cell c1:C32, one by one) * E2) +... and so on...

    It would take weeks to do this manually.

    It is, for me, very complicated and my brain can not understand.

    very grateful for the help with this one.

    Thank you

    /Joakim

    Hello

    I can't imagine the structure of your table according to your descriptions, but formulas would be very simple if you calculate:

    G1 = (B1*E1 + B2*E1 + ... + B32*E1) + (B1*E2 + B2*E2 + ... + B32*E2) + ...
       = (B1 + B2 + ... + B32) * (E1 + E2 + ...)
    

    For example,.

    Table 1 (excerpt)
    
    A1 
    A2 
    A3 
    A4 
       
    B1  =RANDBETWEEN(0,5)
    B2  =RANDBETWEEN(0,5)
    B3  =RANDBETWEEN(0,5)
    B4  =RANDBETWEEN(0,5)
       
    C1  =RANDBETWEEN(0,5)
    C2  =RANDBETWEEN(0,5)
    C3  =RANDBETWEEN(0,5)
    C4  =RANDBETWEEN(0,5)
       
    D1 
    D2 
    D3 
    D4 
       
    E1  =RANDBETWEEN(0,5)
    E2  =RANDBETWEEN(0,5)
    E3  =RANDBETWEEN(0,5)
    E4  =RANDBETWEEN(0,5)
       
    F1 
    F2 
    F3 
    F4 
       
    G1  =SUM(B1:B32)*SUM(E)
    G2  =SUM(C1:C32)*SUM(E)
    G3 
    G4 
    

    * Table is designed with numbers v2.

    Kind regards

    H

  • script process of sorting (with several column data) and average (some other column data)

    Hello

    I had a lot of help from my log of the bus data, previously.

    My interest now is to sort them according to certain values of the column and then get an average result of them.

    Given that the tiara doesn't seem to support the triage function after loading data, it seems to be a difficult issue for me;

    It would be useful that I can get all related index/approach/function/Council to do this kind of script.

    I've attached a file excel for example.

    In the first "raw" sheet, there are rows of raw data with column names of "year, month, day, ID, ID2, point, condition.

    Actual data had many more columns, but I simplified it for convenience.

    What I try to do is, with the entry (from DialogBox or simply a script as a variable; I can do this) 'year' and 'months' (e.g.: 2015, 6).

    to get the resulting data sheet 'expected results '.

    The result is sorted by value 'ID' and 'condition '. 'Condition' is 0 or 1, then the average of the values of 'point' for each ID and the condition is obtained.

    Group for the 'condition' of 2 will be the average of the results of the 'condition' 0 and 1 (collection of data). (So there are always three groups: for 'condition', 0, 1, and 2.)

    Currently, 'ID' includes 12345 and 54321, but there may be more values, too.

    "Num" column is the number of files RAW allows to get the average for the corresponding 'year-month-ID-condition'.

    Is there an effective approach or the function that you recommend?

    I think that you may need more details for example data, so please do not hesitate to ask me.

    Thanks in advance.

    Inyoung

    The interactive part to modify data in DIAdem is collected in the 'ANALYSIS' left aon tab.

    The second entry, 'Functions of channel' contains 'Values of Channel sorting' method.

    To automate this process, it is possible to use the macro recorder in the tge script module.

  • By mistake I replaced a photo with another file. The miniature shows always the original photo - is anyway I can get the original of this thumbnail image?

    By mistake I replaced a photo with another file.  The thumbnail still shows the original image.  Is there anyway I can retrieve the original of this thumbnail image?

    When a file overwrites (replaces) another... the original is gone.

    This happens usually when the replacement file has the same file name
    as a file exists and that you answer Yes when the dialog box asks you if you
    replace file a file b.

    What are the exact steps you used when the file has been replaced and
    This software has been involved?

  • How to share data in the tables ' User_ * ' with another schema

    I want to share the data in the table WHERE USER_SEGMENTS with another schema. If I create a view and grant select on the view, when the other schema queries the view data are identical to themselves querying the SYS.user_segments table directly.
    create view sys_user_segments as select * from sys.user_segments;
    grant select on sys_user_segments to A;
    My guess is that the SYS.user_segments table is a view based on the current user.

    Is there a way to share such data without creating a copy of the table?

    Oracle: 10g

    Thank you

    If the ADMINISTRATOR is concerned about B access to DBA_SEGMENTS (or by creating DBA_SEGMENTS views that belongs to a user who has access on top and then grant access to this view of B), it seems pretty crazy allow that kind of database connection.

    If you create a database link belonged to B that connects to A, B is, in substance, given any privilege that has exercises. But it is done in a very, very dark which will no doubt be neglected in the future when someone gets a check. He'll be sitting here to wait that someone (accidentally or intentionally) Decides to exploit the security hole and do something that is causing a problem (by removing all data from a table, grabbing all the sensitive data in a table, etc.). Risks of this almost certainly far, far* far * outweigh the risks of even leaving B to obtain direct access to DBA_SEGMENTS.

    Justin

Maybe you are looking for

  • Microsoft Explorer

    When I click on a program on my desktop computer, microsoft explore aways appears

  • eBGP Mesh - failure of redundancy

    Hi all I have the following problem, I hope that people can help me with. I built a laboratory as a proof of concept. The topology is attached. > There are 4 sites, each site is connected via two separate networks of VPLS. The objective is that as lo

  • How to copy a directory with all permissions and intact junctions?

    Is it possible to copy a directory with junctions in there and have it copy as junctions, not the contents of the junction? I'll try to make a long story short, but I just spent a few hours cleaning after robocopy and junctions hidden Windows 7.  I h

  • Purchase of blackBerry Smartphones not found

    Hello.  I'm sorry if this is the wrong forum... Please move if necessary. I looked through some other posts about this error message, but I can't always have to get it resolved. I use AT & T.  I have a Curve 8520.  V5.0.0.822 While trying to download

  • Is there a possibility of fixing resounding noise?

    For a project, I recorded myself. However, although the sound looks much better after the gear box, it always annoys me that the audio seems still a little offshore. When I was recording the room was empty and I did put something / a small carton on