NVARCHAR1
|
|||
NVARCHAR1
|
|||
NVARCHAR1
|
|||
signed INTEGER1
|
|||
NVARCHAR1
|
|||
signed BIGINT1
|
If DATA_TYPE is CHAR
or VARCHAR, this column contains the maximum length of the column
in characters. For datetime data types, this is the total number of
characters required to display the value when it is converted to characters.
For numeric data types, this is either the total number of digits
or the total number of bits allowed in the column, according to the
NUM_PREC_RADIX column. For interval data types, this is the number
of characters in the character representation of the interval literal.
|
||
signed BIGINT1
|
|||
If DATA_TYPE is TIME
and TIMESTAMP, this column contains the number of digits in the fractional
seconds component. For the other data types, this is the decimal digits
of the column on the data source. For interval data types that contain
a time component, this column contains the number of digits to the
right of the decimal point (fractional seconds). For interval data
types that do not contain a time component, this column is 0. Null
is returned for data types where DECIMAL_DIGITS is not applicable.
|
|||
If the value returned
is 10, the values in COLUMN_SIZE and DECIMAL_DIGITS contain the number
of decimal digits allowed for the column. For example, a DECIMAL(12,5)
column would return 10 for NUM_PREC_RADIX, 12 for COLUMN_SIZE, and
5 for DECIMAL_DIGITS; a FLOAT column could return 10 for NUM_PREC_RADIX,
15 for COLUMN_SIZE, and null for DECIMAL_DIGITS.
|
|||
The value returned for
this column is different from the value returned for the IS_NULLABLE
column. The NULLABLE column indicates with certainty that a column
can accept null values, but cannot indicate with certainty that a
column does not accept null values. The IS_NULLABLE column indicates
with certainty that a column cannot accept null values, but cannot
indicate with certainty that a column accepts null values.
|
|||
The default value of
the column. The value in this column should be interpreted as a string
if it is enclosed in quotation marks.
If null was specified
as the default value, then this column is the word NULL, not enclosed
in quotation marks. If the default value cannot be represented without
truncation, then this column contains TRUNCATED, not enclosed in quotation
marks. If no default value is specified, then this column is null.
|
|||
signed INTEGER1
|
This can be a SAS FedSQL
data type or a remote table driver-specific data type. This column
is the same as the DATA_TYPE column, with the exception of datetime
and interval data types. This column returns the nonconcise data type
(such as DATETIME or INTERVAL), rather than the concise data type
(such as DATE or YEAR_TO_MONTH) for datetime and interval data types.
If this column returns DATETIME or INTERVAL, the specific data type
can be determined from the TKTS_DATETIME_SUB column.
|
||
signed INTEGER1
|
|||
NVARCHAR1
|
|||
1Value cannot be a null |