Display the columns or headers folder

Hello

Is pls. possible to show only the line with the results?  I don't want the columns or headers folder.

TXS for any help.

Antonio

  • Create a table view
  • Go to the layout editor and click Properties Column and measure. Uncheck 'display title '.
  • Go to the properties of the Table view. Specify a value of 1 in the "lines per Page.

Select this option if correct/useful.

Tags: Business Intelligence

Similar Questions

  • How to not display the column heading in the table view?

    I don't want to display the column header in the table display, how I can make?

    If you use JavaFX 8, you can use the following text in an external style sheet:

    .table-view .column-header-background {
      -fx-pref-height : 0 ;
    }
    

    If you use JavaFX 2.2, the - fx-pref-height attribute is not available in css, so I think that you must resort to a search:

    final Region tableHeader = (Region)table.lookup(".column-header-background");
        tableHeader.setPrefHeight(0);
    

    As always, I am obliged to point out that I don't really like the research. Sometimes, they seem to be the only way, however.

  • Display the column names in a table

    Stupid question time...

    How to display the names of columns in a table on the front panel? I thought by right clicking on the table would give me a selection to view.

    Hi Eric,.

    Right-click the table and select "Show column headers" visible elements "->":

  • Display the column name of the column more recently updated

    I wonder if it is possible to display the name of the column in the column most recently updated in a table.

    Example:

    Emp table

    Name

    Height

    Weight

    Age

    Update_Date

    Update_Column

    Original record (03/20/14)

    Name size weight Age Update_date Update_Column

    John                                                 03/20/14          Name

    Then someone comes and update the height on 22/03/14:

    Name size weight Age Update_date Update_Column

    John 5'9 03/22/14 height

    And the Update_date and the Update_column would change again if someone came and put a value for the age. And so on.

    Is this possible?

    Also, if the above is possible, would it be possible to display the name of extreme right column if a user updated several columns at the same time?

    Example:

    User updates the sub-folder:

    Name size weight Age Update_date Update_Column

    John 5'9 03/22/14 height

    And adds weight and age at the same time on 24-03-14:

    Name size weight Age Update_date Update_Column

    John 5'9 150 31 03/24 / 14

    The Update_Column would display age because it is the furthest to the right. (Think by reading from left to right, the column that has been updated if the extreme right)

    So to sum things, I need to be able to display Updated_date (which will be the date of the day when the record is the last updated) and Updated_Col (which is the column name of the column was last updated, and if multiple columns are updated then display that value has been updated last in)

    I hope that the examples help to clarify things.

    Thank you

    Steven

    I think I found a solution.

    delimiter //
    create table a (
      id int (10) unsigned auto_increment,
      a int(10),
      b int(10),
      update_date datetime NULL,
      update_column varchar(16) NULL,
      primary key (id)
    )//

    create trigger bu_a before update on a for each row begin
      set NEW.update_date = NOW();
      set NEW.update_column = NULL;
      -- you need to start with the rightmost column if you want
      -- that matched with the highest priority
      if OLD.b != NEW.b then
       set NEW.update_column = "b";
      elseif OLD.a != NEW.a then
       set NEW.update_column = "a";
      end if;
    end //

    TEST

    insert into a (id,a,b) values (1,1,1), (2,1,1), (3,1,1), (4,1,1)[
    update a set b = 2 where id = 2;
    update a set a = 2 where id = 3;
    update a set a = 2 where id = 4;
    update a set b = 2 where id = 4;
    select * from a;

    DISPLAY

    ID  A   B   UPDATE_DATE                    UPDATE_COLUMN
    1   1   1   (null)                          (null)
    2   1   2   March, 24 2014 23:22:33+0000      b
    3   2   1   March, 24 2014 23:22:33+0000      a
    4   2   2   March, 24 2014 23:22:33+0000      b

  • Why only a Yahoo Group displays the column group name?

    I belong to several Yahoo groups and get individual emails from 3 of them. They all worked well until May 8, 2014, when the Freex news group began to display only "[email protected]" in the column. It's always like that. I can't be sure it's a Yahoo problem, like the other groups I am a member of display the senders display name and e-mail address.
    The attachment is a snip of the CT showing how it was and how it has changed.
    Please tell us how to get back to the display names and addresses.

    locate this address in your address book, and then delete.

  • Display the column in the table, but not in the IR

    Hi guys,.

    [apex Oracle 11 g 4.2]

    Is there a way to display a column in a graph that is generated by the IR and is not in the table-IR?

    I know I can chosse columns in the IR and choose to not display this column. It's going to work.

    But if I put the column 'hidden' in the attributes of IR Section I can't create a chart out of it.

    So I want to create a graph of the same data that the (default) column is hidden.

    THX in advance Thorsten

    There is no way to do it.

    Denes Kubicek
    -------------------------------------------------------------------
    http://deneskubicek.blogspot.com/
    http://www.Apress.com/9781430235125
    http://Apex.Oracle.com/pls/Apex/f?p=31517:1
    http://www.Amazon.de/Oracle-Apex-XE-Praxis/DP/3826655494
    -------------------------------------------------------------------

  • How to display the columns in the wise line in pl sql

    I have to display some values of constant wise online using the select statement. For example, after query both display constant columnwise...

    Select 83: 42 double;

    83 42

    I want to display the rowwise... IE

    Constant
    83
    42

    I can create temporary table and add them then ask, but there should be a way I can use double to show the values line wise. something like

    Select a double where an in (83, 42)

    Appreciate your help.

    Hello

    Here's one way:

    SELECT     column_value    AS cnstnt
    FROM     TABLE (sys.odcinumberlist (83, 42))
    ;
    

    CONSTANT is a keyword from Oracle is not a very good name for your own column.

  • Display the columns on index

    I have a list of indexes that are not used.
    I want to do is make a query that shows that these indices are on the columns.

    The results would be so: INDEX_NAME TABLE_NAME COLUMN_NAME

    I appreciate any help on this.
    SELECT TABLE_NAME,COLUMN_NAME,COLUMN_POSITION FROM DBA_IND_COLUMNS WHERE INDEX_NAME='INDEX_NAME';
    
  • Cannot display the column format in SQLPLUS.

    Hi all

    Why my sqlplus just displays # when I run sql > column group # format a20;

    SQL > column group # format a20;
    SQL > select group # log v$.

    GROUP #.
    ----------
    ##########
    ##########
    ##########
    ##########

    Help, please!
    Thank you!

    Welcome to the forums!

    Try:

    COLUMN group# FORMAT 9999
    

    You try to provide a column for a VARCHAR2 format, but the data type is NUMBER.

  • display the columns as rows in the table of non-unique key

    Hi OTN/users, I hope you can help me

    Given a table:

    create table t (varchar2 (30), int b, int, date c);

    with these data in:

    insert into values t (a1, 40, to_date (December 1, 2012 '));
    insert into values t (a1, 50, to_date (December 1, 2012 '));
    insert into values t (a1, 60, to_date (December 1, 2012 '));
    insert into values t (b1, 10, to_date (December 1, 2012 '));
    insert into values t (b1, 20, to_date (December 1, 2012 '));
    insert into values t (b1, 30, to_date (December 1, 2012 '));
    insert into values t (c1, 60, to_date (December 1, 2012 '));
    insert into values t (c1, 70, to_date (December 1, 2012 '));
    insert into values t (c1, 80, to_date (December 1, 2012 '));

    -I want the output columns for each of the 'a' as a single line ex:

    A1 40 50 60 1 December 2012
    B1 10 20 30 December 1, 2012
    ...

    I was almost right, but "a" neck repeats 4 times for each line of output:

    A1 40
    50 A1
    A1 60
    A1 1 December 2012

    -I want to exit repeat delete the first column "a" but see the rest in a straight line.

    I tried various things (Pivot, Rollup, etc.), but the fact that I'm in overlay on a table with no unique lines complicated things maybe.
    Any help would be appreciated

    Hi Kim,

    Kim Berg Hansen wrote:
    Even [url http://asktom.oracle.com/pls/apex/f?p=100:11:0:P11_QUESTION_ID:5658416800346527104] Tom agrees with Nicosa ;-)

    Very honored that Tom has decided to use my solution. ;-) ;-) ;-)
    But I guess that means that the OP may not like here to mark the thread as an answer.

  • Display the columns as lines

    Hello

    I have these sample data:

    ID name salary Dept Manager Commission
    1Roger3000TechBobJanuary-1000
    1Roger3000TechBobFeb-2000
    1Roger3000TechBobMar-3000

    I need the output voltage:

    ID name salary Dept Manager Commission
    1Roger3000TechBobJanuary-1000; Feb-2000; Mar-3000

    Can you please help?

    Thanks in advance

    SELECT id, name, salary, dept, Manager, LISTAGG (commission, ';') Within the Commission (ORDER BY id) GROUP table

    GROUP BY id, name, salary, dept, Manager;

  • How to display the column single line with function of nested groups

    SQL > select deptno, Max (sum (sal)) SalSum
    2 of PEM
    3 Group of deptno;
    Select deptno, Max (sum (sal)) SalSum
    *
    ERROR on line 1:
    ORA-00937: not a single group group function

    Can you please help me to get the Max (sum (sal)) with Deptno...

    Or:

    select max(deptno) KEEP (DENSE_RANK LAST ORDER BY SalSum) deptno,
    max(SalSum) from  (
      select deptno,sum(sal) SalSum
      from emp
      group by deptno
    );
    
  • Change the template to display the columns as a SQL report

    Hi all

    Really urgent. We have a process and we use a pl/sql block to get the query. The page layout is not pleasant so they want to watch me model and change it if the result looks like a sql query.

    Thank you.

    Hello

    OK - I just wanted to check that I was getting a bit confused!

    Change the header of the region setting to:

    <style type="text/css">
    #myreport table {border: 1px solid #CCCC99; border-collapse:collapse; empty-cells:show;}
    #myreport th {background-color:#CCCC99; border-color:#FFFFFF; border-style:solid solid none; border-width:1px 1px medium; padding:2px 8px; white-space:nowrap; border-collapse:collapse; color:#336699;}
    #myreport td {background-color:#F7F7E7; border-color:#CCCC99; border-style:none solid solid none; border-width:medium 1px 1px medium; border-top:none; padding:2px 8px; white-space:nowrap; border-collapse:collapse;}
    </style>
    <div id="myreport">
    

    Andy

  • display the data in the column as column name

    in this column of query names are hard coded, I need to display the column name dynamically (based on sysdate). Please help me on this?

    with test_emp as

    (select 100 empno, 1st February 2014 ' hiredate, SAL union 1000 double all the)

    Select 200 empno, February 3, 2014 ", 2000 union SAL double all the"

    Select empno 300, 4 February 2014 ", 3000 union SAL double all the"

    Select 400 empno, 5 February 2014 ", 4000 SAL double

    )

    -Select * from test_emp

    SELECT EmpNo,

    Sum (decode (HireDate, trunc (sysdate), SAL, 0)) as '4 February 2014. "

    Sum (decode (HireDate, SAL, trunc(sysdate-1), 0)) as "February 3, 2014.

    Sum (decode (HireDate, trunc (sysdate)-2, SAL, 0)) as 'February 2, 2014.

    Sum (decode (HireDate, trunc (sysdate)-3, SAL, 0)) as 'February 1st, 2014. "

    Sum (decode (HireDate, trunc (sysdate)-4, SAL, 0)) as 'January 31, 2014.

    OF test_emp

    Group by empno stopped by 1

    expected results:

    EMPNO February 4, 2014 3 February 2014 2 February 2014 February 1, 2014 January 31, 2014

    100                     0                    0                       0                   1000               0

    200                     0                   2000                    0                   0                   0

    300                 3000                    0                       0                   0                   0

    400                     0                       0                       0                 0                    0

    Hello..

    We cannot manage dynamic crossover into a sql. So what I did just create a function with refcursor and get results. It will work for your case only. Try the code below and let me know in case of any problems

    FUNCTION to CREATE or REPLACE dyn_row_colum

    RETURN SYS_REFCURSOR

    AS

    v_sqlstr VARCHAR2 (32767): = ' SELECT empno, SUM (DECODE (hiredate,'|)) '''|| Trunc (sysdate) | " ((' |', sal, 0))' | ' '||'"'|| TRUNC (SYSDATE) |' » ' || «, » ;

    v_rfcur SYS_REFCURSOR;

    BEGIN

    FOR j_rec IN (SELECT col_val FROM test_emp TRUNC(SYSDATE-ROWNUM))

    LOOP

    v_sqlstr: = v_sqlstr | » '||' SUM (DECODE (hiredate,'|)) '''|| j_rec.col_val | " ((' |', sal, 0))' | ' '||'"'|| j_rec.col_val |'"' | ',';"

    END LOOP;

    v_sqlstr: = RTRIM (v_sqlstr, ','). » '||' OF test_emp GROUP BY empno';

    V_rfcur OPEN FOR v_sqlstr;

    RETURN v_rfcur;

    EXCEPTION

    WHILE OTHERS THEN

    LIFT;

    END dyn_row_colum;

    VARIABLE v_cur REFCURSOR

    EXEC: v_cur: = dyn_row_colum;

    PRINT v_cur;

    SELECT dyn_row_colum FROM dual;

    Unit tests: -.

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

    Scott@ORCL > dyn_row_colum FUNCTION to CREATE or REPLACE

    2 SYS_REFCURSOR RETURN

    3 AS

    4 v_sqlstr VARCHAR2 (32767): = ' SELECT empno, SUM (DECODE (hiredate,'|)) '''|| Trunc (sysdate) | " ((' |', sal, 0))' | ' '||'"'|| TRUNC (SYSDATE) |' » ' || «, » ;

    5 v_rfcur SYS_REFCURSOR;

    6 BEGIN

    7 FOR j_rec IN (SELECT col_val FROM test_emp TRUNC(SYSDATE-ROWNUM))

    8 LOOP

    9 v_sqlstr: = v_sqlstr | » '||' SUM (DECODE (hiredate,'|)) '''|| j_rec.col_val | " ((' |', sal, 0))' | ' '||'"'|| j_rec.col_val |'"' | ',';"

    10 END OF LOOP;

    11 v_sqlstr: = RTRIM (v_sqlstr, ','). » '||' OF test_emp GROUP BY empno';

    12 v_rfcur OPEN FOR v_sqlstr;

    13 RETURN v_rfcur;

    14 EXCEPTION

    15 SO THAT OTHERS THEN

    16 RAISE;

    17 END dyn_row_colum;

    18.

    The function is created.

    Scott@ORCL > v_cur VARIABLE REFCURSOR

    Scott@ORCL > EXEC: v_cur: = dyn_row_colum;

    PL/SQL procedure successfully completed.

    Scott@ORCL > v_cur PRINT;

    EMPNO 5 FEBRUARY 14 FEBRUARY 4, 14 3 FEBRUARY 14 FEBRUARY 2 14 1 FEBRUARY 14

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

    100          0          0          0          0       1000

    400       4000          0          0          0          0

    300          0       3000          0          0          0

    200          0          0       2000          0          0

    Scott@ORCL > dyn_row_colum SELECT FROM dual;

    DYN_ROW_COLUM

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

    CURSOR STATEMENT: 1

    CURSOR STATEMENT: 1

    EMPNO 5 FEBRUARY 14 FEBRUARY 4, 14 3 FEBRUARY 14 FEBRUARY 2 14 1 FEBRUARY 14

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

    100          0          0          0          0       1000

    400       4000          0          0          0          0

    300          0       3000          0          0          0

    200          0          0       2000          0          0

  • Word document not on the window when I click on 'new', while displaying the file

    I display the contents of a folder. I want to create a new doc 'Word' in this folder. I right click on the folder on the left lower corner of the window, then click 'new '. It does not display "Word document" option. How can I add this in the option "new"?

    One of the simplest ways is to repair your installation of Word.  Perform the following steps:

    1. Go to control panel and select programs and features
    2. In the list, find Microsoft Office and choose 'Edit' and then 'fix '.

Maybe you are looking for

  • The likely causes of the spontaneous stop?

    I have the original SS Apple Watch 38mm, the day of the launch, running watch OS 2.2.1, which has worked perfectly. However, it stop during last night while I was wearing it during sleep. It has been almost completely reloaded. Forced a restart butto

  • NI USB-6501 digital output problem

    Hello I use DASYLab v.11 and I'm working on an interface with the NI USB-6501 where I'm putting a digital high on four ports. With the module "NOR-DAQmx - digital input", I managed to read the digital inputs of the ' NI USB-6501 ".» It's only the "NO

  • Why antivirus security alert saying is disabled when s W Ess says work and pc protection

    Win XP Pro - contradictory safety message.  Security alert icon saying antivirus is disabled when the icon of M s Ess said IT and protection.  Why is this and what can I do to stop what is happening. Thank you

  • MS offer the CD of Installation of free update

    HelloI have my instalation CD home very old XP that contains all service packs. I want to repair or reinstall XP home. Ms. give me a CD to update? My original CD is a real registered version

  • Samsung Tablet 4

    I just installed my new HP4500 printer successfully. Now, I'm trying to print from my Samsung tablet. I downloaded the plug HP thingie. When I print, I get very large print at the top of the paper and it does not accept instructions to change the ori