SlideShare a Scribd company logo
1 of 21
Download to read offline
Copyright © 2004, Oracle. All rights reserved.
Managing Objects
with Data Dictionary Views
Copyright © 2004, Oracle. All rights reserved.
Objectives
After completing this lesson, you should be able to do
the following:
• Use the data dictionary views to research data on
your objects
• Query various data dictionary views
Copyright © 2004, Oracle. All rights reserved.
The Data Dictionary
Oracle server
Tables containing
business data:
EMPLOYEES
DEPARTMENTS
LOCATIONS
JOB_HISTORY
...
Data dictionary
views:
DICTIONARY
USER_OBJECTS
USER_TABLES
USER_TAB_COLUMNS
...
Copyright © 2004, Oracle. All rights reserved.
Data Dictionary Structure
Oracle server
Consists of:
– Base tables
– User-accessible views
Copyright © 2004, Oracle. All rights reserved.
Data Dictionary Structure
View naming convention:
Database administrator’s view (what is in
everyone’s schemas)
DBA
Performance-related dataV$
User’s view (what is in your schema;
what you own)
USER
Expanded user’s view (what you can
access)
ALL
PurposeView Prefix
Copyright © 2004, Oracle. All rights reserved.
How to Use the Dictionary Views
Start with DICTIONARY. It contains the names and
descriptions of the dictionary tables and views.
DESCRIBE DICTIONARY
SELECT *
FROM dictionary
WHERE table_name = 'USER_OBJECTS';
Copyright © 2004, Oracle. All rights reserved.
USER_OBJECTS and ALL_OBJECTS Views
USER_OBJECTS:
• Query USER_OBJECTS to see all of the objects that
are owned by you
• Is a useful way to obtain a listing of all object
names and types in your schema, plus the
following information:
– Date created
– Date of last modification
– Status (valid or invalid)
ALL_OBJECTS:
• Query ALL_OBJECTS to see all objects to which
you have access
Copyright © 2004, Oracle. All rights reserved.
USER_OBJECTS View
SELECT object_name, object_type, created, status
FROM user_objects
ORDER BY object_type;
…
Copyright © 2004, Oracle. All rights reserved.
Table Information
USER_TABLES:
DESCRIBE user_tables
SELECT table_name
FROM user_tables;
…
Copyright © 2004, Oracle. All rights reserved.
Column Information
USER_TAB_COLUMNS:
DESCRIBE user_tab_columns
…
Copyright © 2004, Oracle. All rights reserved.
Column Information
SELECT column_name, data_type, data_length,
data_precision, data_scale, nullable
FROM user_tab_columns
WHERE table_name = 'EMPLOYEES';
Copyright © 2004, Oracle. All rights reserved.
Constraint Information
• USER_CONSTRAINTS describes the constraint
definitions on your tables.
• USER_CONS_COLUMNS describes columns that are
owned by you and that are specified in
constraints.
DESCRIBE user_constraints
…
Copyright © 2004, Oracle. All rights reserved.
Constraint Information
SELECT constraint_name, constraint_type,
search_condition, r_constraint_name,
delete_rule, status
FROM user_constraints
WHERE table_name = 'EMPLOYEES';
Copyright © 2004, Oracle. All rights reserved.
Constraint Information
DESCRIBE user_cons_columns
SELECT constraint_name, column_name
FROM user_cons_columns
WHERE table_name = 'EMPLOYEES';
…
Copyright © 2004, Oracle. All rights reserved.
View Information
DESCRIBE user_views
SELECT DISTINCT view_name FROM user_views;
SELECT text FROM user_views
WHERE view_name = 'EMP_DETAILS_VIEW';
1
2
3
Copyright © 2004, Oracle. All rights reserved.
Sequence Information
DESCRIBE user_sequences
Copyright © 2004, Oracle. All rights reserved.
Sequence Information
• Verify your sequence values in the
USER_SEQUENCES data dictionary table.
• The LAST_NUMBER column displays the next
available sequence number if NOCACHE is
specified.
SELECT sequence_name, min_value, max_value,
increment_by, last_number
FROM user_sequences;
Copyright © 2004, Oracle. All rights reserved.
Synonym Information
DESCRIBE user_synonyms
SELECT *
FROM user_synonyms;
Copyright © 2004, Oracle. All rights reserved.
Adding Comments to a Table
• You can add comments to a table or column by
using the COMMENT statement:
• Comments can be viewed through the data
dictionary views:
– ALL_COL_COMMENTS
– USER_COL_COMMENTS
– ALL_TAB_COMMENTS
– USER_TAB_COMMENTS
COMMENT ON TABLE employees
IS 'Employee Information';
Comment created.
Copyright © 2004, Oracle. All rights reserved.
Summary
In this lesson, you should have learned how to find
information about your objects through the following
dictionary views:
• DICTIONARY
• USER_OBJECTS
• USER_TABLES
• USER_TAB_COLUMNS
• USER_CONSTRAINTS
• USER_CONS_COLUMNS
• USER_VIEWS
• USER_SEQUENCES
• USER_TAB_SYNONYMS
Copyright © 2004, Oracle. All rights reserved.
Practice 11: Overview
This practice covers the following topics:
• Querying the dictionary views for table and
column information
• Querying the dictionary views for constraint
information
• Querying the dictionary views for view information
• Querying the dictionary views for sequence
information
• Querying the dictionary views for synonym
information
• Adding a comment to a table and querying the
dictionary views for comment information

