This Study Resource Was: Database Programming With PL/SQL 9-3: Practice Activities
This Study Resource Was: Database Programming With PL/SQL 9-3: Practice Activities
com/academy
m
er as
Contain information about objects which you have privileges to
ALL_* TABLES use.
co
eH w
A catalog of all database objects contained in an Oracle
o.
DATA DICTIONARY database.
rs e
ou urc
USER_* TABLES Contain information about objects you own.
o
Try It / Solve It
aC s
vi y re
2. List the three different classes of Data Dictionary views, and state what kind of
information is shown by each class.
is
- User_procedures
Th
Procedimientos hechos
- User_source
sh
- User_tables
Descripción de tablas
This study source was downloaded by 100000822525108 from CourseHero.com on 04-29-2021 09:43:08 GMT -05:00
https://www.coursehero.com/file/42753233/PLSQL-9-3-Practice-1630123pdf/
3. Write and execute a SELECT statement that lists all the stored objects you have created
in your account so far. The query should return the object name, its type, and its status.
Order the output by type of object.
4. Modify the query from question 3 to show only functions and procedures to which you
have access. Add the owner of the object to display in the results.
SELECT sequence_name,sequence_owner
m
FROM all_sequences;
er as
co
eH w
5. What is DICT and why is it useful?
o.
rs e
Super vista que muesra todas las tablas del diccionario
ou urc
6. Write and execute a suitable SELECT…FROM DICT… statement to list dictionary views
o
SELECT *
FROM DICT
WHERE table_name LIKE 'USER%VIEW%';
ed d
ar stu
is
Th
sh
This study source was downloaded by 100000822525108 from CourseHero.com on 04-29-2021 09:43:08 GMT -05:00
https://www.coursehero.com/file/42753233/PLSQL-9-3-Practice-1630123pdf/
Powered by TCPDF (www.tcpdf.org)