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';

Tags: Database

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.

  • 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 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 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.

  • 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

  • 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.

  • Order of the columns to index

    Hello

    When you create an index say on table emp as below:

    SQL & gt; / / desc emp

    EMPNO
    ENAME
    JOB
    MGR
    HIREDATE
    SAL
    COMM
    DEPTNO

    If you create an index on (EMPNO, DEPTNO) say - that is the same as creating an index on (DEPTNO, EMPNO)? I mean, it is of the order of the columns when the index is created? For example, when you run your select, in which article, you use the same order as in the creation of the index?
    Any comment is welcome.
    Thank you very much
    VIC

    you're welcome... but why POracle becomes all the point? ;)

  • 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.

  • Cannot display the page and index files

    Hello

    I am trying to build a cube using maxl script. Everything goes smoothly. the data is loaded and the calc script works well.

    But I'm not able to see the index and the page files in my app folder. I'm working on 11.1.1.2.

    In environmental assessment, access the database properties, storage tab. See where it saves files ind and pag.

  • Explorer displays the Page of Index differently?

    I manage a website created with Dreamweaver CS4 for Mac.  The Index page looks perfect on FF and Safari, however, there is a problem for users to explore.  When someone clicks on a menu with Explorer item, it minimizes this link.  It does so only with Explorer and ONLY on the home/Index page.  I thought it was a code problem.  Tried, but can't find the problem!  Any suggestions would be greatly appreciated.

    http://www.banners4churches.com/

    Index page

    http://www.banners4churches.com/current/index.php

    I guess that any decent browser will listen to what he is told to do as shown

    a:visited {
         color: #C00;
         font-weight: bold;
         font-size: 9px;
         text-decoration: none;
    }
    

    In the light of the foregoing, the browser is said to apply a font size to 9px for all links that have been visited.

    GRAMPS

  • 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
    );
    

Maybe you are looking for

  • Windows upates constantly saying this is the download - stays at 0%

    As shown update was previously download anything for 18 hours as if I'm going to update the window & updates it search forever

  • DateField, HorizontalFieldManager + ObjectChoiceField = error

    I am creating a page layout so that there a datefield and objectchoicefield in the horizontalfieldmanger even, and it throws me illegalarguementexception every time. Can someone help me? Here is the code example. HFM HorizontalFieldManager = new Hori

  • MVIEW log truncation

    Hi allI have a question about logs mview.While analyzing my AWR reports I found that most of the query at the top of the page are on my logs MView. How to optimize these queries?I intend to truncate the table $ MLog too, then after truncating tables

  • export and import.

    Hi, iam using oracle 10g rel 2,.I tried to export the schema scott with this commandleader = c:\hi.dmp exp scott/tigerand he succeeded, but I don't know if it has exported data as well or only structure (tables, constraints,...).and I can't know, bec

  • Import Windows WSUS ballots in VCM

    HelloI'm looking for an option to import Windows of WSUS patch bulletins to VCM. The reason is that so far, WSUS is used and I would try the VCM for VMs Windows patcher but instead of download Internet newsletters, I would use those on WSUS (that hav