name of the column under explain table

Hello

"Explained her plan for < SQL_STATEMENT >" and ran

Select plan_table_output in the table (dbms_xplan.display ()) later.

There is a 'vm_nwvm_1' object in the 'name' column and I have no idea where that objects come from.  I query the table user_objects and search for the name and I'm not. Before the I made order dbms_stat on the schema. My performance was just able and I do not see the object "vm_nwvm_1" under the regime of the explain command. I see it only after "dbms_stat".

Thank you

I think that it is an opinion that Oracle is built.  See views interns | Notebook of the Oracle

Tags: Database

Similar Questions

  • Find the name of the column in all tables

    How to find the name of the column in all tables in the database for any column to reveal the name of the person?


    We have over 1000 tables looking for.and in some places, the name column FNAME LNAME, First_NAME, DNAME

    For example we have Customer table, Table EMPLOYEE and the ORDER Table

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

    Customer table
    --------------------------------

    LNMAE

    EMPLOYEE table

    EMP_ID
    DEPT_NAME (we don't want this column as it is not a name column)
    Last_name (he must propose this column because it is named)

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

    CONTROL Panel

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

    ORDER_ID
    ORDER_NAME (we don't want this column as it is not a name column)
    Last_name (he must propose this column because it is named)

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

    Dept table

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

    Dept_ID
    DEPT_NAME (we don't want this column as it is not a name column)

    Please advise...

    Thank you.

    Hello

    What exactly do you do?

    If you want to display the tables containing these columns, you can query the view data dictionary USER_TAB_COLS (or ALL_TAB_COLS, or, if you have privileges, DBA_TAB_COLS).

    For example:

    SELECT table_name, column_name

    Of user_tab_cols

    WHERE nom_de_colonne IN ('DNAME', 'FNAME', 'FIRST_NAME', 'LAST_NAME', 'LNAME') - or else

    ORDER BY table_name, column_name

    ;

  • Problem in inserting records into a table (MS Access) where the name of the column against

    I have a table with the name of column say first #Name and when I insert a value in the table it gives an error and it does not let me insert some values which he... Is it possible to enter the value in this column by fleeing this hash. I have a constraint that I can not change the name of the column...

    If it was Oracle you would put quotes around the name of the column. Not sure if happens the same for MS Access, because I do not play with the toy databases.

    for example

    Insert into tablename ("First#Name") values ('Fred');
    
  • How to find a table, using the name of the column in the database schema

    Dear all,

    Please help me on

    using the name of the column, how to find a table name in the database schema.

    Thanks in advance

    Hello

    You can query the data dictionary views all_tab_columns and user_tab_columns.
    For example, to find the tables in the scott schema have called deptno columns:

    SELECT  table_name
    FROM    all_tab_columns
    WHERE   owner           = 'SCOTT'
    AND     column_name     = 'DEPTNO';
    

    Remember that anything inside quotes is case-sensitive.

    The all_tab_columns view has one row for each column in each table (or view) that you have the privileges to use.
    The user_tab_columns view is a subset of all_tab_columns, containing only your own tables (and views).

  • Query to see the name of the table and the name of the column...

    Hi Experts,

    I have an Oracle DB, I have more than 50 tables and 100,000 records. I want to get the name of the table of the record that contains "ITxtVarValue made reference to a non-existent text" text.

    Is there any simple query it to find the table name and the column name for this particular file reside?

    Help, please. Any help will be rewarded.

    Thank you
    G
  • 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

  • Correspondence of the columns from one table to another

    I have a database column that contains the name of a person. I have another table that has a column that contains the names separated by a comma.

    I want to match records where all records of two columns have a corresponding name. I tried this:

    < cfquery name = "MyQuery" datasource = "myds" >

    SELECT *.

    OF TBL_A

    WHERE TBL_A.customername IN (#DifferentQuery.ListOfNames #)

    < / cfquery >

    Everything that I try results in only get a recording. Basically, I want to get all records from a table where one of its columns contains the name of a column in another table.

    It's a many-to-many relationship. That is to say an editorial can be linked to many ads, and vice versa.  He is best represented with three tables. Such as:

    Table: [Editorial] column: [EditorialID (PK), EditorialText,...]

    Table: Columns of the [advertiser]: [AdvertiserID (PK), AdvertiserName]

    Table:   [Editorial_Advertisers] columns: [EditorialID, AdvertiserID]

    The name of the advertiser throw himself into a column...

    my client can decide which ads get related to which editorials

    The third table stores the relationship between ads and editorials.  So instead of storing a list of advertisers, you need to insert record for each EditorialID + AdvertiserID combination. You can then use joins to retrieve all the advertisements for EditorialID 123.

    SELECT  a.AdvertiserName
    FROM     Editorial_Advertiser ea INNER JOIN Advertiser a ON ea.AdvertiserID = a.AdvertiserID
    WHERE   ea.EditorialID = 123
    
  • Interrogate the columns of all tables

    Hello
    I called A, B, C... upto z. of these 26 paintings of paintings, 15 tables have the column common name "AAA". Now, I want to find the names of the tables in which there is a column name "AAA". for example, if this column name 'AAA' is present in the tables B, F, G,... Y(15 tables). The query should display all the table names. Here, in this example we donot know what table is the name of the column "AAA". We find the tables where is the name of the column "AAA"?

    Thanks in advance...

    Let me know if you have any confusion with my question.
    SQL> select * from user_tab_columns where column_name = 'AAA';
    
  • get the names of the columns dynamically

    Hi gurus,
    I have the list item filled with lots of names of a table schema.
    I did grid in oracle 10g and I want to fill in the grid with the data that should come at least four/more columns.
    I want to get the trigger list change when whenever any name a table is selected/changed.

    How can I get the names of the columns dynamically
    Please give me the step by step process
    for the filling of the grid...

    Hello

    If you want to get the details of the column, and then use the USER_TAB_COLUMNSview.

    SELECT COLUMN_NAME, DATA_TYPE FROM USER_TAB_COLUMNS WHERE TABLE_NAME = 
    

    Kind regards

    Manu.

  • followed by the name of the column that is changed

    Hello

    How can I track the following information on a table

    I have the name of table tab1, that's like that

    --------------------------
    col1 col2
    -------------------------
    1 2

    Now if I change the value of col1 by a trigger I can follow the value of change, but how can I track the name of the column

    say in the table tab2 I am tracking the results

    changed_col_name changed_val prev_val
    --------------------------------------------------------------

    now changed val and prevval can be followed by trigger, but in the column changed_col_name how can I follow the name of the column to which I changed?

    Thanks in advance

    It's a pain to dynamically manage the column in a trigger.
    Below is a similar thread from a few days ago:
    In triggering dynamic column names

    Nicolas.

  • Deactivation of the column in a table based on the setting in the search box

    Hi all

    I use Oracle Apex 4.1. I have two region

    1. search box

    2. in the form of a table

    In the search box, I have a LOV field where the user can select the value. Based on this LOV in the search box, tabular column f06 must disable or read-only.

    For example if I select THREE in LOV then only column f06 is expected on the other it must disable. How to get there.

    Thanks in advance

    Ravi

    Hi Bobo,

    Hope link below will solve your query.

    Disable the column in a table.

    BR,

    Patrick

  • Get the name of the column in the Select row

    Hi guys,.

    I paint a picture in which there is commandlink in a line for each Column.When I click af:commadLink I want to get the name of the column on which commandLink is clicked.
    I tried to get currentRow Clicked from DCIteratorBinding but I want the column name or a column and index.

    Thank you
    Rahul

    Hello

    I added a tag of f: attribute for the command link, give it a name and provide the column name as value. In the ActionListener method, access you the link to actionEvent.getUIComponent (). Here call you getProperties or get attributes (one of the two exists) which returns a map. On the plan that you call get ("the f_attribute name") to get the column name

    Frank

  • Get the name of the column of row

    All,

    In my Jdev 11.1.2 app I want to know the name of the attribute column that is modified. I am able to get the attribute name that currently use the getAttrbute() on the line (if you open the VO we see name |) Type of | Column, etc.). How can I get the name of the column?

    For example: the name of the attribute is Nom_tiers, column name can be Party_Name. I am able to do Nom_tiers but not Party_Name.

    thnks

    Published by: in the line of fire on 14 December 2011 14:13

    getEntityAttrForAttribute("attribute_name_here").getColumnName)

  • How can I know the Position of the column in a table

    Hi all
    How can I know the position of the column in a table...
    For example: -.
    I have a table

    DESC EMPLOYEES

    EmpID
    Ename
    SAL

    I want to know the Empid is in 1st position, ename is 2nd and sal is in 3rd place.

    is this possible?

    SELECT *.
    Of user_tab_cols
    WHERE table_name = 'EMP ';

    Concerning
    Arun

  • You can addItem() when you do not know the name of the column?

    I am trying to enter data into a DataGrid via XML. I do not know in advance what will be the names of the columns. I understand that it is supposed to function as:

    var sampleItem:Object = {ColName:10};

    dataGridMain.addItem (sampleItem);

    but it's no help if you don't know what will be the name of the column (column).

    Can I replace the value (10) with variables that match my xml values (output.row [0] .col [0]) and it works fine. But if I try to do the same for column name, it doesn't quite work. How can I use a dynamic of the names of columns in the dataGrid?

    gr8 to know that you have found the solution...

    Alternatively, you can make the dynamic columns same name as the name of the xml tag using dataprovider. Here's a simple example.

    ****************************************************************************************

    var dp:Array = new Array();

    var xml =
       
            TestTrack 1
            Band1
            test1.MP3
       
       
            TestTrack 2
            Wewayakai2
            test2.MP3
       
       
            TestTrack 3
            Band3
            test3.MP3
       
       
            TestTrack 4
            BAND4
            test4.MP3
       
    ;

    for (var i: int = 0; i
    var xmlc:XMLList = xml.track [i] .children ();
    var col1:String = (xmlc [0] as XML) .localName () as String
    var col2:String = xmlc [1] .localName () as String
    var col3:String = xmlc [2] .localName () as String
    var obj:Object = new Object();
    obj [col1] = xml.track [i] .title;
    obj [col2] = xml.track [i] .band;
    obj [col3] = xml.track [i] mpfprojectdir\dev10\src\csharp\projectbase.file;
    DP.push (obj);
    }

    dg.dataProvider = new DataProvider (dp);

    *****************************************************************************************

    Kind regards

    Karthikeyan R

Maybe you are looking for