VEHICLE

The VEHICLE table contains all HOLDING records that are vehicles. For example, Mazda M3, Subaru Outback, or Honda Civic.

This table is used by the following domains.
Name Comment Datatype Null Option Is PK
HOLDING_ID A unique, system-generated key that identifies a party holding in the system. BIGINT Not Null Yes
VIN_NUM The unique 17-digit vehicle identification number. VARCHAR(20) Null No
VEHICLE_MAKE The manufacturer name of the vehicle. VARCHAR(20) Null No
VEHICLE_MODEL The vehicle model as identified by the manufacturer. VARCHAR(20) Null No
VEHICLE_YEAR The year the vehicle was built. BIGINT Null No
LAST_UPDATE_DT When a record is added or updated, this field is updated with the date and time. On subsequent updates, the system uses this information to ensure that the update request includes a matching date and time on this field; if it does not, the update fails. TIMESTAMP Not Null No
LAST_UPDATE_USER The ID of the user who last updated the data. VARCHAR(20) Null No
LAST_UPDATE_TX_ID A unique, system-generated key that identifies the specific transaction within the log system that either created, updated, or deleted the data row. BIGINT Null No