Safari Books Online is a digital library providing on-demand subscription access to thousands of learning resources.
You can use the DESCRIBE command to get information on object types. The following examples describe address_typ and person_typ:
DESCRIBE address_typ Name Null? Type ----------------------------------------- -------- ------------ STREET VARCHAR2(15) CITY VARCHAR2(15) STATE CHAR(2) ZIP VARCHAR2(5) DESCRIBE person_typ Name Null? Type ----------------------------------------- -------- ------------ ID NUMBER FIRST_NAME VARCHAR2(10) LAST_NAME VARCHAR2(10) DOB DATE PHONE VARCHAR2(12) ADDRESS ADDRESS_TYP