More Related Content

What's hot

What's hot (20)

Aggregating Data Using Group Functions
Aggregating Data Using Group FunctionsAggregating Data Using Group Functions
Aggregating Data Using Group Functions
 
Writing Basic SQL SELECT Statements
Writing Basic SQL SELECT StatementsWriting Basic SQL SELECT Statements
Writing Basic SQL SELECT Statements
 
Including Constraints -Oracle Data base
Including Constraints -Oracle Data base Including Constraints -Oracle Data base
Including Constraints -Oracle Data base
 
Displaying Data from Multiple Tables - Oracle Data Base
Displaying Data from Multiple Tables - Oracle Data BaseDisplaying Data from Multiple Tables - Oracle Data Base
Displaying Data from Multiple Tables - Oracle Data Base
 
Restricting and Sorting Data - Oracle Data Base
Restricting and Sorting Data - Oracle Data BaseRestricting and Sorting Data - Oracle Data Base
Restricting and Sorting Data - Oracle Data Base
 
plsql Les07
plsql Les07 plsql Les07
plsql Les07
 
plsql Les08
plsql Les08 plsql Les08
plsql Les08
 
Les01
Les01Les01
Les01
 
Manipulating Data Oracle Data base
Manipulating Data Oracle Data baseManipulating Data Oracle Data base
Manipulating Data Oracle Data base
 
Creating Views - oracle database
Creating Views - oracle databaseCreating Views - oracle database
Creating Views - oracle database
 
Database Objects
Database ObjectsDatabase Objects
Database Objects
 
Sql oracle
Sql oracleSql oracle
Sql oracle
 
Creating and Managing Tables -Oracle Data base
Creating and Managing Tables -Oracle Data base Creating and Managing Tables -Oracle Data base
Creating and Managing Tables -Oracle Data base
 
Single-Row Functions in orcale Data base
Single-Row Functions in orcale Data baseSingle-Row Functions in orcale Data base
Single-Row Functions in orcale Data base
 
plsql les06
 plsql les06 plsql les06
plsql les06
 
Sql database object
Sql database objectSql database object
Sql database object
 
Les05
Les05Les05
Les05
 
Les08 (manipulating data)
Les08 (manipulating data)Les08 (manipulating data)
Les08 (manipulating data)
 
plsql les10
 plsql les10 plsql les10
plsql les10
 
Sequences and indexes
Sequences and indexesSequences and indexes
Sequences and indexes
 

Viewers also liked (10)

Lapres 2
Lapres 2Lapres 2
Lapres 2
 
Lapres 1
Lapres 1Lapres 1
Lapres 1
 
Lapres 5
Lapres 5Lapres 5
Lapres 5
 
Lapres 3 & 4
Lapres 3 & 4Lapres 3 & 4
Lapres 3 & 4
 
Tupen 2 1235010002
Tupen 2 1235010002Tupen 2 1235010002
Tupen 2 1235010002
 
Ds sn is-01
Ds sn is-01Ds sn is-01
Ds sn is-01
 
Ds sn is-02
Ds sn is-02Ds sn is-02
Ds sn is-02
 
Pertemuan 5 optimasi_dengan_alternatif_terbatas_-_lengkap
Pertemuan 5 optimasi_dengan_alternatif_terbatas_-_lengkapPertemuan 5 optimasi_dengan_alternatif_terbatas_-_lengkap
Pertemuan 5 optimasi_dengan_alternatif_terbatas_-_lengkap
 
02 sistem pengambilan-keputusan_revised
02 sistem pengambilan-keputusan_revised02 sistem pengambilan-keputusan_revised
02 sistem pengambilan-keputusan_revised
 
04 pemodelan spk
04 pemodelan spk04 pemodelan spk
04 pemodelan spk
 

Similar to Les11

Managing objects with data dictionary views
Managing objects with data dictionary viewsManaging objects with data dictionary views
Managing objects with data dictionary views
Syed Zaid Irshad
 
Less07 schema
Less07 schemaLess07 schema
Less07 schema
Imran Ali
 
Manage schema object.ppt
Manage schema object.pptManage schema object.ppt
Manage schema object.ppt
AhmadUsman79
 
Lesson09
Lesson09Lesson09
Lesson09
renguzi
 
Administration and Management of Users in Oracle / Oracle Database Storage st...
Administration and Management of Users in Oracle / Oracle Database Storage st...Administration and Management of Users in Oracle / Oracle Database Storage st...
Administration and Management of Users in Oracle / Oracle Database Storage st...
rajeshkumarcse2001
 

Similar to Les11 (20)

Oracle
Oracle Oracle
Oracle
 
Managing objects with data dictionary views
Managing objects with data dictionary viewsManaging objects with data dictionary views
Managing objects with data dictionary views
 
Les11
Les11Les11
Les11
 
Less07 schema
Less07 schemaLess07 schema
Less07 schema
 
SQL SERVER Training in Pune Slides
SQL SERVER Training in Pune SlidesSQL SERVER Training in Pune Slides
SQL SERVER Training in Pune Slides
 
Les10.ppt
Les10.pptLes10.ppt
Les10.ppt
 
Manage schema object.ppt
Manage schema object.pptManage schema object.ppt
Manage schema object.ppt
 
Oracle Database
Oracle DatabaseOracle Database
Oracle Database
 
Intro
IntroIntro
Intro
 
Advanced db features
Advanced db featuresAdvanced db features
Advanced db features
 
03 Writing Control Structures, Writing with Compatible Data Types Using Expli...
03 Writing Control Structures, Writing with Compatible Data Types Using Expli...03 Writing Control Structures, Writing with Compatible Data Types Using Expli...
03 Writing Control Structures, Writing with Compatible Data Types Using Expli...
 
Lesson09
Lesson09Lesson09
Lesson09
 
Introduction to SQL, SQL*Plus
Introduction to SQL, SQL*PlusIntroduction to SQL, SQL*Plus
Introduction to SQL, SQL*Plus
 
Controlling User Access -Data base
Controlling User Access -Data baseControlling User Access -Data base
Controlling User Access -Data base
 
Administration and Management of Users in Oracle / Oracle Database Storage st...
Administration and Management of Users in Oracle / Oracle Database Storage st...Administration and Management of Users in Oracle / Oracle Database Storage st...
Administration and Management of Users in Oracle / Oracle Database Storage st...
 
SQL Commands
SQL Commands SQL Commands
SQL Commands
 
Les13
Les13Les13
Les13
 
Database models and DBMS languages
Database models and DBMS languagesDatabase models and DBMS languages
Database models and DBMS languages
 
Less08_Schema Advanced Databases and Management.pptx
Less08_Schema Advanced Databases and Management.pptxLess08_Schema Advanced Databases and Management.pptx
Less08_Schema Advanced Databases and Management.pptx
 
Oracle SQL Part1
Oracle SQL Part1Oracle SQL Part1
Oracle SQL Part1
 

More from Abrianto Nugraha (20)

01 pengantar sistem-pendukung_keputusan
01 pengantar sistem-pendukung_keputusan01 pengantar sistem-pendukung_keputusan
01 pengantar sistem-pendukung_keputusan
 
Pertemuan 7
Pertemuan 7Pertemuan 7
Pertemuan 7
 
Pertemuan 7 dan_8
Pertemuan 7 dan_8Pertemuan 7 dan_8
Pertemuan 7 dan_8
 
Pertemuan 5
Pertemuan 5Pertemuan 5
Pertemuan 5
 
