Which types of object is stored in database and can be created and manipulated with SQL but not contained in schema?

Options
- Clusters, Tables
- Profiles, Directories
- Synonyms, Views
- Sequences


CORRECT ANSWER : Profiles, Directories

Discussion Board
Schema object

A schema is a collection of logical structures of data, or schema objects. A schema is owned by a database user and has the same name as that user. Each user owns a single schema. Other types of objects are also stored in the database and can be created and manipulated with SQL but are not contained in a schema:
- Contexts
- Directories
- Profiles
- Roles
- Tablespaces
- Users
- Rollback segments
Schema objects are logical data storage structures. Schema objects do not have a one-to-one correspondence to physical files on disk that store their information. However, Oracle stores a schema object logically within a tablespace of the database. The data of each object is physically contained in one or more of the tablespace's datafiles. For some objects, such as tables, indexes, and clusters, you can specify how much disk space Oracle allocates for the object within the tablespace's datafiles. There is no relationship between schemas and tablespaces: a tablespace can contain objects from different schemas, and the objects for a schema can be contained in different tablespaces.

Prajakta Pandit 02-24-2017 01:14 AM

Write your comments


Enter the code shown above:

(Note: If you cannot read the numbers in the above image, reload the page to generate a new one.)


Advertisement