Built-in type |
Choose a predefined data type for the column. Integers, character strings,
and dates are examples of predefined data types. For some of these types, you
can specify size and scale.- Size – Length of string columns, or the total number of digits to the left
and right of the decimal point in the result of any decimal arithmetic
for numeric columns. For numeric columns, the size is also called the
PRECISION value.
- Scale – Minimum number of digits after the decimal point when an arithmetic
result is truncated to the maximum PRECISION value.
- Units – Unit corresponding to the data type's size. Possible units include:
bits, bytes, characters, or digits. For CHAR and VARCHAR data types,
you can specify the unit as bytes or characters.
|
Domain |
Choose a domain. A domain is a named combination of built-in data types,
default value, check condition, and nullability. |
Compress values |
Compress column values. If a column is compressed, database server
activities such as indexing, data comparisons, and statistics generation may be
slightly slower if they involve the compressed column because the values must
be compressed when written, and decompressed when read. This option is not
available for certain built-in types. |
Maintain BLOB indexes for large values |
Maintain BLOB indexes for large values. Only character, binary, and bit
types support this option. |