Pertemuan 6
Pertemuan 6Pertemuan 6
Pertemuan 6
 
Pertemuan 4
Pertemuan 4Pertemuan 4
Pertemuan 4
 
Pertemuan 3
Pertemuan 3Pertemuan 3
Pertemuan 3
 
Pertemuan 2
Pertemuan 2Pertemuan 2
Pertemuan 2
 
Pertemuan 1
Pertemuan 1Pertemuan 1
Pertemuan 1
 
Modul 1 mengambil nilai parameter
Modul 1   mengambil nilai parameterModul 1   mengambil nilai parameter
Modul 1 mengambil nilai parameter
 
Modul 3 object oriented programming dalam php
Modul 3   object oriented programming dalam phpModul 3   object oriented programming dalam php
Modul 3 object oriented programming dalam php
 
Modul 2 menyimpan ke database
Modul 2  menyimpan ke databaseModul 2  menyimpan ke database
Modul 2 menyimpan ke database
 
Pbo 7
Pbo 7Pbo 7
Pbo 7
 
Pbo 6
Pbo 6Pbo 6
Pbo 6
 
Pbo 4
Pbo 4Pbo 4
Pbo 4
 
Pbo 3
Pbo 3Pbo 3
Pbo 3
 
Pemrograman berorientasi objek_1
Pemrograman berorientasi objek_1Pemrograman berorientasi objek_1
Pemrograman berorientasi objek_1
 
Pbo 2
Pbo 2Pbo 2
Pbo 2
 
Interaksi manusia-komputer
Interaksi manusia-komputerInteraksi manusia-komputer
Interaksi manusia-komputer
 
Interaksi manusia komputer 3
Interaksi manusia komputer 3Interaksi manusia komputer 3
Interaksi manusia komputer 3
 

Recently uploaded

The basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptxThe basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptx
heathfieldcps1
 

Recently uploaded (20)

Google Gemini An AI Revolution in Education.pptx
Google Gemini An AI Revolution in Education.pptxGoogle Gemini An AI Revolution in Education.pptx
Google Gemini An AI Revolution in Education.pptx
 
80 ĐỀ THI THỬ TUYỂN SINH TIẾNG ANH VÀO 10 SỞ GD – ĐT THÀNH PHỐ HỒ CHÍ MINH NĂ...
80 ĐỀ THI THỬ TUYỂN SINH TIẾNG ANH VÀO 10 SỞ GD – ĐT THÀNH PHỐ HỒ CHÍ MINH NĂ...80 ĐỀ THI THỬ TUYỂN SINH TIẾNG ANH VÀO 10 SỞ GD – ĐT THÀNH PHỐ HỒ CHÍ MINH NĂ...
80 ĐỀ THI THỬ TUYỂN SINH TIẾNG ANH VÀO 10 SỞ GD – ĐT THÀNH PHỐ HỒ CHÍ MINH NĂ...
 
How to Add New Custom Addons Path in Odoo 17
How to Add New Custom Addons Path in Odoo 17How to Add New Custom Addons Path in Odoo 17
How to Add New Custom Addons Path in Odoo 17
 
21st_Century_Skills_Framework_Final_Presentation_2.pptx
21st_Century_Skills_Framework_Final_Presentation_2.pptx21st_Century_Skills_Framework_Final_Presentation_2.pptx
21st_Century_Skills_Framework_Final_Presentation_2.pptx
 
Kodo Millet PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...
Kodo Millet  PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...Kodo Millet  PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...
Kodo Millet PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...
 
Interdisciplinary_Insights_Data_Collection_Methods.pptx
Interdisciplinary_Insights_Data_Collection_Methods.pptxInterdisciplinary_Insights_Data_Collection_Methods.pptx
Interdisciplinary_Insights_Data_Collection_Methods.pptx
 
How to Create and Manage Wizard in Odoo 17
How to Create and Manage Wizard in Odoo 17How to Create and Manage Wizard in Odoo 17
How to Create and Manage Wizard in Odoo 17
 
The basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptxThe basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptx
 
ICT role in 21st century education and it's challenges.
ICT role in 21st century education and it's challenges.ICT role in 21st century education and it's challenges.
ICT role in 21st century education and it's challenges.
 
