Get a specific column
get
                    /database/objects/columns/{owner},{table_name},{column_name}
Returns the corresponding record from DBA_TAB_COLUMNS or ALL_TAB_COLUMNS view depending on role at runtime. A client requires SQL Administrator or SQL Developer role to invoke this service.
                
                Request
Path Parameters
                - 
                    column_name(required):  string
                    
                    Name of the column.
 - 
                    owner(required):  string
                    
                    Owner for the index.
 - 
                    table_name(required):  string
                    
                    Name of the table the column belongs to.
 
There's no request body for this operation.
Back to TopResponse
Supported Media Types
                - application/json
 
200 Response
Information on a specific column.
                            
                            
                                Root Schema : DatabaseObjectsColumnsItem
    
    	Type: 
    	
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    objectDescribes the column of table, view, or cluster in the database.
    
    
    
    
        Show Source
        - 
                
                    
                    avg_col_len: integer
                    
                    
                     
                    
                
                
                Average length of the column (in bytes).
 - 
                
                    
                    char_col_decl_length: number
                    
                    
                     
                    
                
                
                Declaration length of the character type column.
 - 
                
                    
                    char_length: integer
                    
                    
                     
                    
                
                
                Displays the length of the column in characters.
 - 
                
                    
                    char_used: string
                    
                    
                     
                    
                
                
                Indicates that the column uses BYTE length semantics (B) or CHAR length semantics (C), or whether the data type is not any of the following (NULL): CHAR, VARCHAR2, NCHAR, NVARCHAR2.
 - 
                
                    
                    character_set_name: string
                    
                    
                     
                    
                
                
                Name of the character set.
 - 
                
                    
                    collation: string
                    
                    
                     
                    
                
                
                Collation for the column. Only applies to columns with character data types.
 - 
                
                    
                    column_id: integer
                    
                    
                     
                    
                
                
                Sequence number of the column as created.
 - 
                
                    
                    column_name: string
                    
                    
                     
                    
                
                
                Column name.
 - 
                
                    
                    data_default: integer
                    
                    
                     
                    
                
                
                Default value for the column.
 - 
                
                    
                    data_length: integer
                    
                    
                     
                    
                
                
                Length of the column (in bytes).
 - 
                
                    
                    data_precision: integer
                    
                    
                     
                    
                
                
                Decimal precision for NUMBER data type; binary precision for FLOAT data type; NULL for all other data types.
 - 
                
                    
                    data_scale: integer
                    
                    
                     
                    
                
                
                Digits to the right of the decimal point in a number.
 - 
                
                    
                    data_type: string
                    
                    
                     
                    
                
                
                Data type of the column.
 - 
                
                    
                    data_type_mod: string
                    
                    
                     
                    
                
                
                Data type modifier of the column.
 - 
                
                    
                    data_type_owner: string
                    
                    
                     
                    
                
                
                Owner of the data type of the column.
 - 
                
                    
                    data_upgraded: string
                    
                    
                     
                    
                
                
                Indicates whether the column data has been upgraded to the latest type version format (YES) or not (NO).
 - 
                
                    
                    default_length: number
                    
                    
                     
                    
                
                
                Length of the default value for the column.
 - 
                
                    
                    default_on_null: string
                    
                    
                     
                    
                
                
                Indicates whether the column has DEFAULT ON NULL semantics (YES) or not (NO).
 - 
                
                    
                    density: number
                    
                    
                     
                    
                
                
                If a histogram is available on COLUMN_NAME, then this column displays the selectivity of a value that spans fewer than 2 endpoints in the histogram. It does not represent the selectivity of values that span 2 or more endpoints. If a histogram is not available on COLUMN_NAME, then the value of this column is 1/NUM_DISTINCT.
 - 
                
                    
                    evaluation_edition: string
                    
                    
                     
                    
                
                
                Name of the edition in which editioned objects referenced in an expression column are resolved.
 - 
                
                    
                    global_stats: string
                    
                    
                     
                    
                
                
                GLOBAL_STATS will be YES if statistics are gathered or incrementally maintained, otherwise it will be NO.
 - 
                
                    
                    high_value: string
                    
                    
                     
                    
                
                
                High value in the column.
 - 
                
                    
                    histogram: string
                    
                    
                     
                    
                
                
                Indicates existence/type of histogram.
 - 
                
                    
                    identity_column: string
                    
                    
                     
                    
                
                
                Indicates whether this is an identity column (YES) or not (NO).
 - 
                
                    
                    last_analyzed: string
                    
                    
                     
                    
                
                
                Date on which this column was most recently analyzed.
 - 
                
                    
                    links: array
                    
                    
                
                
                    links
                
                
                
 - 
                
                    
                    low_value: string
                    
                    
                     
                    
                
                
                Low value in the column.
 - 
                
                    
                    nullable: string
                    
                    
                     
                    
                
                
                Indicates whether a column allows NULLs. The value is N if there is a NOT NULL constraint on the column or if the column is part of a PRIMARY KEY. The constraint should be in an ENABLE VALIDATE state.
 - 
                
                    
                    num_buckets: integer
                    
                    
                     
                    
                
                
                Number of buckets in the histogram for the column.
 - 
                
                    
                    num_distinct: number
                    
                    
                     
                    
                
                
                Number of distinct values in the column.
 - 
                
                    
                    num_nulls: integer
                    
                    
                     
                    
                
                
                Number of NULLs in the column.
 - 
                
                    
                    owner: string
                    
                    
                     
                    
                
                
                Owner of the table, view, or cluster.
 - 
                
                    
                    sample_size: integer
                    
                    
                     
                    
                
                
                Sample size used in analyzing this column.
 - 
                
                    
                    sensitive_column: string
                    
                    
                     
                    
                
                
                Indicates whether this is a sensitive column (YES) or not (NO).
 - 
                
                    
                    table_name: string
                    
                    
                     
                    
                
                
                Name of the table, view, or cluster.
 - 
                
                    
                    unusable_before: string
                    
                    
                     
                    
                
                
                Name of the oldest edition in which the index may be used as part of a query plan.
 - 
                
                    
                    unusable_beginning: string
                    
                    
                     
                    
                
                
                Name of the edition for which the index may not be used as part of a query plan in this edition or any of its descendants.
 - 
                
                    
                    user_stats: string
                    
                    
                     
                    
                
                
                Indicates whether statistics were entered directly by the user (YES) or not (NO).
 - 
                
                    
                    v80_fmt_image: string
                    
                    
                     
                    
                
                
                Indicates whether the column data is in release 8.0 image format (YES) or not (NO).