ALL_TYPE_ATTRS describes the attributes of the object types accessible to the current user.
DBA_TYPE_ATTRS describes the attributes of all object types in the database.
USER_TYPE_ATTRS describes the attributes of the object types owned by the current user. This view does not display the OWNER column.
| Column | Datatype | NULL | Description | 
|---|---|---|---|
| OWNER | VARCHAR2(30) | Owner of the type | |
| TYPE_NAME | VARCHAR2(30) | Name of the type | |
| ATTR_NAME | VARCHAR2(30) | Name of the attribute | |
| ATTR_TYPE_MOD | VARCHAR2(7) | Type modifier of the attribute: 
 | |
| ATTR_TYPE_OWNER | VARCHAR2(30) | Owner of the type of the attribute | |
| ATTR_TYPE_NAME | VARCHAR2(30) | Name of the type of the attribute | |
| LENGTH | NUMBER | Length of the CHARattribute, or maximum length of theVARCHARorVARCHAR2attribute. | |
| PRECISION | NUMBER | Decimal precision of the NUMBERorDECIMALattribute, or binary precision of theFLOATattribute. | |
| SCALE | NUMBER | Scale of the NUMBERorDECIMALattribute | |
| CHARACTER_SET _NAME | VARCHAR2(44) | Character set name of the attribute ( CHAR_CSorNCHAR_CS) | |
| ATTR_NO | NUMBER | Syntactical order number or position of the attribute as specified in the type specification or CREATE TYPEstatement (not to be used as an ID number) | |
| INHERITED | VARCHAR2(3) | Indicates whether the attribute is inherited from a supertype ( YES) or not (NO) | 
See Also: