std_oper_attr
- Last UpdatedNov 13, 2024
- 1 minute read
The std_oper_attr table allows user defined attributes to be defined for each standard operation.
The attr_id must already be defined in the attr table with attr_grp = 7.
|
Field |
Datatype |
PK |
Nulls? |
Description |
|---|---|---|---|---|
|
oper_id |
string40 |
Y |
N |
Identify operation |
|
attr_id |
int32 |
Y |
N |
Identify attribute |
|
attr_value |
string80 |
N |
Y |
Value for this attribute for this operation |
|
notes |
nvarchar(max) |
N |
Y |
Notes for this combination |
|
last_edit_comment |
string254 |
N |
Y |
Reserved for internal use to indicate why this record was changed |
|
last_edit_by |
string40 |
N |
N |
Who last changed this record |
|
last_edit_at |
tdatetime |
N |
N |
When this record was last changed |
|
row_id |
bigint64 |
N |
N |
Unique row identifier, for audit trail. |
FK from oper_id to std_oper. (Cascade delete)
FK from attr_id to attr. (Cascade delete)