There is 'table' for the object_type values?

I wonder if there is a system view, or a table for all the values that can appear in the all_objects.object_type column? Or maybe the only way to get this list of os values to query with the distinct keyword dba_objects.object_type?

Thank you

Look at the source of the view:

Decode (o.type #, 0, 'NEXT ITEM', 1, 'INDEX', 2, 'TABLE', 3, 'CLUSTERS',)

4, 'VIEW', 5, 'SYNONYM', 6, 'ORDER ',.

7, 'PROCEDURE', 'FUNCTION', 8, 9, 'PACKAGE ',.

11, 'PACKAGE BODY', 12, 'TRIGGER ',.

13, 'TYPE', 14, 'TYPE BODY ':

19, "PARTITION TABLE", 20, 'PARTITION OF THE INDEX', 21, 'CRAFT. "

22, 'LIBRARY', 23, "DIRECTORY," 24, "QUEUE."

28, 'JAVA SOURCE,' 29, 'JAVA CLASS', 30, 'JAVA RESOURCE. "

32, "INDEXTYPE", 33, "OPERATOR",.

34, 'TABLE SUBPARTITION', 35, "INDEX SUBPARTITION.

40, 'LOB PARTITION', 41, "LOB SUBPARTITION.

42, NVL ((SELECT "EQUIVALENCE OF REWRITING"

AMOUNT $ s

WHERE s.obj #= o.obj #.

and bitand (s.xpflags, 8388608) = 8388608).

"MATERIALIZED VIEW'),

43, "DIMENSION."

44, 'CONTEXT', 46, "SET OF RULES', 47, 'PLAN OF RESOURCES."

48, GROUP "CONSUMER."

55, "XML SCHEMA", 56, "JAVA DATA."

57, 'EDITION', 59, "RULE."

60, "CAPTURE," 61, "APPLICABLE."

62, 'EVALUATION CONTEXT ',.

66, 'JOB', 'PROGRAMME', 67, 68, "JOB CLASS", 69, 'WINDOW',

72, GROUP 'PLANNER', 74, 'CALENDAR', 79 'CHAIN ',.

81, 'GROUP OF FILES', 82 'MODEL OF EXPLORATION' 87, "ASSEMBLY,"

90, 'IDENTIFICATION', ' 92, 'CUBE DIMENSION', 93, "CUBE."

94, "MEASUREMENT RECORD", 95 "CUBE BUILD PROCESS,"

100, "LINE WATCHER", 101, "DESTINATION."

"UNDEFINED"),

Tags: Database

Similar Questions

  • Read the table for the next value (sequence issue)

    Is there a function in line with my_seq_no.nextval that can read a value from the previous field and get the next number in the sequence? I know how to create a sequence, but I thought that there is something as a function of getnextval.

    Thank you.

    Preston,

    The problem is that there is no such thing as a previous value in Oracle.
    You must specify a way (like number maximum.. etc..) to get the expected value.

    Sometimes, you can see the code as...

    insert into emp values
    (select max(empid) + 1 from emp) new_emp_id,
    ''XYZ' ename,
    .......
    ....
    ...
    from dual;
    

    As seen... the code above takes the maximum value of the emp table and gives you the identificateursuivant emp.

    The problem here is that all currently connected users will get the same value for the new empid, until a person inserts a record, then... all others would be unique constraint errors (if you have constraints on the right in place).

    Using sequences is the right way to ensure that all concurrent users get their own unique values for the new values.

    As for the getnextval, they could always get to a function which selects to the max (column-name) + 1 and returns it... but it has the same problems as the insert... Select above... So I would rather not provide code for such a thing... I would do more damage than help it. Please use a sequence for your case.

  • Mark from a table where the column value is a colon-delimited list

    Version: Oracle Database 11 g Enterprise Edition Release 11.2.0.2.0 - 64 bit Production

    Hello

    This is a new query of a query Frank helped me with: https://community.oracle.com/message/12506306#12506306

    Demand is all users to restrict the report based on a multiple selection on the front-end server (application APEX) filter.

    The filter returns that a colon-delimited list and the data in the table can be saved in a delimited by a colon list too. There may be 1 to n values (up to 4000 characters).

    I need a WHERE clause that will allow a match, if it exists, between the data in the column of the Table and the Mult-selection list filter.

    The abbreviated for this post query would be something like:

    SELECT slt_id, slt_item, slt_owner

    OF slt_dashboard

    WHERE slt_owner IN (colon delimited page list);

    The Create Table and Insert statements:

    CREATE TABLE slt_dashboard
    (
      dashboard_id  NUMBER,
      slt_id        VARCHAR2(10),
      slt_item      VARCHAR2(2500),
      slt_owner     VARCHAR2(4000),
      slt_type      VARCHAR2(25),
      slt_year      NUMBER,
      parent_id     NUMBER
    );
    
    --Insert slt_dashboard
    INSERT INTO slt_dashboard(dashboard_id,slt_id,slt_item,slt_owner,slt_type,slt_year,parent_id)
    VALUES (12,'1.1','Implement revenue enhancement initiatives','E15889:JPARISI:BDUR63','Business Commitment',2014,6);
    
    INSERT INTO slt_dashboard(dashboard_id,slt_id,slt_item,slt_owner,slt_type,slt_year,parent_id)
    VALUES (13,'1.2','Strengthen our Energy position','KVROMAN','Business Commitment',2014,6);
    
    
    

    I have a function to separate the list delimited by two points in a table for the IN clause, but because these values can be saved in a delimited list of Colon in the column of the Table, I have a problem, being able to analyze the data in the column, AND the filter data.

    The function is:

    CREATE OR REPLACE FUNCTION get_list( p_string IN VARCHAR2
                                        ,p_delimiter IN VARCHAR2 DEFAULT ':'
                                       )
        RETURN vc_array_1
        PIPELINED
    IS
        l_string VARCHAR2( 32000 );
        l_array wwv_flow_global.vc_arr2;
    BEGIN
        l_array     :=
            APEX_UTIL.string_to_table( p_string
                                      ,p_delimiter
                                     );
    
        FOR i IN l_array.FIRST .. l_array.LAST
        LOOP
            PIPE ROW ( TRIM( l_array( i ) ) );
        END LOOP;
    
        RETURN;
    END;
    
    
    

    The function called in the query in the form (it's just for reference in case someone wanted to know):

    SELECT ...
    FROM ...
    WHERE slt_owner IN (SELECT * FROM TABLE( get_list( :P115_SLT_OWNER ) ));
    

    But I can't use this approach because the data in the Table can be saved in a delimited list of Colon too.

    Desired output:

    If the Mult-Select list filter contains: E15889:JPARISI then

    1.1 implementation of the E15889 revenue improvement initiatives; JPARISI (it's a semicolon between the names)

    If the multiple-selection list filter contains: KVROMAN then

    1.2 strengthen our position of energy KVROMAN

    If the multiple-selection list filter contains: BDUR63:KVROMAN then

    1.1 implementation of the BDUR63 revenue improvement initiatives

    1.2 strengthen our position of energy KVROMAN

    Please let me know if something is not clear.

    Thank you

    Joe

    I went to approach the Table and the Page works perfectly.

    Thank you to everyone!

    Thank you

    Joe

  • Are there any available for the Mac Pro 2013 SSD expansion?

    Are there any available for the Mac Pro 2013 SSD expansion?

    I would like to increase my 1 or 2 GB of storage internal if possible.

    https://eShop.MacSales.com/shop/SSD/OWC/Mac-Pro/2013

  • Is there a datasheet for the W700?

    Is there a datasheet for the W700?

    http://shop.Lenovo.com/ISS_Static/merchandising/us/PDFs/W700_Datasheet.PDF

  • Is there a manual for the user of Windows XP and how can I get a?

    Is there a manual for the user of Windows XP and how can I get a?

    Hello

    See how you go with this...

    http://download.Microsoft.com/download/1/6/6/16674679-1e6e-4304-A5A0-49eeaa31e639/RevGuide.PDF

    Concerning

    GT4U

  • Is there a way for the secret video files to the sansa fuze using QUICK MEDIA CONVERTER?

    Is there a way for the secret video files to the sansa fuze using QUICK MEDIA CONVERTER?

    Not really. The way final only ot add videos on the "rocket" is SMC. Rhapsody will do this also, but I don't know that its faster.

  • Are there any drivers for the canon digital rebel eos 300 d for Windows 7

    Are there any drivers for the canon digital rebel eos 300 d for Windows 7?

    Hello

    Like you need help with the driver for Canon digital rebel EOS 300 d, you will need to contact the manufacturer of the product for the driver. According to the Windows 7 compatibility check, this particular camera is not compatible with 32-bit (x 86) as a 64-bit (x 64) operating system.

    For more information about the Windows 7 compatibility, visit this link: http://www.microsoft.com/windows/compatibility/windows-7/en-us/Search.aspx?l=en-us&s=canon%20digital%20rebel%20EOS%20300D&type=Hardware&page=1&os=32-bit

    For more information about the driver, visit this link: http://www.usa.canon.com/cusa/support/consumer/eos_slr_camera_systems/eos_digital_slr_cameras/eos_digital_rebel?selectedName=DriversAndSoftware

    I hope that helps!

  • I installed Lightroom 4.4, serial number [removed-kglad]. Is there an Option for the update of Lightroom 6?

    I installed Lightroom 4.4, serial number [removed-kglad]. Is there an Option for the update of Lightroom 6?

    major version changes are paid upgrades, free updates not.

    Products

  • Are there special requirements for the price of introduction to CC for teams?

    Are there special requirements for the price of introduction to CC for teams? A 3rd provider told me the pricing lives and dies with the system it is installed on.  What does that mean?

    Hello

    You can actually have installed creative cloud and on two computers, signed as long as you don't use it on one at a time. Download and install as you did on the first computer, sign in to your Adobe account on the Adobe using your Adobe ID website, download the desktop app from clouds, then download the software.

  • I have 5 Lightroom, how to switch to Lightroom 6? Is there a price for the upgrade or do I have to buy all of the 6 Lightroom? What are the links?

    I have 5 Lightroom, how to switch to Lightroom 6? Is there a price for the upgrade or do I have to buy all of the 6 Lightroom? What are the links?

    Lightroom 6 updates can be purchased directly from Adobe, for a price of $79.  A link to the corresponding page on their website is less than

    https://www.Adobe.com/products/catalog/software._sl_id-contentfilter_sl_catalog_sl_softwar e_sl_mostpopular.html? promoid = KLXMI

    Lightroom is also available as part of the "Creative cloud photography Plan" for a monthly subscription of $9.99.  This includes Lightroom CC, Mobile with Lightroom and Photoshop CC.

    https://www.Adobe.com/creativecloud/photography.html

  • Why is there an update for the version 17.0.0.134 MSI?

    Why is there an update for the version 17.0.0.134 MSI?  I am authorized to distribute in my company.

    Hi Michael,

    MSI update installation programs are now available on the licenses page.  There is a long thread about this in 17 Flash .msi is not available?.

    --

    Maria

  • When will Hi there, there be support for the Olympus PEN E - PL7?

    When will Hi there, there be support for the Olympus PEN E - PL7?

    It's on our radar and hoping to incorporate it in a next update.

    As soon as it is available, it will be updated in the article below. Camera Raw plugin | Compatible cameras

    ~ David

  • By comparing the two tables for the integrity of the data

    Hi all
    I need to compare two tables for the integrity of the data through the SQL query.

    If you need to compare all the columns of t1 to t2:

    (SELECT * FROM t1
    MINUS
    SELECT * FROM t2)
    UNION ALL
    (SELECT * FROM t2
    MINUS
    SELECT * FROM t1);
    

    Kind regards
    Ankit Rouault
    http://theoraclelog.blogspot.in

  • Base table for the customer in R12

    Hello

    What is the name of the base table for the customer in R12?

    Thank you
    GSM

    Please see (absorption of the projects of the TCA Architecture in version 12 [417511.1 ID]).

    Thank you
    Hussein

Maybe you are looking for

  • I can't move the forward/reverse button.

    In the 28 new every night, the front/rear button is just to the left of the address window, while he was at the far left of the navigation bar. How can I move to where I want to go?

  • Bookmark Backup does not work.

    I recently had to uninstall and reinstall Firefox, because I could not get rid of text improve malware. Before that, I created a backup of all my favorites. However, once the resettlement of Firefox was over and I went to restore my bookmarks I disco

  • are there problems using ioS 9.3 on iPhone 4S

    Are there any known problems in installation and usage of iOS on iPhone 4S 9.3? Thank you Michael Gross

  • Cannot access the playlists in the music app

    Hello I have an iPod touch with iOS 9.2.1 and since the new update I just can't go to my playlists. Whenever I click on it the music app breaks down. I tried to close all applications before you go, but that did not help. Soft reset also did nothing.

  • BlackBerry smartphones app 'My World' list incomplete + impossible to reinstall the applications

    Hello A week ago, some applications that I bought/downloaded suddenly disappeared from the list of applications in 'my world '. This made it impossible for me to manage/upgrade / reinstall some applications. It's especially annoying since some of the