The document discusses additional database objects in Oracle 12c including sequences, indexes, and synonyms. Sequences are used to generate sequential integers and have options like start value and caching. Indexes like B-tree indexes improve query performance. Synonyms create aliases for database objects. The document provides examples and explanations of creating, altering, and removing these objects.
Download as PPT, PDF, TXT or read online on Scribd
0 ratings0% found this document useful (0 votes)
35 views
Oracle 12c: SQL: Additional Database Objects
The document discusses additional database objects in Oracle 12c including sequences, indexes, and synonyms. Sequences are used to generate sequential integers and have options like start value and caching. Indexes like B-tree indexes improve query performance. Synonyms create aliases for database objects. The document provides examples and explanations of creating, altering, and removing these objects.
Objectives • Define the purpose of a sequence and state how it can be used in a database • Explain why gaps may appear in the integers generated by a sequence • Use the CREATE SEQUENCE command to create a sequence • Call and use sequence values • Identify which options cannot be changed by the ALTER SEQUENCE command • Delete a sequence
• Explain the main index structures: B-tree and bitmap • Verify index use with the explain plan • Introduce variations on conventional indexes, including a function-based index and an index organized table
Database Objects • An object is anything that has a name and defined structure • Includes: – Table – stores data – Sequence – generates sequential integers – Index – allows users to quickly locate specific records – Synonym – alias for other database objects
sequence and MAXVALUE for increasing sequence • Numbers can be reused if CYCLE is specified • ORDER clause is used in application cluster environment • Use CACHE to pregenerate integers – Default: 20
Index Organized Tables • An IOT stores table contents in a B-tree index structure • Use the “ORGANIZATION INDEX” option in a CREATE TABLE statement to build an IOT
database objects • Simplify object references • Can be private or public – Private synonyms are only available to the user who created them – PUBLIC synonyms are available to all database users
Summary • A sequence can be created to generate a series of integers • The values generated by a sequence can be stored in any table • A sequence is created with the CREATE SEQUENCE command • Gaps in sequences might occur if the values are stored in various tables, if numbers are cached but not used, or if a rollback occurs • A value is generated by using the NEXTVAL pseudocolumn • The CURRVAL pseudocolumn is NULL until a value is generated by NEXTVAL • The USER_OBJECTS data dictionary object can be used to confirm the existence of all schema objects • The USER_SEQUENCES data dictionary object is used to view sequence settings • A sequence may be set as a column DEFAULT value • An identity column can be created to manage primary key population as an alternative to using sequences
Summary (continued) • Except for a name change, an index can’t be modified; it must be deleted and then re-created • A synonym provides a permanent alias for a database object • A public synonym is available to any database user • A private synonym is available only to the user who created it • A synonym is created by using the CREATE SYNONYM command • A synonym is deleted by using the DROP SYNONYM command • Only a user with DBA privileges can drop a public synonym