WebSphere Commerce database table: ACATTRDESC
This table stores locale-specific display information corresponding to the ACATTR table.
Column Descriptions Column Name Column Type Description ACATTR_ID BIGINT NOT NULL The attribute ID. It is a foreign key to ACATTR table. Together with the LANGUAGE_ID column in this table, it forms a primary key. DISPLAYNAME VARCHAR(254) NOT NULL The locale-specific display name for this attribute. DESCRIPTION VARCHAR(254) The description of this attribute. LANGUAGE_ID INTEGER NOT NULL The language ID. It is a foreign key to the the LANGUAGE table. Together the ACATTR_ID column, it forms a primary key. OPTCOUNTER SMALLINT Reserved for IBM internal use.
Indexes Index Name Indexed Column Names Index Type SQL060903235112900 ACATTR_ID+LANGUAGE_ID Primary Key Related reference
Constraints Constraint Name Column Names Foreign Table Name Foreign Column Names Constraint Type F_10 ACATTR_ID ACATTR ACATTR_ID Cascade F_9 LANGUAGE_ID LANGUAGE LANGUAGE_ID Cascade