This chapter provides an introduction to schema objects and discusses tables, which are the most common types of schema objects.
This chapter contains the following sections:
A database schema is a logical container for data structures, called schema objects. Examples of schema objects are tables and indexes. You create and manipulate schema objects with SQL.
A database user account has a password and specific database privileges. Each user account owns a single schema, which has the same name as the user. The schema contains the data for the user owning the schema. For example, the hr
user account owns the hr
schema, which contains schema objects such as the employees
table. In a production database, the schema owner usually represents a database application rather than a person.
Within a schema, each schema object of a particular type has a unique name. For example, hr.employees
refers to the table employees
in the hr
schema. Figure 2-1 depicts a schema owner named hr
and schema objects within the hr
schema.
This section contains the following topics:
See Also:
"Overview of Database Security" to learn more about users and privileges
Oracle SQL enables you to create and manipulate many other types of schema objects.
The principal types of schema objects are:
Tables
A table stores data in rows. Tables are the most important schema objects in a relational database.
Indexes
Indexes are schema objects that contain an entry for each indexed row of the table or table cluster and provide direct, fast access to rows. Oracle Database supports several types of index. An index-organized table is a table in which the data is stored in an index structure.
Partitions
Partitions are pieces of large tables and indexes. Each partition has its own name and may optionally have its own storage characteristics.
Views
Views are customized presentations of data in one or more tables or other views. You can think of them as stored queries. Views do not actually contain data.
Sequences
A sequence is a user-created object that can be shared by multiple users to generate integers. Typically, you use sequences to generate primary key values.
Dimensions
A dimension defines a parent-child relationship between pairs of column sets, where all the columns of a column set must come from the same table. Dimensions are commonly used to categorize data such as customers, products, and time.
Synonyms
A synonym is an alias for another schema object. Because a synonym is simply an alias, it requires no storage other than its definition in the data dictionary.
PL/SQL subprograms and packages
PL/SQL is the Oracle procedural extension of SQL. A PL/SQL subprogram is a named PL/SQL block that can be invoked with a set of parameters. A PL/SQL package groups logically related PL/SQL types, variables, and subprograms.
Other types of objects are also stored in the database and can be created and manipulated with SQL statements but are not contained in a schema. These objects include database user account, roles, contexts, and dictionary objects.
See Also:
Oracle Database Administrator's Guide to learn how to manage schema objects
Oracle Database SQL Language Reference for more about schema objects and database objects
Some schema objects store data in a type of logical storage structure called a segment. For example, a nonpartitioned heap-organized table or an index creates a segment.
Other schema objects, such as views and sequences, consist of metadata only. This topic describes only schema objects that have segments.
Oracle Database stores a schema object logically within a tablespace. 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. The data of each object is physically contained in one or more data files.
The following figure shows a possible configuration of table and index segments, tablespaces, and data files. The data segment for one table spans two data files, which are both part of the same tablespace. A segment cannot span multiple tablespaces.
Figure 2-2 Segments, Tablespaces, and Data Files
See Also:
"Logical Storage Structures" to learn about tablespaces and segments
Oracle Database Administrator’s Guide to learn how to manage storage for schema objects
Oracle Database provides an automatic mechanism to ensure that a dependent object is always up to date with respect to its referenced objects. When you create a dependent object, the database tracks dependencies between the dependent object and its referenced objects. When a referenced object changes in a way that might affect a dependent object, the database marks the dependent object invalid. For example, if a user drops a table, no view based on the dropped table is usable.
An invalid dependent object must be recompiled against the new definition of a referenced object before the dependent object is usable. Recompilation occurs automatically when the invalid dependent object is referenced.
As an illustration of how schema objects can create dependencies, the following sample script creates a table test_table
and then a procedure that queries this table:
CREATE TABLE test_table ( col1 INTEGER, col2 INTEGER ); CREATE OR REPLACE PROCEDURE test_proc AS BEGIN FOR x IN ( SELECT col1, col2 FROM test_table ) LOOP -- process data NULL; END LOOP; END; /
The following query of the status of procedure test_proc
shows that it is valid:
SQL> SELECT OBJECT_NAME, STATUS FROM USER_OBJECTS WHERE OBJECT_NAME = 'TEST_PROC'; OBJECT_NAME STATUS ----------- ------- TEST_PROC VALID
After adding the col3
column to test_table
, the procedure is still valid because the procedure has no dependencies on this column:
SQL> ALTER TABLE test_table ADD col3 NUMBER; Table altered. SQL> SELECT OBJECT_NAME, STATUS FROM USER_OBJECTS WHERE OBJECT_NAME = 'TEST_PROC'; OBJECT_NAME STATUS ----------- ------- TEST_PROC VALID
However, changing the data type of the col1
column, which the test_proc
procedure depends on in, invalidates the procedure:
SQL> ALTER TABLE test_table MODIFY col1 VARCHAR2(20); Table altered. SQL> SELECT OBJECT_NAME, STATUS FROM USER_OBJECTS WHERE OBJECT_NAME = 'TEST_PROC'; OBJECT_NAME STATUS ----------- ------- TEST_PROC INVALID
Running or recompiling the procedure makes it valid again, as shown in the following example:
SQL> EXECUTE test_proc PL/SQL procedure successfully completed. SQL> SELECT OBJECT_NAME, STATUS FROM USER_OBJECTS WHERE OBJECT_NAME = 'TEST_PROC'; OBJECT_NAME STATUS ----------- ------- TEST_PROC VALID
See Also:
Oracle Database Administrator's Guide and Oracle Database Development Guide to learn how to manage schema object dependencies
All Oracle databases include default administrative accounts. Administrative accounts are highly privileged and are intended only for DBAs authorized to perform tasks such as starting and stopping the database, managing memory and storage, creating and managing database users, and so on.
The SYS
administrative account is automatically created when a database is created. This account can perform all database administrative functions. The SYS
schema stores the base tables and views for the data dictionary. These base tables and views are critical for the operation of Oracle Database. Tables in the SYS
schema are manipulated only by the database and must never be modified by any user.
The SYSTEM
administrative account is also automatically created when a database is created. The SYSTEM
schema stores additional tables and views that display administrative information, and internal tables and views used by various Oracle Database options and tools. Never use the SYSTEM
schema to store tables of interest to nonadministrative users.
See Also:
"User Accounts" and "Connection with Administrator Privileges"
Oracle Database Administrator's Guide to learn about SYS
, SYSTEM
, and other administrative accounts
An Oracle database may include sample schemas, which are a set of interlinked schemas that enable Oracle documentation and Oracle instructional materials to illustrate common database tasks. The hr
schema is a sample schema that contains information about employees, departments and locations, work histories, and so on.
Figure 2-3 is an entity-relationship diagram of the tables in the hr
schema. Most examples in this manual use objects from this schema.
See Also:
A table is the basic unit of data organization in an Oracle database. A table describes an entity, which is something of significance about which information must be recorded. For example, an employee could be an entity.
Oracle Database tables fall into the following basic categories:
Relational tables
Relational tables have simple columns and are the most common table type. Example 2-1 shows a CREATE TABLE
statement for a relational table.
Object tables
The columns correspond to the top-level attributes of an object type. See "Overview of Object Tables".
You can create a relational table with the following organizational characteristics:
A heap-organized table does not store rows in any particular order. The CREATE TABLE
statement creates a heap-organized table by default.
An index-organized table orders rows according to the primary key values. For some applications, index-organized tables enhance performance and use disk space more efficiently. See "Overview of Index-Organized Tables".
An external table is a read-only table whose metadata is stored in the database but whose data is stored outside the database. See "Overview of External Tables".
A table is either permanent or temporary. A permanent table definition and data persist across sessions. A temporary table definition persists in the same way as a permanent table definition, but the data exists only for the duration of a transaction or session. Temporary tables are useful in applications where a result set must be held temporarily, perhaps because the result is constructed by running multiple operations.
This topic contains the following topics:
See Also:
Oracle Database Administrator's Guide to learn how to manage tables
employee_id
in the employees
table refers to the employee ID attribute of an employee entity.In general, you give each column a column name, a data type, and a width when you create a table. For example, the data type for employee_id
is NUMBER(6)
, indicating that this column can only contain numeric data up to 6 digits in width. The width can be predetermined by the data type, as with DATE
.
A table can contain a virtual column, which unlike a nonvirtual column does not consume disk space. The database derives the values in a virtual column on demand by computing a set of user-specified expressions or functions. For example, the virtual column income
could be a function of the salary
and commission_pct
columns.
See Also:
Oracle Database Administrator's Guide to learn how to manage virtual columns
An invisible column is a user-specified column whose values are only visible when the column is explicitly specified by name. You can add an invisible column to a table without affecting existing applications, and make the column visible if necessary.
In general, invisible columns help migrate and evolve online applications. A use case might be an application that queries a three-column table with a SELECT *
statement. Adding a fourth column to the table would break the application, which expects three columns of data. Adding a fourth invisible column makes the application function normally. A developer can then alter the application to handle a fourth column, and make the column visible when the application goes live.
The following example creates a table products
with an invisible column count
, and then makes the invisible column visible:
CREATE TABLE products ( prod_id INT, count INT INVISIBLE ); ALTER TABLE products MODIFY ( count VISIBLE );
See Also:
Oracle Database Administrator's Guide to learn how to manage invisible columns
Oracle Database SQL Language Reference for more information about invisible columns
A row is a collection of column information corresponding to a record in a table. For example, a row in the employees
table describes the attributes of a specific employee: employee ID, last name, first name, and so on. After you create a table, you can insert, query, delete, and update rows using SQL.
The Oracle SQL statement to create a table is CREATE TABLE
.
The following example shows the CREATE TABLE
statement for the employees
table in the hr
sample schema. The statement specifies columns such as employee_id
, first_name
, and so on, specifying a data type such as NUMBER
or DATE
for each column.
Example 2-1 CREATE TABLE employees
CREATE TABLE employees ( employee_id NUMBER(6) , first_name VARCHAR2(20) , last_name VARCHAR2(25) CONSTRAINT emp_last_name_nn NOT NULL , email VARCHAR2(25) CONSTRAINT emp_email_nn NOT NULL , phone_number VARCHAR2(20) , hire_date DATE CONSTRAINT emp_hire_date_nn NOT NULL , job_id VARCHAR2(10) CONSTRAINT emp_job_nn NOT NULL , salary NUMBER(8,2) , commission_pct NUMBER(2,2) , manager_id NUMBER(6) , department_id NUMBER(4) , CONSTRAINT emp_salary_min CHECK (salary > 0) , CONSTRAINT emp_email_uk UNIQUE (email) ) ;
The following example shows an ALTER TABLE
statement that adds integrity constraints to the employees
table. Integrity constraints enforce business rules and prevent the entry of invalid information into tables.
Example 2-2 ALTER TABLE employees
ALTER TABLE employees ADD ( CONSTRAINT emp_emp_id_pk PRIMARY KEY (employee_id) , CONSTRAINT emp_dept_fk FOREIGN KEY (department_id) REFERENCES departments , CONSTRAINT emp_job_fk FOREIGN KEY (job_id) REFERENCES jobs (job_id) , CONSTRAINT emp_manager_fk FOREIGN KEY (manager_id) REFERENCES employees ) ;
The following sample output shows 8 rows and 6 columns of the hr.employees
table.
Example 2-3 Rows in the employees Table
EMPLOYEE_ID FIRST_NAME LAST_NAME SALARY COMMISSION_PCT DEPARTMENT_ID ----------- ----------- ------------- ------- -------------- ------------- 100 Steven King 24000 90 101 Neena Kochhar 17000 90 102 Lex De Haan 17000 90 103 Alexander Hunold 9000 60 107 Diana Lorentz 4200 60 149 Eleni Zlotkey 10500 .2 80 174 Ellen Abel 11000 .3 80 178 Kimberely Grant 7000 .15
The output in Example 2-3 illustrates some of the following important characteristics of tables, columns, and rows:
A row of the table describes the attributes of one employee: name, salary, department, and so on. For example, the first row in the output shows the record for the employee named Steven King.
A column describes an attribute of the employee. In the example, the employee_id
column is the primary key, which means that every employee is uniquely identified by employee ID. Any two employees are guaranteed not to have the same employee ID.
A non-key column can contain rows with identical values. In the example, the salary value for employees 101 and 102 is the same: 17000
.
A foreign key column refers to a primary or unique key in the same table or a different table. In this example, the value of 90
in department_id
corresponds to the department_id
column of the departments
table.
A field is the intersection of a row and column. It can contain only one value. For example, the field for the department ID of employee 103 contains the value 60
.
A field can lack a value. In this case, the field is said to contain a null value. The value of the commission_pct
column for employee 100 is null, whereas the value in the field for employee 149 is .2
. A column allows nulls unless a NOT
NULL
or primary key integrity constraint has been defined on this column, in which case no row can be inserted without a value for this column.
See Also:
Oracle Database SQL Tuning Guide for CREATE TABLE
syntax and semantics
Each column has a data type, which is associated with a specific storage format, constraints, and valid range of values. The data type of a value associates a fixed set of properties with the value.
These properties cause Oracle Database to treat values of one data type differently from values of another. For example, you can multiply values of the NUMBER
data type, but not values of the RAW
data type.
When you create a table, you must specify a data type for each of its columns. Each value subsequently inserted in a column assumes the column data type.
Oracle Database provides several built-in data types. The most commonly used data types fall into the following categories:
Other important categories of built-in types include raw, large objects (LOBs), and collections. PL/SQL has data types for constants and variables, which include BOOLEAN
, reference types, composite types (records), and user-defined types.
See Also:
Oracle Database SQL Language Reference to learn about built-in SQL data types
Oracle Database PL/SQL Packages and Types Reference to learn about PL/SQL data types
Oracle Database Development Guide to learn how to use the built-in data types
Character data types store alphanumeric data in strings. The most common character data type is VARCHAR2
, which is the most efficient option for storing character data.
The byte values correspond to the character encoding scheme, generally called a character set. The database character set is established at database creation. Examples of character sets are 7-bit ASCII, EBCDIC, and Unicode UTF-8.
The length semantics of character data types are measurable in bytes or characters. The treatment of strings as a sequence of bytes is called byte semantics. This is the default for character data types. The treatment of strings as a sequence of characters is called character semantics. A character is a code point of the database character set.
See Also:
Oracle Database 2 Day Developer's Guide and Oracle Database Development Guide and to learn how to select a character data type
VARCHAR2
data type stores variable-length character literals. A literal is a fixed data value. For example, 'LILA'
, 'St. George Island'
, and '101'
are all character literals; 5001
is a numeric literal. Character literals are enclosed in single quotation marks so that the database can distinguish them from schema object names.Note:
This manual uses the terms text literal, character literal, and string interchangeably.
When you create a table with a VARCHAR2
column, you specify a maximum string length. In Example 2-1, the last_name
column has a data type of VARCHAR2(25)
, which means that any name stored in the column has a maximum of 25 bytes.
For each row, Oracle Database stores each value in the column as a variable-length field unless a value exceeds the maximum length, in which case the database returns an error. For example, in a single-byte character set, if you enter 10 characters for thelast_name
column value in a row, then the column in the row piece stores only 10 characters (10 bytes), not 25. Using VARCHAR2
reduces space consumption.
In contrast to VARCHAR2
, CHAR
stores fixed-length character strings. When you create a table with a CHAR
column, the column requires a string length. The default is 1 byte. The database uses blanks to pad the value to the specified length.
Oracle Database compares VARCHAR2
values using nonpadded comparison semantics and compares CHAR
values using blank-padded comparison semantics.
See Also:
Oracle Database SQL Language Reference for details about blank-padded and nonpadded comparison semantics
NCHAR
and NVARCHAR2
data types store Unicode character data. Unicode is a universal encoded character set that can store information in any language using a single character set. NCHAR
stores fixed-length character strings that correspond to the national character set, whereas NVARCHAR2
stores variable length character strings.You specify a national character set when creating a database. The character set of NCHAR
and NVARCHAR2
data types must be either AL16UTF16
or UTF8
. Both character sets use Unicode encoding.
When you create a table with an NCHAR
or NVARCHAR2
column, the maximum size is always in character length semantics. Character length semantics is the default and only length semantics for NCHAR
or NVARCHAR2
.
See Also:
Oracle Database Globalization Support Guide for information about Oracle's globalization support feature
The Oracle Database numeric data types store fixed and floating-point numbers, zero, and infinity. Some numeric types also store values that are the undefined result of an operation, which is known as "not a number" or NaN
.
Oracle Database stores numeric data in variable-length format. Each value is stored in scientific notation, with 1 byte used to store the exponent. The database uses up to 20 bytes to store the mantissa, which is the part of a floating-point number that contains its significant digits. Oracle Database does not store leading and trailing zeros.
The NUMBER
data type stores fixed and floating-point numbers. The database can store numbers of virtually any magnitude. This data is guaranteed to be portable among different operating systems running Oracle Database. The NUMBER
data type is recommended for most cases in which you must store numeric data.
You specify a fixed-point number in the form NUMBER
(
p
,
s
)
, where p
and s
refer to the following characteristics:
Precision
The precision specifies the total number of digits. If a precision is not specified, then the column stores the values exactly as provided by the application without any rounding.
Scale
The scale specifies the number of digits from the decimal point to the least significant digit. Positive scale counts digits to the right of the decimal point up to and including the least significant digit. Negative scale counts digits to the left of the decimal point up to but not including the least significant digit. If you specify a precision without a scale, as in NUMBER(6)
, then the scale is 0.
In Example 2-1, the salary
column is type NUMBER(8,2)
, so the precision is 8 and the scale is 2. Thus, the database stores a salary of 100,000 as 100000.00
.
Oracle Database provides two numeric data types exclusively for floating-point numbers: BINARY_FLOAT
and BINARY_DOUBLE
. These types support all of the basic functionality provided by the NUMBER
data type. However, whereas NUMBER
uses decimal precision, BINARY_FLOAT
and BINARY_DOUBLE
use binary precision, which enables faster arithmetic calculations and usually reduces storage requirements.
BINARY_FLOAT
and BINARY_DOUBLE
are approximate numeric data types. They store approximate representations of decimal values, rather than exact representations. For example, the value 0.1 cannot be exactly represented by either BINARY_DOUBLE
or BINARY_FLOAT
. They are frequently used for scientific computations. Their behavior is similar to the data types FLOAT
and DOUBLE
in Java and XMLSchema.
See Also:
Oracle Database SQL Language Reference to learn about precision, scale, and other characteristics of numeric types
The datetime data types are DATE
and TIMESTAMP
. Oracle Database provides comprehensive time zone support for time stamps.
The DATE
data type stores date and time. Although datetimes can be represented in character or number data types, DATE
has special associated properties.
The database stores dates internally as numbers. Dates are stored in fixed-length fields of 7 bytes each, corresponding to century, year, month, day, hour, minute, and second.
Note:
Dates fully support arithmetic operations, so you add to and subtract from dates just as you can with numbers. See Oracle Database Development Guide.
The database displays dates according to the specified format model. A format model is a character literal that describes the format of a datetime in a character string. The standard date format is DD-MON-RR
, which displays dates in the form 01-JAN-11
.
RR
is similar to YY
(the last two digits of the year), but the century of the return value varies according to the specified two-digit year and the last two digits of the current year. Assume that in 1999 the database displays 01-JAN-11
. If the date format uses RR
, then 11
specifies 2011
, whereas if the format uses YY
, then 11
specifies 1911
. You can change the default date format at both the database instance and session level.
Oracle Database stores time in 24-hour format—HH:MI:SS
. If no time portion is entered, then by default the time in a date field is 00:00:00 A.M
. In a time-only entry, the date portion defaults to the first day of the current month.
See Also:
Oracle Database Development Guide for more information about centuries and date format masks
Oracle Database SQL Language Reference for information about datetime format codes
The TIMESTAMP
data type is an extension of the DATE
data type. It stores fractional seconds in addition to the information stored in the DATE
data type. The TIMESTAMP
data type is useful for storing precise time values, such as in applications that must track event order.
The DATETIME
data types TIMESTAMP WITH TIME ZONE
and TIMESTAMP WITH LOCAL TIME ZONE
are time-zone aware. When a user selects the data, the value is adjusted to the time zone of the user session. This data type is useful for collecting and evaluating date information across geographic regions.
See Also:
Oracle Database SQL Language Reference for details about the syntax of creating and entering data in time stamp columns
Every row stored in the database has an address. Oracle Database uses a ROWID
data type to store the address (rowid) of every row in the database.
Rowids fall into the following categories:
Physical rowids store the addresses of rows in heap-organized tables, table clusters, and table and index partitions.
Logical rowids store the addresses of rows in index-organized tables.
Foreign rowids are identifiers in foreign tables, such as DB2 tables accessed through a gateway. They are not standard Oracle Database rowids.
A data type called the universal rowid, or urowid, supports all types of rowids.
End users and application developers can also use rowids for several important functions:
Rowids are the fastest means of accessing particular rows.
Rowids provide the ability to see how a table is organized.
Rowids are unique identifiers for rows in a given table.
You can also create tables with columns defined using the ROWID
data type. For example, you can define an exception table with a column of data type ROWID
to store the rowids of rows that violate integrity constraints. Columns defined using the ROWID
data type behave like other table columns: values can be updated, and so on.
ROWID
. A pseudocolumn behaves like a table column, but is not actually stored in the table. You can select from pseudocolumns, but you cannot insert, update, or delete their values. A pseudocolumn is also similar to a SQL function without arguments. Functions without arguments typically return the same value for every row in the result set, whereas pseudocolumns typically return a different value for each row.Values of the ROWID
pseudocolumn are strings representing the address of each row. These strings have the data type ROWID
. This pseudocolumn is not evident when listing the structure of a table by executing SELECT
or DESCRIBE
, nor does the pseudocolumn consume space. However, the rowid of each row can be retrieved with a SQL query using the reserved word ROWID
as a column name.
The following example queries the ROWID
pseudocolumn to show the rowid of the row in the employees
table for employee 100:
SQL> SELECT ROWID FROM employees WHERE employee_id = 100; ROWID ------------------ AAAPecAAFAAAABSAAA
See Also:
Oracle Database Development Guide to learn how to identify rows by address
Oracle Database SQL Language Reference to learn about rowid types
A format model is a character literal that describes the format of datetime or numeric data stored in a character string. A format model does not change the internal representation of the value in the database.
When you convert a character string into a date or number, a format model determines how the database interprets the string. In SQL, you can use a format model as an argument of the TO_CHAR
and TO_DATE
functions to format a value to be returned from the database or to format a value to be stored in the database.
The following statement selects the salaries of the employees in Department 80 and uses the TO_CHAR
function to convert these salaries into character values with the format specified by the number format model '$99,990.99'
:
SQL> SELECT last_name employee, TO_CHAR(salary, '$99,990.99') AS "SALARY" 2 FROM employees 3 WHERE department_id = 80 AND last_name = 'Russell'; EMPLOYEE SALARY ------------------------- ----------- Russell $14,000.00
The following example updates a hire date using the TO_DATE
function with the format mask 'YYYY MM DD'
to convert the string '1998 05 20'
to a DATE
value:
SQL> UPDATE employees 2 SET hire_date = TO_DATE('1998 05 20','YYYY MM DD') 3 WHERE last_name = 'Hunold';
See Also:
Oracle Database SQL Language Reference to learn more about format models
An integrity constraint is a named rule that restrict the values for one or more columns in a table. These rules prevent invalid data entry into tables. Also, constraints can prevent the deletion of a table when certain dependencies exist.
If a constraint is enabled, then the database checks data as it is entered or updated. Oracle Database prevents data that does not conform to the constraint from being entered. If a constraint is disabled, then Oracle Database allows data that does not conform to the constraint to enter the database.
In Example 2-1, the CREATE TABLE
statement specifies NOT NULL
constraints for the last_name
, email
, hire_date
, and job_id
columns. The constraint clauses identify the columns and the conditions of the constraint. These constraints ensure that the specified columns contain no null values. For example, an attempt to insert a new employee without a job ID generates an error.
You can create a constraint when or after you create a table. You can temporarily disable constraints if needed. The database stores constraints in the data dictionary.
See Also:
Data Integrity to learn about integrity constraints
Overview of the Data Dictionary to learn about the data dictionary
Oracle Database SQL Language Reference to learn about SQL constraint clauses
CREATE TABLE
statement.By default, a table is organized as a heap, which means that the database places rows where they fit best rather than in a user-specified order. Thus, a heap-organized table is an unordered collection of rows. As users add rows, the database places the rows in the first available free space in the data segment. Rows are not guaranteed to be retrieved in the order in which they were inserted.
Note:
Index-organized tables use a different principle of organization. See "Overview of Index-Organized Tables".
The hr.departments
table is a heap-organized table. It has columns for department ID, name, manager ID, and location ID. As rows are inserted, the database stores them wherever they fit. A data block in the table segment might contain the unordered rows shown in the following example:
50,Shipping,121,1500 120,Treasury,,1700 70,Public Relations,204,2700 30,Purchasing,114,1700 130,Corporate Tax,,1700 10,Administration,200,1700 110,Accounting,205,1700
The column order is the same for all rows in a table. The database usually stores columns in the order in which they were listed in the CREATE TABLE
statement, but this order is not guaranteed. For example, if a table has a column of type LONG
, then Oracle Database always stores this column last in the row. Also, if you add a new column to a table, then the new column becomes the last column stored.
A table can contain a virtual column, which unlike normal columns does not consume space on disk. The database derives the values in a virtual column on demand by computing a set of user-specified expressions or functions. You can index virtual columns, collect statistics on them, and create integrity constraints. Thus, virtual columns are much like nonvirtual columns.
See Also:
Oracle Database SQL Language Reference to learn about virtual columns
The database stores rows in data blocks. Each row of a table containing data for less than 256 columns is contained in one or more row pieces.
If possible, Oracle Database stores each row as one row piece. However, if all of the row data cannot be inserted into a single data block, or if an update to an existing row causes the row to outgrow its data block, then the database stores the row using multiple row pieces (see "Data Block Format").
Rows in a table cluster contain the same information as rows in nonclustered tables. Additionally, rows in a table cluster contain information that references the cluster key to which they belong.
Oracle Database uses rowids internally for the construction of indexes. For example, each key in a B-tree index is associated with a rowid that points to the address of the associated row for fast access (see "Overview of B-Tree Indexes"). Physical rowids provide the fastest possible access to a table row, enabling the database to retrieve a row in as little as a single I/O.
See Also:
A null is the absence of a value in a column. Nulls indicate missing, unknown, or inapplicable data.
Nulls are stored in the database if they fall between columns with data values. In these cases, they require 1 byte to store the length of the column (zero). Trailing nulls in a row require no storage because a new row header signals that the remaining columns in the previous row are null. For example, if the last three columns of a table are null, then no data is stored for these columns.
See Also:
Oracle Database SQL Language Reference to learn more about null values
The database can use table compression to reduce the amount of storage required for the table. Compression saves disk space, reduces memory use in the database buffer cache, and in some cases speeds query execution. Table compression is transparent to database applications.
Dictionary-based table compression provides good compression ratios for heap-organized tables.
Oracle Database supports the following types of dictionary-based table compression:
Basic table compression
This type of compression is intended for bulk load operations. The database does not compress data modified using conventional DML. You must use direct path INSERT operations, ALTER TABLE . . . MOVE
operations, or online table redefinition to achieve basic table compression.
Advanced row compression
This type of compression is intended for OLTP applications and compresses data manipulated by any SQL operation.
For the preceding types of compression, the database stores compressed rows in row major format. All columns of one row are stored together, followed by all columns of the next row, and so on (see Figure 12-7). The database replaces duplicate values with a short reference to a symbol table stored at the beginning of the block. Thus, information that the database needs to re-create the uncompressed data is stored in the data block itself.
Compressed data blocks look much like normal data blocks. Most database features and functions that work on regular data blocks also work on compressed blocks.
You can declare compression at the tablespace, table, partition, or subpartition level. If specified at the tablespace level, then all tables created in the tablespace are compressed by default. The following statement applies advanced row compression to the orders
table:
ALTER TABLE oe.orders ROW STORE COMPRESS ADVANCED;
The following example of a partial CREATE TABLE
statement specifies advanced row compression for one partition and basic table compression for the other partition:
CREATE TABLE sales ( prod_id NUMBER NOT NULL, cust_id NUMBER NOT NULL, ... ) PCTFREE 5 NOLOGGING NOCOMPRESS PARTITION BY RANGE (time_id) ( partition sales_2013 VALUES LESS THAN(TO_DATE(...)) ROW STORE COMPRESS BASIC, partition sales_2014 VALUES LESS THAN (MAXVALUE) ROW STORE COMPRESS ADVANCED );
See Also:
"Data Block Compression" to learn about the format of compressed data blocks
"SQL*Loader" to learn about using SQL*Loader for direct path loads
Oracle Database Administrator's Guide and Oracle Database Performance Tuning Guide to learn about table compression
With Hybrid Columnar Compression, the database stores the same column for a group of rows together. The data block does not store data in row-major format, but uses a combination of both row and columnar methods.
Storing column data together, with the same data type and similar characteristics, dramatically increases the storage savings achieved from compression. The database compresses data manipulated by any SQL operation, although compression levels are higher for direct path loads. Database operations work transparently against compressed objects, so no application changes are required.
Note:
Hybrid Column Compression and In-Memory Column Store (IM column store) are closely related (see "In-Memory Column Store"). The primary difference is that Hybrid Column Compression optimizes disk storage, whereas the IM column store optimizes memory storage.
If your underlying storage supports Hybrid Columnar Compression, then you can specify different types of compression, depending on your requirements.
The compression options are:
Warehouse compression
This type of compression is optimized to save storage space, and is intended for data warehouse applications.
Online archival compression
This type of compression is optimized for maximum compression levels, and is intended for historical data and data that does not change.
To achieve warehouse or online archival compression, you must use direct path loads, ALTER TABLE . . . MOVE
operations, or online table redefinition.
Hybrid Columnar Compression is optimized for Data Warehousing and decision support applications on Oracle Exadata storage. Oracle Exadata maximizes the performance of queries on tables that are compressed using Hybrid Columnar Compression, taking advantage of the processing power, memory, and Infiniband network bandwidth that are integral to the Oracle Exadata storage server.
Other Oracle storage systems support Hybrid Columnar Compression, and deliver the same space savings as on Oracle Exadata storage, but do not deliver the same level of query performance. For these storage systems, Hybrid Columnar Compression is ideal for in-database archiving of older data that is infrequently accessed.
Hybrid Columnar Compression uses a logical construct called a compression unit to store a set of rows. When you load data into a table, the database stores groups of rows in columnar format, with the values for each column stored and compressed together. After the database has compressed the column data for a set of rows, the database fits the data into the compression unit.
For example, you apply Hybrid Columnar Compression to a daily_sales
table. At the end of every day, you populate the table with items and the number sold, with the item ID and date forming a composite primary key. Table 2-1 shows a subset of the rows in daily_sales
.
Table 2-1 Sample Table daily_sales
Item_ID | Date | Num_Sold | Shipped_From | Restock |
---|---|---|---|---|
1000 |
01-JUN-14 |
2 |
WAREHOUSE1 |
Y |
1001 |
01-JUN-14 |
0 |
WAREHOUSE3 |
N |
1002 |
01-JUN-14 |
1 |
WAREHOUSE3 |
N |
1003 |
01-JUN-14 |
0 |
WAREHOUSE2 |
N |
1004 |
01-JUN-14 |
2 |
WAREHOUSE1 |
N |
1005 |
01-JUN-14 |
1 |
WAREHOUSE2 |
N |
Assume that the rows in Table 2-1 are stored in one compression unit. Hybrid Columnar Compression stores the values for each column together, and then uses multiple algorithms to compress each column. The database chooses the algorithms based on a variety of factors, including the data type of the column, the cardinality of the actual values in the column, and the compression level chosen by the user.
As shown in Figure 2-4, each compression unit can span multiple data blocks. The values for a particular column may or may not span multiple blocks.
Hybrid Columnar Compression has implications for row locking (see "Row Locks (TX)"). When an update occurs for a row in an uncompressed data block, only the updated row is locked. In contrast, the database must lock all rows in the compression unit if an update is made to any row in the unit. Updates to rows using Hybrid Columnar Compression cause rowids to change.
Note:
By default, when a table uses Hybrid Columnar Compression, DML locks larger blocks of data (compression units), which may reduce concurrency. To avoid this issue, you can choose to enable row-level locking for a table.
See Also:
Oracle Database Licensing Information to learn about licensing requirements for Hybrid Columnar Compression
Oracle Database Administrator's Guide to learn how to use Hybrid Columnar Compression
Oracle Database SQL Language Reference for CREATE TABLE
syntax and semantics
A table cluster is a group of tables that share common columns and store related data in the same blocks. When tables are clustered, a single data block can contain rows from multiple tables. For example, a block can store rows from both the employees
and departments
tables rather than from only a single table.
The cluster key is the column or columns that the clustered tables have in common. For example, the employees
and departments
tables share the department_id
column. You specify the cluster key when creating the table cluster and when creating every table added to the table cluster.
The cluster key value is the value of the cluster key columns for a particular set of rows. All data that contains the same cluster key value, such as department_id=20
, is physically stored together. Each cluster key value is stored only once in the cluster and the cluster index, no matter how many rows of different tables contain the value.
For an analogy, suppose an HR manager has two book cases: one with boxes of employees folders and the other with boxes of departments folders. Users often ask for the folders for all employees in a particular department. To make retrieval easier, the manager rearranges all the boxes in a single book case. She divides the boxes by department ID. Thus, all folders for employees in department 20 and the folder for department 20 itself are in one box; the folders for employees in department 100 and the folder for department 100 are in another box, and so on.
You can consider clustering tables when they are primarily queried (but not modified) and records from the tables are frequently queried together or joined. Because table clusters store related rows of different tables in the same data blocks, properly used table clusters offer the following benefits over nonclustered tables:
Disk I/O is reduced for joins of clustered tables.
Access time improves for joins of clustered tables.
Less storage is required to store related table and index data because the cluster key value is not stored repeatedly for each row.
Typically, clustering tables is not appropriate in the following situations:
The tables are frequently updated.
The tables frequently require a full table scan.
The tables require truncating.
See Also:
Oracle Database SQL Tuning Guide for guidelines on when to use table clusters
Example 2-4 Creating a Table Cluster and Associated Index
Assume that you create the cluster employees_departments_cluster
with the cluster key department_id
, as shown in the following example:
CREATE CLUSTER employees_departments_cluster (department_id NUMBER(4)) SIZE 512; CREATE INDEX idx_emp_dept_cluster ON CLUSTER employees_departments_cluster;
Because the HASHKEYS
clause is not specified, employees_departments_cluster
is an indexed cluster. The preceding example creates an index named idx_emp_dept_cluster
on the cluster key department_id
.
Example 2-5 Creating Tables in an Indexed Cluster
You create the employees
and departments
tables in the cluster, specifying the department_id
column as the cluster key, as follows (the ellipses mark the place where the column specification goes):
CREATE TABLE employees ( ... ) CLUSTER employees_departments_cluster (department_id); CREATE TABLE departments ( ... ) CLUSTER employees_departments_cluster (department_id);
Assume that you add rows to the employees
and departments
tables. The database physically stores all rows for each department from the employees
and departments
tables in the same data blocks. The database stores the rows in a heap and locates them with the index.
Figure 2-5 shows the employees_departments_cluster
table cluster, which contains employees
and departments
. The database stores rows for employees in department 20 together, department 110 together, and so on. If the tables are not clustered, then the database does not ensure that the related rows are stored together.
The B-tree cluster index associates the cluster key value with the database block address (DBA) of the block containing the data. For example, the index entry for key 20 shows the address of the block that contains data for employees in department 20:
20,AADAAAA9d
The cluster index is separately managed, just like an index on a nonclustered table, and can exist in a separate tablespace from the table cluster.
See Also:
Oracle Database Administrator's Guide to learn how to create and manage indexed clusters
Oracle Database SQL Language Reference for CREATE CLUSTER
syntax and semantics
A hash cluster is like an indexed cluster, except the index key is replaced with a hash function. No separate cluster index exists. In a hash cluster, the data is the index.
With an indexed table or indexed cluster, Oracle Database locates table rows using key values stored in a separate index. To find or store a row in an indexed table or table cluster, the database must perform at least two I/Os:
One or more I/Os to find or store the key value in the index
Another I/O to read or write the row in the table or table cluster
To find or store a row in a hash cluster, Oracle Database applies the hash function to the cluster key value of the row. The resulting hash value corresponds to a data block in the cluster, which the database reads or writes on behalf of the issued statement.
Hashing is an optional way of storing table data to improve the performance of data retrieval. Hash clusters may be beneficial when the following conditions are met:
A table is queried much more often than modified.
The hash key column is queried frequently with equality conditions, for example, WHERE department_id=20
. For such queries, the cluster key value is hashed. The hash key value points directly to the disk area that stores the rows.
You can reasonably guess the number of hash keys and the size of the data stored with each key value.
To create a hash cluster, you use the same CREATE CLUSTER
statement as for an indexed cluster, with the addition of a hash key. The number of hash values for the cluster depends on the hash key.
The cluster key, like the key of an indexed cluster, is a single column or composite key shared by the tables in the cluster. A hash key value is an actual or possible value inserted into the cluster key column. For example, if the cluster key is department_id
, then hash key values could be 10, 20, 30, and so on.
Oracle Database uses a hash function that accepts an infinite number of hash key values as input and sorts them into a finite number of buckets. Each bucket has a unique numeric ID known as a hash value. Each hash value maps to the database block address for the block that stores the rows corresponding to the hash key value (department 10, 20, 30, and so on).
In the following example, the number of departments that are likely to exist is 100, so HASHKEYS
is set to 100
:
CREATE CLUSTER employees_departments_cluster (department_id NUMBER(4)) SIZE 8192 HASHKEYS 100;
After you create employees_departments_cluster
, you can create the employees
and departments
tables in the cluster. You can then load data into the hash cluster just as in the indexed cluster described in Example 2-4.
See Also:
Oracle Database Administrator's Guide to learn how to create and manage hash clusters
In queries of a hash cluster, the database determines how to hash the key values input by the user.
For example, users frequently execute queries such as the following, entering different department ID numbers for p_id
:
SELECT * FROM employees WHERE department_id = :p_id; SELECT * FROM departments WHERE department_id = :p_id; SELECT * FROM employees e, departments d WHERE e.department_id = d.department_id AND d.department_id = :p_id;
If a user queries employees in department_id
=20
, then the database might hash this value to bucket 77. If a user queries employees in department_id
=10
, then the database might hash this value to bucket 15. The database uses the internally generated hash value to locate the block that contains the employee rows for the requested department.
Figure 2-6 depicts a hash cluster segment as a horizontal row of blocks. As shown in the graphic, a query can retrieve data in a single I/O.
Figure 2-6 Retrieving Data from a Hash Cluster
A limitation of hash clusters is the unavailability of range scans on nonindexed cluster keys (see "Index Range Scan"). Assume no separate index exists for the hash cluster created in Hash Cluster Creation. A query for departments with IDs between 20 and 100 cannot use the hashing algorithm because it cannot hash every possible value between 20 and 100. Because no index exists, the database must perform a full scan.
A single-table hash cluster is an optimized version of a hash cluster that supports only one table at a time. A one-to-one mapping exists between hash keys and rows.
A single-table hash cluster can be beneficial when users require rapid access to a table by primary key. For example, users often look up an employee record in the employees
table by employee_id
.
A sorted hash cluster stores the rows corresponding to each value of the hash function in such a way that the database can efficiently return them in sorted order. The database performs the optimized sort internally. For applications that always consume data in sorted order, this technique can mean faster retrieval of data. For example, an application might always sort on the order_date
column of the orders
table.
See Also:
Oracle Database Administrator’s Guide to learn how to create single-table and sorted hash clusters
Oracle Database allocates space for a hash cluster differently from an indexed cluster.
In the example in Hash Cluster Creation, HASHKEYS
specifies the number of departments likely to exist, whereas SIZE
specifies the size of the data associated with each department. The database computes a storage space value based on the following formula:
HASHKEYS * SIZE / database_block_size
Thus, if the block size is 4096 bytes in the example shown in Hash Cluster Creation, then the database allocates at least 200 blocks to the hash cluster.
Oracle Database does not limit the number of hash key values that you can insert into the cluster. For example, even though HASHKEYS
is 100
, nothing prevents you from inserting 200 unique departments in the departments
table. However, the efficiency of the hash cluster retrieval diminishes when the number of hash values exceeds the number of hash keys.
To illustrate the retrieval issues, assume that block 100 in Figure 2-6 is completely full with rows for department 20. A user inserts a new department with department_id
43 into the departments
table. The number of departments exceeds the HASHKEYS
value, so the database hashes department_id
43 to hash value 77, which is the same hash value used for department_id
20. Hashing multiple input values to the same output value is called a hash collision.
When users insert rows into the cluster for department 43, the database cannot store these rows in block 100, which is full. The database links block 100 to a new overflow block, say block 200, and stores the inserted rows in the new block. Both block 100 and 200 are now eligible to store data for either department. As shown in Figure 2-7, a query of either department 20 or 43 now requires two I/Os to retrieve the data: block 100 and its associated block 200. You can solve this problem by re-creating the cluster with a different HASHKEYS
value.
Figure 2-7 Retrieving Data from a Hash Cluster When a Hash Collision Occurs
See Also:
Oracle Database Administrator's Guide to learn how to manage space in hash clusters
An attribute-clustered table is a heap-organized table that stores data in close proximity on disk based on user-specified clustering directives. The directives specify columns in single or multiple tables.
The directives are as follows:
The CLUSTERING ... BY LINEAR ORDER
directive orders data in a table according to specified columns.
Consider using BY LINEAR ORDER
clustering, which is the default, when queries qualify the prefix of columns specified in the clustering clause. For example, if queries of sh.sales
often specify either a customer ID or both customer ID and product ID, then you could cluster data in the table using the linear column order cust_id
, prod_id
.
The CLUSTERING ... BY INTERLEAVED ORDER
directive orders data in one or more tables using a special algorithm, similar to a Z-order function, that permits multicolumn I/O reduction.
Consider using BY INTERLEAVED ORDER
clustering when queries specify a variety of column combinations. For example, if queries of sh.sales
specify different dimensions in different orders, then you can cluster data in the sales
table according to columns in these dimensions.
Attribute clustering is only available for direct path INSERT operations. It is ignored for conventional DML.
This section contains the following topics:
The primary benefit of attribute-clustered tables is I/O reduction, which can significantly reduce the I/O cost and CPU cost of table scans. I/O reduction occurs either with zones or by reducing physical I/O through closer physical proximity on disk for the clustered values.
An attribute-clustered table has the following advantages:
You can cluster fact tables based on dimension columns in star schemas.
In star schemas, most queries qualify dimension tables and not fact tables, so clustering by fact table columns is not effective. Oracle Database supports clustering on columns in dimension tables.
I/O reduction can occur in several different scenarios:
When used with Oracle Exadata Storage Indexes, Oracle In-Memory min/max pruning, or zone maps
In OLTP applications for queries that qualify a prefix and use attribute clustering with linear order
On a subset of the clustering columns for BY INTERLEAVED ORDER
clustering
Attribute clustering can improve data compression, and in this way indirectly improve table scan costs.
When the same values are close to each other on disk, the database can more easily compress them.
Oracle Database does not incur the storage and maintenance cost of an index.
See Also:
Oracle Database Data Warehousing Guide for more advantages of attribute-clustered tables
Attribute clustering that is based on joined columns is called join attribute clustering. In contrast with table clusters, join attribute clustered tables do not store data from a group of tables in the same database blocks.
For example, consider an attribute-clustered table, sales
, joined with a dimension table, products
. The sales
table contains only rows from the sales
table, but the ordering of the rows is based on the values of columns joined from products
table. The appropriate join is executed during data movement, direct path insert, and CREATE TABLE AS SELECT
operations. In contrast, if sales
and products
were in a standard table cluster, the data blocks would contain rows from both tables.
See Also:
Oracle Database Data Warehousing Guide to learn more about join attribute clustering
A zone is a set of contiguous data blocks that stores the minimum and maximum values of relevant columns. When a SQL statement contains predicates on columns stored in a zone, the database compares the predicate values to the minimum and maximum stored in the zone to determine which zones to read during SQL execution.
I/O reduction is the ability to skip table or index blocks that do not contain data that the database needs to satisfy the query. This reduction can significantly reduce the I/O and CPU cost of table scans.
Whenever CLUSTERING
is specified on a table, the database automatically creates a zone map on the specified clustering columns. The zone map correlates minimum and maximum values of columns with consecutive data blocks in the attribute-clustered table. Attribute-clustered tables use zone maps to perform I/O reduction.
You can create attribute-clustered tables that do not use zone maps. You can also create zone maps without attribute-clustered tables. For example, you can create a zone map on a table whose rows are naturally ordered on a set of columns, such as a stock trade table whose trades are ordered by time. You execute DDL statements to create, drop, and maintain zone maps.
See Also:
Oracle Database Data Warehousing Guide to learn more about zone maps
For a loose analogy of zone maps, consider a sales manager who uses a bookcase of pigeonholes, which are analogous to data blocks. Each pigeonhole has receipts (rows) describing shirts sold to a customer, ordered by ship date. In this analogy, a zone map is like a stack of index cards. Each card corresponds to a "zone" (contiguous range) of pigeonholes, such as pigeonholes 1-10. For each zone, the card lists the minimum and maximum ship dates for the receipts stored in the zone.
When someone wants to know which shirts shipped on a certain date, the manager flips the cards until she comes to the date range that contains the requested date, notes the pigeonhole zone, and then searches only pigeonholes in this zone for the requested receipts. In this way, the manager avoids searching every pigeonhole in the bookcase for the receipts.
This example illustrates how a zone map can prune data in a query whose predicate contains a constant.
Assume you create the following lineitem
table:
CREATE TABLE lineitem ( orderkey NUMBER , shipdate DATE , receiptdate DATE , destination VARCHAR2(50) , quantity NUMBER );
The table lineitem
contains 4 data blocks with 2 rows per block. Table 2-2 shows the 8 rows of the table.
Table 2-2 Data Blocks for lineitem Table
Block | orderkey | shipdate | receiptdate | destination | quantity |
---|---|---|---|---|---|
1 |
1 |
1-1-2014 |
1-10-2014 |
San_Fran |
100 |
1 |
2 |
1-2-2014 |
1-10-2014 |
San_Fran |
200 |
2 |
3 |
1-3-2014 |
1-9-2014 |
San_Fran |
100 |
2 |
4 |
1-5-2014 |
1-10-2014 |
San_Diego |
100 |
3 |
5 |
1-10-2014 |
1-15-2014 |
San_Fran |
100 |
3 |
6 |
1-12-2014 |
1-16-2014 |
San_Fran |
200 |
4 |
7 |
1-13-2014 |
1-20-2014 |
San_Fran |
100 |
4 |
8 |
1-15-2014 |
1-30-2014 |
San_Jose |
100 |
You can use the CREATE MATERIALIZED ZONEMAP
statement to create a zone map on the lineitem
table. Each zone contains 2 blocks and stores the minimum and maximum of the orderkey
, shipdate
, and receiptdate
columns. Table 2-3 shows the zone map.
Table 2-3 Zone Map for lineitem Table
Block Range | min orderkey | max orderkey | min shipdate | max shipdate | min receiptdate | max receiptdate |
---|---|---|---|---|---|---|
1-2 |
1 |
4 |
1-1-2014 |
1-5-2014 |
1-9-2014 |
1-10-2014 |
3-4 |
5 |
8 |
1-10-2014 |
1-15-2014 |
1-15-2014 |
1-30-2014 |
When you execute the following query, the database can read the zone map and then scan only blocks 1 and 2 because the date 1-3-2014
falls between the minimum and maximum dates:
SELECT * FROM lineitem WHERE shipdate = '1-3-2014';
See Also:
Oracle Database Data Warehousing Guide to learn how to use zone maps
Oracle Database SQL Language Reference for syntax and semantics of the CREATE MATERIALIZED ZONEMAP
statement
A linear ordering scheme for a table divides rows into ranges based on user-specified attributes in a specific order. Oracle Database supports linear ordering on single or multiple tables that are connected through a primary-foreign key relationship.
For example, the sales
table divides the cust_id
and prod_id
columns into ranges, and then clusters these ranges together on disk. When you specify the BY LINEAR ORDER
directive for a table, significant I/O reduction can occur when a predicate specifies either the prefix column or all columns in the directive.
Assume that queries of sales
often specify either a customer ID or a combination of a customer ID and product ID. You can create an attribute-clustered table so that such queries benefit from I/O reduction:
CREATE TABLE sales ( prod_id NOT NULL NUMBER , cust_id NOT NULL NUMBER , amount_sold NUMBER(10,2) ... ) CLUSTERING BY LINEAR ORDER (cust_id, prod_id) YES ON LOAD YES ON DATA MOVEMENT WITH MATERIALIZED ZONEMAP;
Queries that qualify both columns cust_id
and prod_id
, or the prefix cust_id
experience I/O reduction. Queries that qualify prod_id
only do not experience significant I/O reduction because prod_id
is the suffix of the BY LINEAR ORDER
clause. The following examples show how the database can reduce I/O during table scans.
Example 2-6 Specifying Only cust_id
An application issues the following query:
SELECT * FROM sales WHERE cust_id = 100;
Because the sales
table is a BY LINEAR ORDER
cluster, the database must only read the zones that include the cust_id
value of 100
.
Example 2-7 Specifying prod_id and cust_id
An application issues the following query:
SELECT * FROM sales WHERE cust_id = 100 AND prod_id = 2300;
Because the sales
table is a BY LINEAR ORDER
cluster, the database must only read the zones that include the cust_id
value of 100
and prod_id
value of 2300
.
See Also:
Oracle Database Data Warehousing Guide to learn how to cluster tables using linear ordering
Oracle Database SQL Language Reference for syntax and semantics of the BY LINEAR ORDER
clause
Interleaved ordering uses a technique that is similar to a Z-order. Interleaved ordering enables the database to prune I/O based on any subset of predicates in the clustering columns. Interleaved ordering is useful for dimensional hierarchies in a data warehouse.
As with attribute-clustered tables with linear ordering, Oracle Database supports interleaved ordering on single or multiple tables that are connected through a primary-foreign key relationship. Columns in tables other than the attribute-clustered table must be linked by foreign key and joined to the attribute-clustered table.
Large data warehouses frequently organize data in a star schema. A dimension table uses a parent-child hierarchy and is connected to a fact table by a foreign key (see "Overview of Dimensions"). Clustering a fact table by interleaved order enables the database to use a special function to skip values in dimension columns during table scans.
Example 2-8 Interleaved Ordering Example
Suppose your data warehouse contains a sales
fact table and its two dimension tables: customers
and products
. Most queries have predicates on the customers
table hierarchy (cust_state_province, cust_city)
and the products hierarchy (prod_category, prod_subcategory)
. You can use interleaved ordering for the sales
table as shown in the partial statement in the following example:
CREATE TABLE sales ( prod_id NUMBER NOT NULL , cust_id NUMBER NOT NULL , amount_sold NUMBER(10,2) ... ) CLUSTERING sales JOIN products ON (sales.prod_id = products.prod_id) JOIN customers ON (sales.cust_id = customers.cust_id) BY INTERLEAVED ORDER ( ( products.prod_category , products.prod_subcategory ), ( customers.cust_state_province , customers.cust_city ) ) WITH MATERIALIZED ZONEMAP;
Note:
The columns specified in the BY INTERLEAVED ORDER
clause need not be in actual dimension tables, but they must be connected through a primary-foreign key relationship.
Suppose an application queries the sales
, products
, and customers
tables in a join. The query specifies the customers.prod_category
and customers_cust_state_province
columns in the predicate as follows:
SELECT cust_city, prod_sub_category, SUM(amount_sold) FROM sales, products, customers WHERE sales.prod_id = products.prod_id AND sales.cust_id = customers.cust_id AND customers.prod_category = 'Boys' AND customers.cust_state_province = 'England - Norfolk' GROUP BY cust_city, prod_sub_category;
In the preceding query, the prod_category
and cust_state_province
columns are part of the clustering definition shown in the CREATE TABLE
example. During the scan of the sales
table, the database can consult the zone map and access only the rowids in this zone.
See Also:
Oracle Database Data Warehousing Guide to learn how to cluster tables using interleaved ordering
Oracle Database SQL Language Reference for syntax and semantics of the BY INTERLEAVED ORDER
clause
A temporary table holds data that exists only for the duration of a transaction or session. Data in a temporary table is private to the session, which means that each session can only see and modify its own data.
Temporary tables are useful in applications where a result set must be buffered. For example, a scheduling application enables college students to create optional semester course schedules. A row in a temporary table represents each schedule. During the session, the schedule data is private. When the student chooses a schedule, the application moves the row for the chosen schedule to a permanent table. At the end of the session, the database automatically drops the schedule data that was in the temporary table.
CREATE GLOBAL TEMPORARY TABLE
statement creates a temporary table. The ON COMMIT
clause specifies whether the table data is transaction-specific (default) or session-specific. You create a temporary table for the database itself, not for every PL/SQL stored procedure.You can create indexes for temporary tables with the CREATE INDEX
statement. These indexes are also temporary. The data in the index has the same session or transaction scope as the data in the temporary table. You can also create a view or trigger on a temporary table.
See Also:
Oracle Database Administrator's Guide to learn how create and manage temporary tables
Oracle Database SQL Language Reference for CREATE GLOBAL TEMPORARY TABLE
syntax and semantics
Like permanent tables, temporary tables are persistent objects that are statically defined in the data dictionary. Temporary segments are allocated when a session first inserts data.
Until data is loaded in a session, the temporary table appears empty. For transaction-specific temporary tables, the database deallocates temporary segments at the end of the transaction. For session-specific temporary tables, the database deallocates temporary segments at the end of the session.
See Also:
An external table accesses data in external sources as if this data were in a table in the database. You can use SQL, PL/SQL, and Java to query the external data.
External tables are useful for querying flat files. For example, a SQL-based application may need to access records in a text file. The records are in the following form:
100,Steven,King,SKING,515.123.4567,17-JUN-03,AD_PRES,31944,150,90 101,Neena,Kochhar,NKOCHHAR,515.123.4568,21-SEP-05,AD_VP,17000,100,90 102,Lex,De Haan,LDEHAAN,515.123.4569,13-JAN-01,AD_VP,17000,100,90
You could create an external table, copy the file to the location specified in the external table definition, and use SQL to query the records in the text file.
External tables are also valuable for performing ETL tasks common in data warehouse environments. For example, external tables enable the pipelining of the data loading phase with the transformation phase, eliminating the need to stage data inside the database in preparation for further processing inside the database. See "Overview of Data Warehousing and Business Intelligence".
Internally, creating an external table means creating metadata in the data dictionary. Unlike an ordinary table, an external table does not describe data stored in the database, nor does it describe how data is stored externally. Rather, external table metadata describes how the external table layer must present data to the database.
A CREATE TABLE ... ORGANIZATION EXTERNAL
statement has two parts. The external table definition describes the column types. This definition is like a view that enables SQL to query external data without loading it into the database. The second part of the statement maps the external data to the columns.
External tables are read-only unless created with CREATE TABLE AS SELECT
with the ORACLE_DATAPUMP
access driver. Restrictions for external tables include no support for indexed columns, virtual columns, and column objects.
An access driver is an API that interprets the external data for the database. The access driver runs inside the database, which uses the driver to read the data in the external table. The access driver and the external table layer are responsible for performing the transformations required on the data in the data file so that it matches the external table definition.
Figure 2-8 represents how external data is accessed.
Oracle provides the ORACLE_LOADER
(default) and ORACLE_DATAPUMP
access drivers for external tables. For both drivers, the external files are not Oracle data files.
ORACLE_LOADER
enables read-only access to external files using SQL*Loader. You cannot create, update, or append to an external file using the ORACLE_LOADER
driver.
The ORACLE_DATAPUMP
driver enables you to unload external data. This operation involves reading data from the database and inserting the data into an external table, represented by one or more external files. After external files are created, the database cannot update or append data to them. The driver also enables you to load external data, which involves reading an external table and loading its data into a database.
See Also:
Oracle Database Administrator's Guide to learn about managing external tables, external connections, and directory objects
Oracle Database Utilities to learn about external tables
Oracle Database SQL Language Reference for information about creating and querying external tables
An Oracle object type is a user-defined type with a name, attributes, and methods. An object table is a special kind of table in which each row represents an object. Object types make it possible to model real-world entities such as customers and purchase orders as objects in the database.
An object type defines a logical structure, but does not create storage. The following example creates an object type named department_typ
:
CREATE TYPE department_typ AS OBJECT ( d_name VARCHAR2(100), d_address VARCHAR2(200) ); /
The following example creates an object table named departments_obj_t
of the object type department_typ
, and then inserts a row into the table. The attributes (columns) of the departments_obj_t
table are derived from the definition of the object type.
CREATE TABLE departments_obj_t OF department_typ; INSERT INTO departments_obj_t VALUES ('hr', '10 Main St, Sometown, CA');
Like a relational column, an object table can contain rows of just one kind of thing, namely, object instances of the same declared type as the table. By default, every row object in an object table has an associated logical object identifier (OID) that uniquely identifies it in an object table. The OID column of an object table is a hidden column.
See Also:
Oracle Database Object-Relational Developer's Guide to learn about object-relational features in Oracle Database
Oracle Database SQL Language Reference for CREATE TYPE
syntax and semantics