BUSINESSPROCESSOUTPUT
Contains data describing the output of a particular business process run.
Primary Key
Primary Key |
Field Type |
ID |
uniqueidentifier |
Fields
Field |
Field Type |
Null |
Notes |
Description |
TABLENAME |
nvarchar(128) |
|
Default = '' |
The name of the table containing the output. |
TABLEKEY |
nvarchar(50) |
|
Default = '' |
A key by which this table will be referenced internally. |
DATEADDED |
datetime |
|
Default = getdate() |
Indicates the date this record was added. |
DATECHANGED |
datetime |
|
Default = getdate() |
Indicates the date this record was last changed. |
TS |
timestamp |
|
|
Timestamp. |
TSLONG |
bigint (Computed) |
yes |
CONVERT(bigint, TS) |
Numeric representation of the timestamp. |
DOWNLOADPARAMETERS |
xml |
yes |
|
Used to hold parameters passed to the server when the output is downloaded. |
COLUMNMETADATA |
xml |
yes |
|
Data describing certain additional properties of the columns in the output table. |
EXPORTCOLUMNMETADATA |
xml |
yes |
|
Metadata for columns during export, such as column ordering and sort direction. |
MARTKEY |
nvarchar(255) |
|
Default = '' |
|
Foreign Keys
Foreign Key |
Field Type |
Null |
Notes |
Description |
BUSINESSPROCESSSTATUSID |
uniqueidentifier |
|
BUSINESSPROCESSSTATUS.ID
|
The ID of the business process run whose output is represented. |
ADDEDBYID |
uniqueidentifier |
|
CHANGEAGENT.ID
|
FK to CHANGEAGENT. |
CHANGEDBYID |
uniqueidentifier |
|
CHANGEAGENT.ID
|
FK to CHANGEAGENT. |
Indexes
Index Name |
Fields |
Unique |
Primary |
Clustered |
IX_BUSINESSPROCESSOUTPUT_DATEADDED |
DATEADDED |
|
|
yes |
IX_BUSINESSPROCESSOUTPUT_DATECHANGED |
DATECHANGED |
|
|
|
PK_BUSINESSPROCESSOUTPUT |
ID |
yes |
yes |
|
UIX_BUSINESSPROCESSOUTPUT_BUSINESSPROCESSSTATUSID_TABLEKEY |
BUSINESSPROCESSSTATUSID, TABLEKEY |
yes |
|
|
UIX_BUSINESSPROCESSOUTPUT_TABLEKEY |
BUSINESSPROCESSSTATUSID, TABLEKEY |
yes |
|
|
Triggers
Referenced by