Each value manipulated by Oracle has a datatype.
A value's datatype associates a fixed set of properties with the value.
These properties cause Oracle to treat values of one datatype
differently from values of another. For example, you can add values of NUMBER datatype, but not values of RAW datatype.
When you create a table or cluster, you must specify a datatype for
each of its columns. When you create a procedure or stored function,
you must specify a datatype for each of its arguments. These datatypes
define the domain of values that each column can contain or each
argument can have. For example, DATE
columns cannot accept the value February 29 (except for a leap year) or
the values 2 or 'SHOE'. Each value subsequently placed in a column
assumes the column's datatype. For example, if you insert '01-JAN-98'
into a DATE column, Oracle treats the '01-JAN-98' character string as a DATE value after verifying that it translates to a valid date.
Oracle provides a number of built-in datatypes as well as several
categories for user-defined types. The syntax of Oracle datatypes
appears in the diagrams that follow. The text of this section is
divided into the following sections:
Oracle Built-in Datatypes
Table 2-1 summarizes Oracle built-in datatypes.
Table 2-1 Built-In Datatype Summary
Character Datatypes
Character datatypes store character (alphanumeric) data, which are
words and free-form text, in the database character set or national
character set. They are less restrictive than other datatypes and
consequently have fewer properties. For example, character columns can
store all alphanumeric values, but NUMBER columns can store only numeric values.
Character data is stored in strings with byte values corresponding to
one of the character sets, such as 7-bit ASCII or EBCDIC, specified
when the database was created. Oracle supports both single-byte and
multibyte character sets.
These datatypes are used for character data:
- CHAR Datatype
- NCHAR Datatype
- NVARCHAR2 Datatype
- VARCHAR2 Datatype
CHAR Datatype
The CHAR datatype specifies a fixed-length
character string. Oracle subsequently ensures that all values stored in
that column have the length specified by size.
If you insert a value that is shorter than the column length, Oracle
blank-pads the value to column length. If you try to insert a value
that is too long for the column, Oracle returns an error.
The default length for a CHAR column is 1 byte and the maximum allowed is 2000 bytes. A 1-byte string can be inserted into a CHAR(10) column, but the string is blank-padded to 10 bytes before it is stored.
When you create a table with a CHAR column, by default you supply the column length in bytes. The BYTE qualifier is the same as the default. If you use the CHAR qualifier, for example CHAR(10 CHAR),
you supply the column length in characters. A character is technically
a codepoint of the database character set. Its size can range from 1
byte to 4 bytes, depending on the database character set. The BYTE and CHAR qualifiers override the semantics specified by the NLS_LENGTH_SEMANTICS parameter, which has a default of byte semantics.
NCHAR Datatype
Beginning with Oracle9i, the NCHAR datatype is redefined to be a Unicode-only datatype. When you create a table with an NCHAR column, you define the column length in characters. You define the national character set when you create your database.
The column's maximum length is determined by the national character set definition. Width specifications of character datatype NCHAR refer to the number of characters. The maximum column size allowed is 2000 bytes.
If you insert a value that is shorter than the column length, Oracle blank-pads the value to column length. You cannot insert a CHAR value into an NCHAR column, nor can you insert an NCHAR value into a CHAR column.
The following example compares the col1 column of tab1 with national character set string 'NCHAR literal':
SELECT translated_description from product_descriptions
WHERE translated_name = N'LCD Monitor 11/PM';
NVARCHAR2 Datatype
Beginning with Oracle9i, the NVARCHAR2 datatype is redefined to be a Unicode-only datatype. When you create a table with an NVARCHAR2
column, you supply the maximum number of characters it can hold. Oracle
subsequently stores each value in the column exactly as you specify it,
provided the value does not exceed the column's maximum length.
The column's maximum length is determined by the national character set definition. Width specifications of character datatype NVARCHAR2 refer to the number of characters. The maximum column size allowed is 4000 bytes.
VARCHAR2 Datatype
The VARCHAR2 datatype specifies a variable-length character string. When you create a VARCHAR2
column, you supply the maximum number of bytes or characters of data
that it can hold. Oracle subsequently stores each value in the column
exactly as you specify it, provided the value does not exceed the
column's maximum length. If you try to insert a value that exceeds the
specified length, Oracle returns an error.
You must specify a maximum length for a VARCHAR2
column. This maximum must be at least 1 byte, although the actual
length of the string stored is permitted to be zero. Oracle treats
zero-length strings as nulls. You can use the CHAR qualifier, for example VARCHAR2(10 CHAR),
to give the maximum length in characters instead of bytes. A character
is technically a codepoint of the database character set. CHAR and BYTE qualifiers override the setting of the NLS_LENGTH_SEMANTICS parameter, which has a default of bytes. The maximum length of VARCHAR2 data is 4000 bytes. Oracle compares VARCHAR2 values using nonpadded comparison semantics.
VARCHAR Datatype
The VARCHAR datatype is currently synonymous with the VARCHAR2 datatype. Oracle recommends that you use VARCHAR2 rather than VARCHAR. In the future, VARCHAR
might be defined as a separate datatype used for variable-length
character strings compared with different comparison semantics.
NUMBER Datatype
The NUMBER datatype stores zero, positive, and negative fixed and floating-point numbers with magnitudes between 1.0 x 10-130 and 9.9...9 x 10125
(38 nines followed by 88 zeroes) with 38 digits of precision. If you
specify an arithmetic expression whose value has a magnitude greater
than or equal to 1.0 x 10126, Oracle returns an error.
Specify a fixed-point number using the following form:
NUMBER(p,s)
where:
p is the precision, or the total number of digits. Oracle guarantees the portability of numbers with precision ranging from 1 to 38.
s is the scale, or the number of digits to the right of the decimal point. The scale can range from -84 to 127.
Specify an integer using the following form:
NUMBER(p)
This represents a fixed-point number with precision p and scale 0 and is equivalent to NUMBER(p,0).
Specify a floating-point number using the following form:
NUMBER
The absence of precision and scale designators specifies the maximum range and precision for an Oracle number.
Scale and Precision
Specify the scale and precision of a fixed-point number column for
extra integrity checking on input. Specifying scale and precision does
not force all values to a fixed length. If a value exceeds the
precision, Oracle returns an error. If a value exceeds the scale,
Oracle rounds it.
The following examples show how Oracle stores data using different precisions and scales.
|
7456123.89 |
NUMBER |
7456123.89 |
|
7456123.89 |
NUMBER(9) |
7456124 |
|
7456123.89 |
NUMBER(9,2) |
7456123.89 |
|
7456123.89 |
NUMBER(9,1) |
7456123.9 |
|
7456123.89 |
NUMBER(6) |
exceeds precision |
|
7456123.89 |
NUMBER(7,-2) |
7456100 |
|
7456123.89 |
NUMBER(7,2) |
exceeds precision |
Negative Scale
If the scale is negative, the actual data is rounded to
the specified number of places to the left of the decimal point. For
example, a specification of (10,-2) means to round to hundreds.
Scale Greater than Precision
You can specify a scale that is greater than precision,
although it is uncommon. In this case, the precision specifies the
maximum number of digits to the right of the decimal point. As with all
number datatypes, if the value exceeds the precision, Oracle returns an
error message. If the value exceeds the scale, Oracle rounds the value.
For example, a column defined as NUMBER(4,5)
requires a zero for the first digit after the decimal point and rounds
all values past the fifth digit after the decimal point. The following
examples show the effects of a scale greater than precision:
|
Actual Data |
Specified As |
Stored As |
|
.01234 |
NUMBER(4,5) |
.01234 |
|
.00012 |
NUMBER(4,5) |
.00012 |
|
.000127 |
NUMBER(4,5) |
.00013 |
|
.0000012 |
NUMBER(2,7) |
.0000012 |
|
.00000123 |
NUMBER(2,7) |
.0000012 |
Floating-Point Numbers
Oracle lets you specify floating-point numbers, which can
have a decimal point anywhere from the first to the last digit or can
have no decimal point at all. An exponent may optionally be used
following the number to increase the range (e.g. 1.777 e-20).
A scale value is not applicable to floating-point numbers, because the
number of digits that can appear after the decimal point is not
restricted.
You can specify floating-point numbers with the range of values discussed in "NUMBER Datatype". The format is defined in "Number Literals. Oracle also supports the ANSI datatype FLOAT. You can specify this datatype using one of these syntactic forms:
FLOAT specifies a floating-point number with decimal precision 38 or binary precision 126.
FLOAT(b) specifies a floating-point number with binary precision b. The precision b can range from 1 to 126. To convert from binary to decimal precision, multiply b
by 0.30103. To convert from decimal to binary precision, multiply the
decimal precision by 3.32193. The maximum of 126 digits of binary
precision is roughly equivalent to 38 digits of decimal precision.
LONG Datatype
LONG columns store variable-length character strings containing up to 2 gigabytes, or 231-1 bytes. LONG columns have many of the characteristics of VARCHAR2 columns. You can use LONG columns to store long text strings. The length of LONG values may be limited by the memory available on your computer.
You can reference LONG columns in SQL statements in these places:
SELECT lists
SET clauses of UPDATE statements
VALUES clauses of INSERT statements
The use of LONG values is subject to some restrictions:
- A table can contain only one
LONG column.
- You cannot create an object type with a
LONG attribute.
LONG columns cannot appear in WHERE clauses or in integrity constraints (except that they can appear in NULL and NOT NULL constraints).
LONG columns cannot be indexed.
- A stored function cannot return a
LONG value.
- You can declare a variable or argument of a PL/SQL program unit using the
LONG datatype. However, you cannot then call the program unit from SQL.
- Within a single SQL statement, all
LONG columns, updated tables, and locked tables must be located on the same database.
LONG and LONG RAW columns cannot be used in distributed SQL statements and cannot be replicated.
- If a table has both
LONG and LOB columns, you cannot bind more than 4000 bytes of data to both the LONG and LOB columns in the same SQL statement. However, you can bind more than 4000 bytes of data to either the LONG or the LOB column.
- A table with
LONG columns cannot be stored in a tablespace with automatic segment-space management.
LONG columns cannot appear in certain parts of SQL statements:
GROUP BY clauses, ORDER BY clauses, or CONNECT BY clauses or with the DISTINCT operator in SELECT statements
- The
UNIQUE operator of a SELECT statement
- The column list of a
CREATE CLUSTER statement
- The
CLUSTER clause of a CREATE MATERIALIZED VIEW statement
- SQL built-in functions, expressions, or conditions
SELECT lists of queries containing GROUP BY clauses
SELECT lists of subqueries or queries combined by the UNION, INTERSECT, or MINUS set operators
SELECT lists of CREATE TABLE ... AS SELECT statements
ALTER TABLE ... MOVE statements
SELECT lists in subqueries in INSERT statements
Triggers can use the LONG datatype in the following manner:
- A SQL statement within a trigger can insert data into a
LONG column.
- If data from a
LONG column can be converted to a constrained datatype (such as CHAR and VARCHAR2), a LONG column can be referenced in a SQL statement within a trigger.
- Variables in triggers cannot be declared using the
LONG datatype.
- :
NEW and :OLD cannot be used with LONG columns.
You can use the Oracle Call Interface functions to retrieve a portion of a LONG value from the database.
Datetime and Interval Datatypes
The datetime datatypes are DATE, TIMESTAMP, TIMESTAMP WITH TIME ZONE and TIMESTAMP WITH LOCAL TIME ZONE. Values of datetime datatypes are sometimes called "datetimes". The interval datatypes are INTERVAL YEAR TO MONTH and INTERVAL DAY TO SECOND. Values of interval datatypes are sometimes called "intervals".
Both datetimes and intervals are made up of fields. The
values of these fields determine the value of the datatype. The table
that follows lists the datetime fields and their possible values for
datetimes and intervals.
DATE Datatype
The DATE datatype stores date and time
information. Although date and time information can be represented in
both character and number datatypes, the DATE datatype has special associated properties. For each DATE value, Oracle stores the following information: century, year, month, date, hour, minute, and second.
You can specify a date value as a literal, or you can convert a character or numeric value to a date value with the TO_DATE
function. To specify a date as a literal, you must use the Gregorian
calendar. You can specify an ANSI date literal, as shown in this
example:
DATE '1998-12-25'
The ANSI date literal contains no time portion, and must
be specified in exactly this format ('YYYY-MM-DD'). Alternatively you
can specify an Oracle date literal, as in the following example:
TO_DATE('98-DEC-25:17:30','YY-MON-DD:HH24:MI')
The default date format for an Oracle date literal is specified by the initialization parameter NLS_DATE_FORMAT.
This example date format includes a two-digit number for the day of the
month, an abbreviation of the month name, the last two digits of the
year, and a 24-hour time designation.
Oracle automatically converts character values that are
in the default date format into date values when they are used in date
expressions.
If you specify a date value without a time component, the default time is 12:00:00 am (midnight). If you specify a date value without a date, the default date is the first day of the current month.
Oracle DATE columns always contain both
the date and time fields. If your queries use a date format without a
time portion, you must ensure that the time fields in the DATE
column are set to zero (that is, midnight). Otherwise, Oracle may not
return the query results you expect. Here are some examples that assume
a table my_table with a number column row_num and a DATE column datecol:
INSERT INTO my_table VALUES (1, SYSDATE);
INSERT INTO my_table VALUES (2, TRUNC(SYSDATE));
SELECT * FROM my_table;
ROW_NUM DATECOL
---------- ---------
1 04-OCT-00
2 04-OCT-00
SELECT * FROM my_table
WHERE datecol = TO_DATE('04-OCT-00','DD-MON-YY');
ROW_NUM DATECOL
---------- ---------
2 04-OCT-00
If you know that the time fields of your DATE column are set to zero, then you can query your DATE column as shown in the second example above, or by using the DATE literal:
SELECT * FROM my_table WHERE datecol = DATE '2000-10-04';
However, if the DATE column contains
nonzero time fields, then you must filter out the time fields in the
query to get the correct result. For example:
SELECT * FROM my_table WHERE TRUNC(datecol) = DATE'2000-10-04';
Oracle applies the TRUNC function to each
row in the query, so performance is better if you ensure the zero value
of the time fields in your data. To ensure that the time fields are set
to zero, use one of the following methods during inserts and updates:
- Use the
TO_DATE function to mask out the time fields:
INSERT INTO my_table VALUES
(3, TO_DATE('4-APR-2000','DD-MON-YYYY'));
- Use the
DATE literal:
INSERT INTO my_table VALUES (4, '04-OCT-00');
- Use the
TRUNC function:
INSERT INTO my_table VALUES (5, TRUNC(SYSDATE));
The date function SYSDATE returns the current system date and time. The function CURRENT_DATE returns the current session date.
Date Arithmetic
You can add and subtract number constants as well as other dates from
dates. Oracle interprets number constants in arithmetic date
expressions as numbers of days. For example, SYSDATE + 1 is tomorrow. SYSDATE - 7 is one week ago. SYSDATE + (10/1440) is ten minutes from now. Subtracting the hiredate column of the sample table employees from SYSDATE returns the number of days since each employee was hired. You cannot multiply or divide DATE values.
Oracle provides functions for many common date operations. For example, the ADD_MONTHS function lets you add or subtract months from a date. The MONTHS_BETWEEN
function returns the number of months between two dates. The fractional
portion of the result represents that portion of a 31-day month.
Because each date contains a time component, most results
of date operations include a fraction. This fraction means a portion of
one day. For example, 1.5 days is 36 hours.
Using Julian Dates
A Julian date is the number of days since January 1, 4712 bc. Julian dates allow continuous dating from a common reference. You can use the date format model "J" with date functions TO_DATE and TO_CHAR to convert between Oracle DATE values and their Julian equivalents.
Example
This statement returns the Julian equivalent of January 1, 1997:
SELECT TO_CHAR(TO_DATE('01-01-1997', 'MM-DD-YYYY'),'J')
FROM DUAL;
TO_CHAR
--------
2450450
TIMESTAMP Datatype
The TIMESTAMP datatype is an extension of the DATE datatype. It stores the year, month, and day of the DATE datatype, plus hour, minute, and second values. Specify the TIMESTAMP datatype as follows:
TIMESTAMP [ (fractional_seconds_precision)]
where fractional_seconds_precision optionally specifies the number of digits in the fractional part of the SECOND datetime field and can be a number in the range 0 to 9. The default is 6. For example, you specify TIMESTAMP as a literal as follows:
TIMESTAMP'1997-01-31 09:26:50.124'
TIMESTAMP WITH TIME ZONE Datatype
TIMESTAMP WITH TIME ZONE is a variant of TIMESTAMP that includes a time zone displacement
in its value. The time zone displacement is the difference (in hours
and minutes) between local time and UTC (Coordinated Universal
Time--formerly Greenwich Mean Time). Specify the TIMESTAMP WITH TIME ZONE datatype as follows:
TIMESTAMP [ (fractional_seconds_precision) ] WITH TIME ZONE
where fractional_seconds_precision optionally specifies the number of digits in the fractional part of the SECOND datetime field and can be a number in the range 0 to 9. The default is 6. For example, you specify TIMESTAMP WITH TIME ZONE as a literal as follows:
TIMESTAMP '1997-01-31 09:26:56.66 +02:00'
Two TIMESTAMP WITH TIME ZONE values are considered identical if they represent the same instant in UTC, regardless of the TIME ZONE offsets stored in the data. For example,
TIMESTAMP '1999-04-15 8:00:00 -8:00'
is the same as
TIMESTAMP '1999-04-15 11:00:00 -5:00'
That is, 8:00 a.m. Pacific Standard Time is the same as 11:00 a.m. Eastern Standard Time.
You can replace the UTC offset with the TZR (time zone region) format element. For example, the following example has the same value as the preceding example:
TIMESTAMP '1999-04-15 8:00:00 US/Pacific'
To eliminate the ambiguity of boundary cases when the daylight savings time switches, use both the TZR and a corresponding TZD format element. The following example ensures that the preceding example will return a daylight savings time value:
TIMESTAMP '1999-10-31 01:30:00 US/Pacific PDT'
If you do not add the TZD format element, and the datetime value is ambiguous, then Oracle returns an error if you have the ERROR_ON_OVERLAP_TIME session parameter set to TRUE. If that parameter is set to FALSE, then Oracle interprets the ambiguous datetime as standard time.
TIMESTAMP WITH LOCAL TIME ZONE Datatype
TIMESTAMP WITH LOCAL TIME ZONE is another variant of TIMESTAMP that includes a time zone displacement in its value. It differs from TIMESTAMP WITH TIME ZONE
in that data stored in the database is normalized to the database time
zone, and the time zone displacement is not stored as part of the
column data. When users retrieve the data, Oracle returns it in the
users' local session time zone. The time zone displacement is the
difference (in hours and minutes) between local time and UTC
(Coordinated Universal Time--formerly Greenwich Mean Time). Specify the
TIMESTAMP WITH LOCAL TIME ZONE datatype as follows:
TIMESTAMP [ (fractional_seconds_precision) ] WITH LOCAL TIME ZONE
where fractional_seconds_precision optionally specifies the number of digits in the fractional part of the SECOND datetime field and can be a number in the range 0 to 9. The default is 6.
There is no literal for TIMESTAMP WITH LOCAL TIME ZONE.
INTERVAL YEAR TO MONTH Datatype
INTERVAL YEAR TO MONTH stores a period of time using the YEAR and MONTH datetime fields. Specify INTERVAL YEAR TO MONTH as follows:
INTERVAL YEAR [(year_precision)] TO MONTH
where year_precision is the number of digits in the YEAR datetime field. The default value of year_precision is 2.
INTERVAL DAY TO SECOND Datatype
INTERVAL DAY TO SECOND stores a period of time in terms of days, hours, minutes, and seconds. Specify this datatype as follows:
INTERVAL DAY [(day_precision)]
TO SECOND [(fractional_seconds_precision)]
where
day_precision is the number of digits in the DAY datetime field. Accepted values are 0 to 9. The default is 2.
fractional_seconds_precision is the number of digits in the fractional part of the SECOND datetime field. Accepted values are 0 to 9. The default is 6.
Datetime/Interval Arithmetic
Oracle lets you derive datetime and interval value expressions.
Datetime value expressions yield values of datetime datatype. Interval
value expressions yield values of interval datatype. Table 2-2 lists the operators that you can use in these expressions.
Table 2-2 Operators in Datetime/Interval Value Expressions
Oracle performs all timestamp arithmetic in UTC time. For TIMESTAMP WITH LOCAL TIME ZONE,
Oracle converts the datetime value from the database time zone to UTC
and converts back to the database time zone after performing the
arithmetic. For TIMESTAMP WITH TIME ZONE, the datetime value is always in UTC, so no conversion is necessary.
Support for Daylight Savings Times
Oracle automatically determines, for any given time zone region,
whether daylight savings is in effect and returns local time values
based accordingly. The datetime value is sufficient for Oracle to
determine whether daylight savings time is in effect for a given region
in all cases except boundary cases.
A boundary case occurs during the period when daylight savings goes
into or comes out of effect. For example, in the US-Pacific region,
when daylight savings goes into effect, the time changes from 2:00 a.m.
to 3:00 a.m. The one hour interval between 2 and 3 a.m. does not exist.
When daylight savings goes out of effect, the time changes from 2:00
a.m. back to 1:00 a.m., and the one-hour interval between 1 and 2 a.m.
is repeated.
To resolve these boundary cases, Oracle uses the TZR and TZD format elements, as described in Table 2-12. TZR represents the time zone region in datetime input strings. Examples are 'Australia/North', 'UTC', and 'Singapore'. TZD represents an abbreviated form of the time zone region with daylight savings information. Examples are 'PST' for US/Pacific standard time and 'PDT' for US/Pacific daylight time. To see a listing of valid values for the TZR and TZD format elements, query the TZNAME and TZABBREV columns of the V$TIMEZONE_NAMES dynamic performance view.
Datetime and Interval Example
The following example shows how to declare some datetime and interval datatypes.
CREATE TABLE my_table (
start_time TIMESTAMP,
duration_1 INTERVAL DAY (6) TO SECOND (5),
duration_2 INTERVAL YEAR TO MONTH);
The start_time column is of type TIMESTAMP. The implicit fractional seconds precision of TIMESTAMP is 6.
The duration_1 column is of type INTERVAL DAY TO SECOND. The maximum number of digits in field DAY
is 6 and the maximum number of digits in the fractional second is 5.
(The maximum number of digits in all other datetime fields is 2.)
The duration_2 column is of type INTERVAL YEAR TO MONTH. The maximum number of digits of the value in each field (YEAR and MONTH) is 2.
RAW and LONG RAW Datatypes
The RAW and LONG RAW
datatypes store data that is not to be interpreted (not explicitly
converted when moving data between different systems) by Oracle. These
datatypes are intended for binary data or byte strings. For example,
you can use LONG RAW to store graphics, sound, documents, or arrays of binary data, for which the interpretation is dependent on the use.
RAW is a variable-length datatype like VARCHAR2,
except that Oracle Net (which connects user sessions to the instance)
and the Import and Export utilities do not perform character conversion
when transmitting RAW or LONG RAW data. In contrast, Oracle Net and Import/Export automatically convert CHAR, VARCHAR2, and LONG data from the database character set to the user session character set (which you can set with the NLS_LANGUAGE parameter of the ALTER SESSION statement), if the two character sets are different.
When Oracle automatically converts RAW or LONG RAW data to and from CHAR data, the binary data is represented in hexadecimal form, with one hexadecimal character representing every four bits of RAW data. For example, one byte of RAW data with bits 11001011 is displayed and entered as 'CB'.
Large Object (LOB) Datatypes
The built-in LOB datatypes BLOB, CLOB, and NCLOB (stored internally) and BFILE
(stored externally), can store large and unstructured data such as
text, image, video, and spatial data up to 4 gigabytes in size.
When creating a table, you can optionally specify
different tablespace and storage characteristics for LOB columns or LOB
object attributes from those specified for the table.
LOB columns contain LOB locators that can refer to out-of-line or
in-line LOB values. Selecting a LOB from a table actually returns the
LOB's locator and not the entire LOB value. The DBMS_LOB package and Oracle Call Interface (OCI) operations on LOBs are performed through these locators.
LOBs are similar to LONG and LONG RAW types, but differ in the following ways:
- LOBs can be attributes of a user-defined datatype (object).
- The LOB locator is stored in the table column, either with or without the actual LOB value.
BLOB, NCLOB, and CLOB values can be stored in separate tablespaces. BFILE data is stored in an external file on the server.
- When you access a LOB column, the locator is returned.
- A LOB can be up to 4 gigabytes in size.
BFILE maximum size is operating system dependent, but cannot exceed 4 gigabytes.
- LOBs permit efficient, random, piece-wise access to and manipulation of data.
- You can define more than one LOB column in a table.
- With the exception of
NCLOB, you can define one or more LOB attributes in an object.
- You can declare LOB bind variables.
- You can select LOB columns and LOB attributes.
- You can insert
a new row or update an existing row that contains one or more LOB
columns and/or an object with one or more LOB attributes. (You can set
the internal LOB value to
NULL, empty, or replace the entire LOB with data. You can set the BFILE to NULL or make it point to a different file.)
- You can update a LOB row/column intersection or a LOB attribute with another LOB row/column intersection or LOB attribute.
- You can delete
a row containing a LOB column or LOB attribute and thereby also delete
the LOB value. Note that for BFILEs, the actual operating system file
is not deleted.
You can access and populate rows of an internal LOB column (a LOB column stored in the database) simply by issuing an INSERT or UPDATE
statement. However, to access and populate a LOB attribute that is part
of an object type, you must first initialize the LOB attribute using
the EMPTY_CLOB or EMPTY_BLOB function. You can then select the empty LOB attribute and populate it using the DBMS_LOB package or some other appropriate interface.
LOB columns are subject to the following restrictions:
- Distributed LOBs are not supported. Therefore, you cannot use a remote locator in
SELECT or WHERE clauses of queries or in functions of the DBMS_LOB package.
The following syntax is not supported for LOBs:
SELECT lobcol FROM table1@remote_site;
INSERT INTO lobtable SELECT type1.lobattr FROM table1@remote_
site;
SELECT DBMS_LOB.getlength(lobcol) FROM table1@remote_site;
However, you can use a remote locator in others parts of queries that
reference LOBs. The following syntax is supported on remote LOB
columns:
CREATE TABLE t AS SELECT * FROM table1@remote_site;
INSERT INTO t SELECT * FROM table1@remote_site;
UPDATE t SET lobcol = (SELECT lobcol FROM table1@remote_site);
INSERT INTO table1@remote_site ...
UPDATE table1@remote_site ...
DELETE table1@remote_site ...
For the first three types of statement, which contain
subqueries, only standalone LOB columns are allowed in the select list.
SQL functions or DBMS_LOB APIs on LOBs are not supported. For example, the following statement is supported:
CREATE TABLE AS SELECT clob_col FROM tab@dbs2;
However, the following statement is not supported:
CREATE TABLE AS SELECT dbms_lob.substr(clob_col) from tab@dbs2;
- Clusters cannot contain LOBs, either as key or nonkey columns.
- You cannot create a varray of LOBs.
- You cannot specify LOB columns in the
ORDER BY clause of a query, or in the GROUP BY clause of a query or in an aggregate function.
- You cannot specify a LOB column in a
SELECT ... DISTINCT or SELECT ... UNIQUE statement or in a join. However, you can specify a LOB attribute of an object type column in a SELECT ... DISTINCT statement or in a query that uses the UNION or MINUS set operator if the column's object type has a MAP or ORDER function defined on it.
- You cannot specify an
NCLOB as an attribute of an object type when creating a table. However, you can specify NCLOB parameters in methods.
- You cannot specify LOB columns in
ANALYZE ... COMPUTE or ANALYZE ... ESTIMATE statements.
- You cannot store LOBs in
AUTO segment-managed tablespaces.
- In a PL/SQL trigger body of an
BEFORE ROW DML trigger, you can read the :old value of the LOB, but you cannot read the :new value. However, for AFTER ROW and INSTEAD OF DML triggers, you can read both the :new and :old values.
- You cannot define an
UPDATE DML trigger on a LOB column.
- You cannot specify a LOB as a primary key column.
- You cannot
specify a LOB column as part of an index key. However, you can specify
a LOB column in the function of a function-based index or in the
indextype specification of a domain index. In addition, Oracle Text
lets you define an index on a CLOB column.
- In an
INSERT or UPDATE operation, you can bind data of any size to a LOB column, but you cannot bind data to a LOB attribute of an object type. In an INSERT ... AS SELECT operation, you can bind up to 4000 bytes of data to LOB columns.
- If a table has both
LONG and LOB columns, you cannot bind more than 4000 bytes of data to both the LONG and LOB columns in the same SQL statement. However, you can bind more than 4000 bytes of data to either the LONG or the LOB column.
The following example shows how the sample table pm.print_media was created. (This example assumes the existence of the textdoc_tab object table, which is nested table in the print_media table.)
CREATE TABLE print_media
( product_id NUMBER(6)
, ad_id NUMBER(6)
, ad_composite BLOB
, ad_sourcetext CLOB
, ad_finaltext CLOB
, ad_fltextn NCLOB
, ad_textdocs_ntab textdoc_tab
, ad_photo BLOB
, ad_graphic BFILE
, ad_header adheader_typ
, press_release LONG
) NESTED TABLE ad_textdocs_ntab STORE AS textdocs_nestedtab;
BFILE Datatype
The BFILE datatype enables access to binary file LOBs that are stored in file systems outside the Oracle database. A BFILE column or attribute stores a BFILE
locator, which serves as a pointer to a binary file on the server's
file system. The locator maintains the directory alias and the
filename.
You can change the filename and path of a BFILE without affecting the base table by using the BFILENAME function.
Binary file LOBs do not participate in transactions and are not
recoverable. Rather, the underlying operating system provides file
integrity and durability. The maximum file size supported is 4
gigabytes.
The database administrator must ensure that the file exists and that
Oracle processes have operating system read permissions on the file.
The BFILE datatype enables read-only
support of large binary files. You cannot modify or replicate such a
file. Oracle provides APIs to access file data. The primary interfaces
that you use to access file data are the DBMS_LOB package and the OCI.
BLOB Datatype
The BLOB datatype stores unstructured binary large objects. BLOBs can be thought of as bitstreams with no character set semantics. BLOBs can store up to 4 gigabytes of binary data.
BLOBs have full transactional support. Changes made through SQL, the DBMS_LOB package, or the OCI participate fully in the transaction. BLOB value manipulations can be committed and rolled back. However, you cannot save a BLOB locator in a PL/SQL or OCI variable in one transaction and then use it in another transaction or session.
CLOB Datatype
The CLOB datatype stores single-byte and
multibyte character data. Both fixed-width and variable-width character
sets are supported, and both use the CHAR database character set. CLOBs can store up to 4 gigabytes of character data.
CLOBs have full transactional support. Changes made through SQL, the DBMS_LOB package, or the OCI participate fully in the transaction. CLOB value manipulations can be committed and rolled back. However, you cannot save a CLOB locator in a PL/SQL or OCI variable in one transaction and then use it in another transaction or session.
NCLOB Datatype
The NCLOB datatype stores Unicode data
using the national character set. Both fixed-width and variable-width
character sets are supported. NCLOBs can store up to 4 gigabytes of character text data.
NCLOBs have full transactional support. Changes made through SQL, the DBMS_LOB package, or the OCI participate fully in the transaction. NCLOB value manipulations can be committed and rolled back. However, you cannot save an NCLOB locator in a PL/SQL or OCI variable in one transaction and then use it in another transaction or session.
ROWID Datatype
Each row in the database has an address. You can examine a row's address by querying the pseudocolumn ROWID. Values of this pseudocolumn are hexadecimal strings representing the address of each row. These strings have the datatype ROWID. You can also create tables and clusters that contain actual columns having the ROWID datatype. Oracle does not guarantee that the values of such columns are valid rowids.
Restricted Rowids
Beginning with Oracle8, Oracle SQL incorporated an extended format for
rowids to efficiently support partitioned tables and indexes and
tablespace-relative data block addresses (DBAs) without ambiguity.
Character values representing rowids in Oracle7 and earlier releases are called restricted rowids. Their format is as follows:
block.row.file
where:
block
is a hexadecimal string identifying the data block of the datafile
containing the row. The length of this string depends on your operating
system.
row is a four-digit hexadecimal string identifying the row in the data block. The first row of the block has a digit of 0.
file
is a hexadecimal string identifying the database file containing the
row. The first datafile has the number 1. The length of this string
depends on your operating system.
Extended Rowids
The extended ROWID datatype stored in a user column includes the data in the restricted rowid plus a data object number.
The data object number is an identification number assigned to every
database segment. You can retrieve the data object number from the data
dictionary views USER_OBJECTS, DBA_OBJECTS, and ALL_OBJECTS. Objects that share the same segment (clustered tables in the same cluster, for example) have the same object number.
Extended rowids are stored as base 64 values that can contain the
characters A-Z, a-z, 0-9, as well as the plus sign (+) and forward
slash (/). Extended rowids are not available directly. You can use a
supplied package, DBMS_ROWID,
to interpret extended rowid contents. The package functions extract and
provide information that would be available directly from a restricted
rowid as well as information specific to extended rowids.
Compatibility and Migration
The restricted form of a rowid is still supported in Oracle9i for backward compatibility, but all tables return rowids in the extended format.
UROWID Datatype
Each row in a database has an address. However, the rows of some tables
have addresses that are not physical or permanent or were not generated
by Oracle. For example, the row addresses of index-organized tables are
stored in index leaves, which can move. Rowids of foreign tables (such
as DB2 tables accessed through a gateway) are not standard Oracle
rowids.
Oracle uses "universal rowids" (urowids)
to store the addresses of index-organized and foreign tables.
Index-organized tables have logical urowids and foreign tables have
foreign urowids. Both types of urowid are stored in the ROWID pseudocolumn (as are the physical rowids of heap-organized tables).
Oracle creates logical rowids based on a table's primary key. The
logical rowids do not change as long as the primary key does not
change. The ROWID pseudocolumn of an index-organized table has a datatype of UROWID. You can access this pseudocolumn as you would the ROWID pseudocolumn of a heap-organized table (that is, using the SELECT ROWID statement). If you wish to store the rowids of an index-organized table, you can define a column of type UROWID for the table and retrieve the value of the ROWID pseudocolumn into that column.
Previous Chapter | Next Chapter
Discuss Article
More Tutorials on Oracle dba ...
Source :Oracle Documentation
Liked it ? Want to share it ? Social Bookmarking
Want to share or request Oracle Tutorial articles to become a Oracle DBA. Direct your requests
to
webmaster@oracleonline.info