Beyond_Borders_Understanding_Anime_and_Manga_Fandom_A_Comprehensive_Audience_...
Beyond_Borders_Understanding_Anime_and_Manga_Fandom_A_Comprehensive_Audience_...Beyond_Borders_Understanding_Anime_and_Manga_Fandom_A_Comprehensive_Audience_...
Beyond_Borders_Understanding_Anime_and_Manga_Fandom_A_Comprehensive_Audience_...
 
On National Teacher Day, meet the 2024-25 Kenan Fellows
On National Teacher Day, meet the 2024-25 Kenan FellowsOn National Teacher Day, meet the 2024-25 Kenan Fellows
On National Teacher Day, meet the 2024-25 Kenan Fellows
 
HMCS Max Bernays Pre-Deployment Brief (May 2024).pptx
HMCS Max Bernays Pre-Deployment Brief (May 2024).pptxHMCS Max Bernays Pre-Deployment Brief (May 2024).pptx
HMCS Max Bernays Pre-Deployment Brief (May 2024).pptx
 
How to setup Pycharm environment for Odoo 17.pptx
How to setup Pycharm environment for Odoo 17.pptxHow to setup Pycharm environment for Odoo 17.pptx
How to setup Pycharm environment for Odoo 17.pptx
 
Food safety_Challenges food safety laboratories_.pdf
Food safety_Challenges food safety laboratories_.pdfFood safety_Challenges food safety laboratories_.pdf
Food safety_Challenges food safety laboratories_.pdf
 
Jamworks pilot and AI at Jisc (20/03/2024)
Jamworks pilot and AI at Jisc (20/03/2024)Jamworks pilot and AI at Jisc (20/03/2024)
Jamworks pilot and AI at Jisc (20/03/2024)
 
ICT Role in 21st Century Education & its Challenges.pptx
ICT Role in 21st Century Education & its Challenges.pptxICT Role in 21st Century Education & its Challenges.pptx
ICT Role in 21st Century Education & its Challenges.pptx
 
Sensory_Experience_and_Emotional_Resonance_in_Gabriel_Okaras_The_Piano_and_Th...
Sensory_Experience_and_Emotional_Resonance_in_Gabriel_Okaras_The_Piano_and_Th...Sensory_Experience_and_Emotional_Resonance_in_Gabriel_Okaras_The_Piano_and_Th...
Sensory_Experience_and_Emotional_Resonance_in_Gabriel_Okaras_The_Piano_and_Th...
 
Basic Civil Engineering first year Notes- Chapter 4 Building.pptx
Basic Civil Engineering first year Notes- Chapter 4 Building.pptxBasic Civil Engineering first year Notes- Chapter 4 Building.pptx
Basic Civil Engineering first year Notes- Chapter 4 Building.pptx
 
Exploring_the_Narrative_Style_of_Amitav_Ghoshs_Gun_Island.pptx
Exploring_the_Narrative_Style_of_Amitav_Ghoshs_Gun_Island.pptxExploring_the_Narrative_Style_of_Amitav_Ghoshs_Gun_Island.pptx
Exploring_the_Narrative_Style_of_Amitav_Ghoshs_Gun_Island.pptx
 
COMMUNICATING NEGATIVE NEWS - APPROACHES .pptx
COMMUNICATING NEGATIVE NEWS - APPROACHES .pptxCOMMUNICATING NEGATIVE NEWS - APPROACHES .pptx
COMMUNICATING NEGATIVE NEWS - APPROACHES .pptx
 

