Where the system tables are recorded

Hello

Where are the system tables documented, such as the description of each column? references to columns between tables (views)

Thank you

In the database, you have DICT, with as main colum TABLE_NAME, describing each view of the dictionary.
You also have DICT_COLUMNS and DICT_COMMENTS.
Outside the database, there is the 'reference manual Oracle"for your version without name on http://tahiti.oracle.com

----------------
Sybrand Bakker
Senior Oracle DBA

Tags: Database

Similar Questions

  • NB200 - Notifications in the system tray area

    Every few seconds I get an annoying popup notification in the system tray area that informs me of the 'blocked events' these are events all IPv4 TCP or UDP. I really want to turn off these notifications, but despite a vast internet searching I can't find out how to do this. I tried the Action Center and tried the obvious firewall settings, but nothing will stop them. I find them very boring.

    I have a 12W NB200 running Windows 7 Home Prmium (a recent update from Windows 7 Starter Edition). -the problem occurs in both versions. Initially, I used installed but uninstalled McAfee security suite and am using 2009 F-secure Internet security suite for which I have a valid license.
    The system is connected wireless to my BT Home hub router and is connected through the homegroup for two PC. The other two computers are connected through ethernet cables to the router and both run on Windows 7 Home Premium with Avira internet security. I don't get the pop-ups on these machines.

    Any help would be greatly appreciated

    AE

    Which program generates alerts - are you sure its f-secure or would it be the widows firewall or mcafee? I don't know anything about f-secure (other than I couldn't find a manual 2009 on their website), but I would say that it will keep a diary of events and when you get close to the 'variant' that appears (and I expect clears) you will also find an option on the display of the event.

    Re my comment about this program is-are you happy that you have removed any trace of mcafee? Have you run msconfig and looked at the services and startup for any trace tabs? Also look in the Manager of tasks for all traces: in the services tab, click description to sort and search for mcafee from the similar description in the process but I think that you would have never had 1 entry of mcafee.

    I think that this should have been the first para. Have you created/modified the firewall rules? The log file must provide the ip address of the event source and which is in the range of ip addresses of your network domestic? and since you are a bt customer internet you have a bt vision pvr and who is the source?

    Post edited by: peterk_1

  • I'm running Windows 7 64, but when I read the configuration of the system, they are all noted 32? Why is this? I bought my Acer Aspire 7750 g with windows 7 64.

    PROBLEM WITH MY LAPTOP CONFIG AND SYSTEM.

    I'm running Windows 7 64, but when I read the configuration of the system, they are all noted 32? Why is this? I bought my Acer Aspire 7750 g with windows 7 64. It has been preloaded. I am VERY confused!

    When you view this file.

    If you check through the Task Manager > processes (tab) some will note * 32 because they are native 32-bit applications running on a 64-bit operating system.

  • Whenever I click on any button of the trial download on the adobe Web site you I get redirected to a page where the 4 squares are moving to load the page, but never load it, I left my browser on for hours and yet it still doesn't work anyone can help?

    Whenever I click on any button of the trial download on the adobe Web site you I get redirected to a page where the 4 squares are moving to load the page, but never load it, I left my browser on for hours and yet it still doesn't work anyone can help?

    clear your adobe.com cookies or use a different browser.

  • Rows from the outer table are cached?

    Hi all

    Can anyone confirm if the lines of the outer table are cached in memory? If so, how "redirect" Oracle query next 'return' in the data external when the latter is updated or modified file? Thanks for the responses,

    Kind regards

    Kevin.

    KevinFitz wrote:
    Hi all

    Can anyone confirm if the lines of the outer table are cached in memory? If so, how "redirect" Oracle query next 'return' in the data external when the latter is updated or modified file? Thanks for the responses,

    Kind regards

    Kevin.

    The hard drive itself will be hidden data in OS operations.
    Oracle hidden data in external tables, because it knows that it is an external data source and can change without knowing.

  • How do I know if the two tables are the same in the data they contain

    Hello

    How will I know if the two tables are the same in the data they contain?

    Hello

    Please check this thread [compare all columns | http://forums.oracle.com/forums/thread.jspa?messageID=3166309�].

    Kind regards

  • Where is the setting for the WCC tables of records?

    More precisely what scheme they reside in? I can see a schema called DEV_URMSERVER but the tables are almost all empty and I have certainly some documents and records. Maybe I have a problem NLSLANG

    DEV_OCS looks promising

  • Select only records where the column values are not all equal to zero

    Hi everyone, it seems so easy, but it has left me speechless on the research in a way that is clean, easy to achieve. I know when someone replies, I'm going to kick me. So, let's assume this is what I have:
    with mytable as (
    select 'Type 1' as itemtype, 'JAN' as monthname, 0 as theval from dual union all
    select 'Type 1' as itemtype, 'FEB' as monthname, 1 as theval from dual union all
    select 'Type 1' as itemtype, 'MAR' as monthname, 5 as theval from dual union all
    select 'Type 1' as itemtype, 'APR' as monthname, 1 as theval from dual union all
    select 'Type 1' as itemtype, 'MAY' as monthname, 4 as theval from dual union all
    select 'Type 1' as itemtype, 'JUL' as monthname, 0 as theval from dual union all
    select 'Type 1' as itemtype, 'AUG' as monthname, 0 as theval from dual union all
    select 'Type 1' as itemtype, 'SEP' as monthname, 1 as theval from dual union all
    select 'Type 1' as itemtype, 'OCT' as monthname, 7 as theval from dual union all
    select 'Type 1' as itemtype, 'NOV' as monthname, 1 as theval from dual union all
    select 'Type 1' as itemtype, 'DEC' as monthname, 2 as theval from dual union all
    
    select 'Type 2' as itemtype, 'JAN' as monthname, 0 as theval from dual union all
    select 'Type 2' as itemtype, 'FEB' as monthname, 0 as theval from dual union all
    select 'Type 2' as itemtype, 'MAR' as monthname, 0 as theval from dual union all
    select 'Type 2' as itemtype, 'APR' as monthname, 0 as theval from dual union all
    select 'Type 2' as itemtype, 'MAY' as monthname, 0 as theval from dual union all
    select 'Type 2' as itemtype, 'OCT' as monthname, 0 as theval from dual union all
    select 'Type 2' as itemtype, 'NOV' as monthname, 0 as theval from dual union all
    select 'Type 2' as itemtype, 'DEC' as monthname, 0 as theval from dual
    )
    select
      itemtype,
      sum (case monthname when 'JAN' then theval else 0 end) as JAN,
      sum (case monthname when 'FEB' then theval else 0 end) as FEB,
      sum (case monthname when 'MAR' then theval else 0 end) as MAR,
      sum (case monthname when 'APR' then theval else 0 end) as APR,
      sum (case monthname when 'MAY' then theval else 0 end) as MAY,
      sum (case monthname when 'JUN' then theval else 0 end) as JUN,
      sum (case monthname when 'JUL' then theval else 0 end) as JUL,
      sum (case monthname when 'AUG' then theval else 0 end) as AUG,
      sum (case monthname when 'SEP' then theval else 0 end) as SEP,
      sum (case monthname when 'OCT' then theval else 0 end) as OCT,
      sum (case monthname when 'NOV' then theval else 0 end) as NOV,
      sum (case monthname when 'DEC' then theval else 0 end) as DEC
    from mytable
    group by itemtype
    order by itemtype
    I need an external application around it or something which will select only 'Type 1'... that is, if all months are each equal to zero, do not include the record in the result set.

    In summary to get a total of zero is not an option, because I could have-15 and + 15 in different columns, in which case, the recording should be displayed.

    Something as simple as... 'not the case (oct = 0 and 0 nov and dec = 0...) at the end is all it seems to me necessary. I thought to add a case for each column clause, but that seems not very effective. Ideas?

    Thanks in advance!
    Mark

    Edit... I know not what follows will work using the MINUS operator, but my actual query is really huge, and I don't want to have to write it twice...
    {code}
    Select
    ItemType,
    sum (case monthname when "JAN" then Val else 0 end) such as JAN,.
    sum (case when monthname 'FEB', then Val 0 otherwise end) by Feb.
    sum (case when monthname 'MAR', then Val 0 otherwise end) like MARS,
    sum (case monthname when "APR" then Val else 0 end) as APR.
    sum (case when monthname 'MAY', then Val else 0 end) either.
    sum (case when monthname "JUN", then Val 0 otherwise end) as JUN.
    sum (case monthname when "JUL" then Val else 0 end) as JUL,.
    sum (case monthname when "AUG" then Val else 0 end) as AUG.
    sum (case monthname when "MS" then Val else 0 end) as MS.
    sum (case monthname when "OCTS" then Val else 0 end) OCT.
    sum (case monthname when "NOV" then Val else 0 end) as NOV.
    sum (case monthname when 'DEC' then Val else 0 end) as DEC
    FROM MyTable
    Group of itemtype

    less

    Select
    ItemType,
    Jan, Feb, mar, Apr, may, June, July, August, Sept, oct, nov, dec
    de)
    Select
    ItemType,
    sum (case monthname when "JAN" then Val else 0 end) such as JAN,.
    sum (case when monthname 'FEB', then Val 0 otherwise end) by Feb.
    sum (case when monthname 'MAR', then Val 0 otherwise end) like MARS,
    sum (case monthname when "APR" then Val else 0 end) as APR.
    sum (case when monthname 'MAY', then Val else 0 end) either.
    sum (case when monthname "JUN", then Val 0 otherwise end) as JUN.
    sum (case monthname when "JUL" then Val else 0 end) as JUL,.
    sum (case monthname when "AUG" then Val else 0 end) as AUG.
    sum (case monthname when "MS" then Val else 0 end) as MS.
    sum (case monthname when "OCTS" then Val else 0 end) OCT.
    sum (case monthname when "NOV" then Val else 0 end) as NOV.
    sum (case monthname when 'DEC' then Val else 0 end) as DEC
    FROM MyTable
    Group of itemtype
    )
    where (oct = 0 & nov = 0 and dec = 0 and jan = 0 and 0 = Feb and mar = 0
    apr = 0 and may = 0 and = 0 jun and Jul = 0 and aug = 0 and Ms = 0
    )
    order of itemtype
    {code}

    Change again... OK, I guess that I am answering my own question here, but I think that by using a WITH to write the main request once clause and then selecting * twice using the MINUS operator between where the second query is where (oct = 0, etc.) is what I need. If anyone has better suggestions, please let me know! Here's the logic of nickname for what I come up with to date...

    {code}
    WITH mainquery as (select all)
    Select * from mainquery
    less
    Select * from mainquery where (oct = 0, nov = 0, etc...)
    {code}

    Thanks again!
    Mark

    Published by: user455268 on March 1, 2012 19:13

    Published by: user455268 on March 1, 2012 19:16

    Hello

    You can do it with a HAVING clause:

    select
      itemtype,
      sum (case monthname when 'JAN' then theval else 0 end) as JAN,
      sum (case monthname when 'FEB' then theval else 0 end) as FEB,
      sum (case monthname when 'MAR' then theval else 0 end) as MAR,
      sum (case monthname when 'APR' then theval else 0 end) as APR,
      sum (case monthname when 'MAY' then theval else 0 end) as MAY,
      sum (case monthname when 'JUN' then theval else 0 end) as JUN,
      sum (case monthname when 'JUL' then theval else 0 end) as JUL,
      sum (case monthname when 'AUG' then theval else 0 end) as AUG,
      sum (case monthname when 'SEP' then theval else 0 end) as SEP,
      sum (case monthname when 'OCT' then theval else 0 end) as OCT,
      sum (case monthname when 'NOV' then theval else 0 end) as NOV,
      sum (case monthname when 'DEC' then theval else 0 end) as DEC
    from mytable
    group by itemtype
    HAVING      MIN (theval)     != 0
    OR      MAX (theval)     != 0
    order by itemtype
    ;
    

    If the values are all 0, then the MIN and MAX will be 0.
    If the MIN or MAX is not 0, the values are all 0.

    This assumes that the combination (itemtype, monthname) is unique, because it is in your sample data.
    If this is not the case, start with a subquery that GROUPs BY itemtype, monthname, so that when you get to the main request, this combination will be unique.

  • my windows 7 is not defragment properly, the system files are 11% fragmented

    I have a Hp pavilion pc and when I try to defragment the system disk it dosent even run, its fragmented 11%?

    Are you referring to the 100MB system reserved partition?

    If so, I wouldn't worry about defrag it because she does not have any problem for your system...

    It's a small segment of the disc that contains primarily startup records.

  • Where the Notes files are stored

    Hi all

    Today, I have reinstalled my MacBook Pro 2015, but I can't find how to restore my notes. I did a lot of research on the internet and found where the notes are stored in the library (where are stored the Notes files?), but it seems that this trick does not work for El Capitan.

    There are so many important information stored in the notes, so I hope they won't get lost.

    MacBook Pro retina

    OS X El Capitan 10.11.3

    Do you mean that you have deleted and reinstalled? If so, why? Simply reinstall the OS in place should not affected Notes data. Synchronize Notes with a network service, such as iCloud?

  • HP Officejet J4580 all-in-One: where the printer cartridges are located

    Where are the cartridges of printers that are located on the HP Oficejet J4580 all-in-One printer

    The ink cartridges are located inside the printer. Go here... http://support.HP.com/us-en/product/HP-OfficeJet-J4000-all-in-one-printer-series/3645081/model/3645099/manuals download the User Guide and read page 10 for see where.

  • new restore point takes me to where the system restore must be fact-Windows8 - can anyone help?

    This afternoon I did an update of pc in turn, I lost all my programs. Creating a new restore, point I put in the description box the day before the start date of pc, but it will not take me. Only options it shows are all after the beginning of misery... I tried everything that was suggested, even an audit of system files and shadow... which is not set to auto, at least now, I don't get the error message, but it is impossible to define the just restore point.

    Help means...

    [Moved from the community centre of Participation]

    My fault for typing. Refresh deletes everything and all restore points so there is no way to go back. There is a lot of attention. Once the restore points are gone, they are gone.  It is from my computer when I press Refresh:

    (1) your files and customization settings will not be changed

    (2) all settings will be reset to their default values

    (3) apps in the store will be kept

    (4) (Yes the Apps) apps installed from disk or Web sites will be deleted

    (5) a list of all the deleted applications will be in a folder on your desktop

    You should read when you try something new, that may not be much clearer. In the future, you should make one see update custom Image: http://support.microsoft.com/kb/2748351/en-us and it's also a good idea to have a complete picture of the system and he followed to date so if you need to reset you can use.

    Hope this helps and if you need any additional aid station and we will be happy to help you.

    The above opinion is mine and mine nothing and does not necessarily reflect that of Microsoft, it's employees, or any other Member of this forum.

    "When we try to take anything by itself, we find it hitched to everything else in the universe."-John Muir

    If this has answered your message please mark as answer.

  • The global tables are interconnected?

    Dear friends
    I'm more than puzzling over the following

    It's the overall definition of two tables:

    var gasLocations      = [];                       // filled from template or current document  
    var gasLocationsPredef= [];                       // filled in SetUpArraysEtc () 
    

    They met in the SetUpArraysEtc () function:

    // locations for the list in the dialogue
    gasLocations1   = ['Above()', 'Below()', 'Left()', 'Right()']; // used in UnknownElement concatenated to gasFunctions
    var asLocations2    = ['[COL m]', '[ROW n]', '[CELL n, m]']; 
    gasLocationsPredef = gasLocations1.concat(asLocations2); // These must not be deleted from the list
    gasLocations    = gasLocationsPredef;
    

    Later in a dialog table gasLocations function will need to be updated. I put a breakpoint right before the crucial moment:

    function ButtonAddLocation () { // ================================================================
    // Attention: this regex is different from that in ChecktermElements!
      var re_Def = /(\[ROW +\d+\]|\[COL +\d+\]|\[CELL +\d+, +\d+\]|Left *\(\d*\)|Right *\(\d*\)|Above *\(\d*\)|Below *\(\d*\))/;
      var item = wPalDS.p0.tabL.g1.p2.g1.sLocation.text;
      if (item.search(re_Def)) {
        alert (gsDSSyntaxErr);
        return;
      } 
    $.bp(true);
      UpdateListLocations (wPalDS.p0.tabL.g1.p1.listLocations, item);
      FillItemList (wPalDS.p0.tabL.g1.p1.listLocations,  gasLocations);
      PutRefPageItems ("Ref-Locations", "");          // update reference page
    } // --- end ButtonAddLocation
    
    function ButtonDelLocation () { // ================================================================
      var lstIndex = wPalDS.p0.tabL.g1.p1.listLocations.selection.valueOf();
      var locName = gasLocations[lstIndex];
      if (IsInArray (gasLocationsPredef, locName)) {
        alert ("Predfeined items can not be deleted");
        return;
      };
      DeleteItemLocations (wPalDS.p0.tabL.g1.p1.listLocations, locName)
      PutRefPageItems ("Ref-Locations", "");          // update reference page
    } // --- end ButtonDelLocation
    
    function UpdateListLocations (oList, item) { // ====================================================
    // update global array and list in dialogue;
      var locArray = gasLocations, j, nItems;
      locArray.push (item);
      gasLocations = locArray.sort ();                // update global array
      nItems = gasLocations.length;
      oList.removeAll ();                             // clear the list
      for (j = 0; j < nItems; j++) {
        oList.add ("item", gasLocations[j]);          // add item
      }
    } // --- end UpdateListLocations
    
    function DeleteItemLocations (oList, item) { // ====================================================
    // List is rebuilt from array. Function array.splice not available in ES
      var index = IsInArray (gasLocations, item);
      var lower = gasLocations.slice (0, index);      // lower part
      var upper = gasLocations.slice (index+1);       // upper part
      gasLocations    = lower.concat(upper);
      FillItemList (oList, gArray);
    } // --- end DeleteItemLocations
    
    function FillItemList (oList, aSource) { // =====================================================
      var j, nItems = aSource.length;
      oList.removeAll ();                             // clear the list
      for (j = 0; j < nItems; j++) {
        oList.add ("item", aSource[j]);               // add item
      }
    } // --- end FillItemList
    function IsInArray (array, what) { //==============================================================
    // indexOf is not supported in ExtendScript...
      var jl;
      for (j = 0; j < array.length; j++) {
        if (array [j] == what ) { return j;}
      }
      return null;     // not found in array
    } // --- end IsInArray
    

    Now, guess what? After UpdateListLocations the two tables have the same content! But gasLocationsPredef doesn't have to be updated, because it serves as a reference: list items in the selection corresponding to the elements of this array must not be removed from the list. The ButtonDelLocation function has always search the newly inserted item and does not accept the deletion.
    I once read a warning on global variables - but I carefully avoid using as arguments to functions output (only objects are managed "by" reference").

    Who has an eagle eye for spotting my error?

    Hi Klaus,

    to copy the contents of a table (and ONLY content), you must use sth. Like this:

    Array1 = Array2.slice ();

    Array1 = array 2 you create only a second word for the same thing.

  • IOM 11 GR 2 - Entilements are removed if the child tables are not met.

    Hello experts,

    I use the OOTB DBUM connector.

    When a user has certain rights assigned to IOM (db, db roles privileges) need to be addressed in the child tables before any account update otherwise they are deleted/revoked.

    In other words when the update of a parent account attribute, I need also to populate child tables with payments already assigned, so I leave them blank, all payments will be deleted: empty child tables means "remove all rights", instead, I don't want to change the right assignments.

    How can I do this?

    Fixed by the creation and use of a new form of resources.

  • product information programmed into the system board are invalid or missing

    the following product information programmed on the system card is missing or invalid

    WHAT information?

    Without providing us with all the details, we can not help you...

Maybe you are looking for

  • My iPhone will not connect to iTunes, but connects to my laptop

    I recently installed the latest update to iTunes and after that installation of this update iTunes does not recognize my device. I then installed version 12.4.1 in the hope that it would solve the problem but it didn't. I tried uninstalling iTunes an

  • where's summary

    Today I downloaded iTunes, the last time I downloaded iTunes, that's when I got the iPhone 4 but I switched to android, now I'm back with iPhone 6. I can't find the iTunes summary 12.3.3 tab I'm under 64-bit Windows 10... Can anyone help

  • Where is the creator of recovery on Portege M400 disk?

    I need to do a recovery for my M400 disc is not in the Toshiba Assist - Protect & fix. So where he's hiding?Any help would be gratefuly received, as it is driving me crazy.

  • HP ENVY 17 Laptop: HP Recovery Manager

    After updated to 10 Windows in Windows 7, I open HP Recovery Manager and get the message saying"recovery controller speaker has for Windows 7. It is not compatible with Windows 8 ". Can I update Windows 10 HP Recovery Manager? Please notify. Thank yo

  • HP 15 laptop: I need unknown device driver

    I need driver of unknown device. Unknown device driver ID: ACPI\VEN_HPQ & DEV_6001ACPI\HPQ6001* HPQ6001