Les11

  • 1. Copyright © 2004, Oracle. All rights reserved. Managing Objects with Data Dictionary Views
  • 2. Copyright © 2004, Oracle. All rights reserved. Objectives After completing this lesson, you should be able to do the following: • Use the data dictionary views to research data on your objects • Query various data dictionary views
  • 3. Copyright © 2004, Oracle. All rights reserved. The Data Dictionary Oracle server Tables containing business data: EMPLOYEES DEPARTMENTS LOCATIONS JOB_HISTORY ... Data dictionary views: DICTIONARY USER_OBJECTS USER_TABLES USER_TAB_COLUMNS ...
  • 4. Copyright © 2004, Oracle. All rights reserved. Data Dictionary Structure Oracle server Consists of: – Base tables – User-accessible views
  • 5. Copyright © 2004, Oracle. All rights reserved. Data Dictionary Structure View naming convention: Database administrator’s view (what is in everyone’s schemas) DBA Performance-related dataV$ User’s view (what is in your schema; what you own) USER Expanded user’s view (what you can access) ALL PurposeView Prefix
  • 6. Copyright © 2004, Oracle. All rights reserved. How to Use the Dictionary Views Start with DICTIONARY. It contains the names and descriptions of the dictionary tables and views. DESCRIBE DICTIONARY SELECT * FROM dictionary WHERE table_name = 'USER_OBJECTS';
  • 7. Copyright © 2004, Oracle. All rights reserved. USER_OBJECTS and ALL_OBJECTS Views USER_OBJECTS: • Query USER_OBJECTS to see all of the objects that are owned by you • Is a useful way to obtain a listing of all object names and types in your schema, plus the following information: – Date created – Date of last modification – Status (valid or invalid) ALL_OBJECTS: • Query ALL_OBJECTS to see all objects to which you have access
  • 8. Copyright © 2004, Oracle. All rights reserved. USER_OBJECTS View SELECT object_name, object_type, created, status FROM user_objects ORDER BY object_type; …
  • 9. Copyright © 2004, Oracle. All rights reserved. Table Information USER_TABLES: DESCRIBE user_tables SELECT table_name FROM user_tables; …
  • 10. Copyright © 2004, Oracle. All rights reserved. Column Information USER_TAB_COLUMNS: DESCRIBE user_tab_columns …
  • 11. Copyright © 2004, Oracle. All rights reserved. Column Information SELECT column_name, data_type, data_length, data_precision, data_scale, nullable FROM user_tab_columns WHERE table_name = 'EMPLOYEES';
  • 12. Copyright © 2004, Oracle. All rights reserved. Constraint Information • USER_CONSTRAINTS describes the constraint definitions on your tables. • USER_CONS_COLUMNS describes columns that are owned by you and that are specified in constraints. DESCRIBE user_constraints …
  • 13. Copyright © 2004, Oracle. All rights reserved. Constraint Information SELECT constraint_name, constraint_type, search_condition, r_constraint_name, delete_rule, status FROM user_constraints WHERE table_name = 'EMPLOYEES';
  • 14. Copyright © 2004, Oracle. All rights reserved. Constraint Information DESCRIBE user_cons_columns SELECT constraint_name, column_name FROM user_cons_columns WHERE table_name = 'EMPLOYEES'; …
  • 15. Copyright © 2004, Oracle. All rights reserved. View Information DESCRIBE user_views SELECT DISTINCT view_name FROM user_views; SELECT text FROM user_views WHERE view_name = 'EMP_DETAILS_VIEW'; 1 2 3
  • 16. Copyright © 2004, Oracle. All rights reserved. Sequence Information DESCRIBE user_sequences
  • 17. Copyright © 2004, Oracle. All rights reserved. Sequence Information • Verify your sequence values in the USER_SEQUENCES data dictionary table. • The LAST_NUMBER column displays the next available sequence number if NOCACHE is specified. SELECT sequence_name, min_value, max_value, increment_by, last_number FROM user_sequences;
  • 18. Copyright © 2004, Oracle. All rights reserved. Synonym Information DESCRIBE user_synonyms SELECT * FROM user_synonyms;
  • 19. Copyright © 2004, Oracle. All rights reserved. Adding Comments to a Table • You can add comments to a table or column by using the COMMENT statement: • Comments can be viewed through the data dictionary views: – ALL_COL_COMMENTS – USER_COL_COMMENTS – ALL_TAB_COMMENTS – USER_TAB_COMMENTS COMMENT ON TABLE employees IS 'Employee Information'; Comment created.
  • 20. Copyright © 2004, Oracle. All rights reserved. Summary In this lesson, you should have learned how to find information about your objects through the following dictionary views: • DICTIONARY • USER_OBJECTS • USER_TABLES • USER_TAB_COLUMNS • USER_CONSTRAINTS • USER_CONS_COLUMNS • USER_VIEWS • USER_SEQUENCES • USER_TAB_SYNONYMS
  • 21. Copyright © 2004, Oracle. All rights reserved. Practice 11: Overview This practice covers the following topics: • Querying the dictionary views for table and column information • Querying the dictionary views for constraint information • Querying the dictionary views for view information • Querying the dictionary views for sequence information • Querying the dictionary views for synonym information • Adding a comment to a table and querying the dictionary views for comment information