EXPORTPROCESS
Contains information for the export business process .
Primary Key
| Primary Key |
Field Type |
| ID |
uniqueidentifier |
Fields
| Field |
Field Type |
Null |
Notes |
Description |
| NAME |
nvarchar(255) |
|
Default = '' |
Name of the export process. |
| DESCRIPTION |
nvarchar(1000) |
|
Default = '' |
Description of the export process. |
| 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. |
Foreign Keys
| Foreign Key |
Field Type |
Null |
Notes |
Description |
| ADHOCQUERYID |
uniqueidentifier |
yes |
ADHOCQUERY.ID
|
Indicates the ad-hoc query to use for the export. |
| SMARTQUERYINSTANCEID |
uniqueidentifier |
yes |
SMARTQUERYINSTANCE.ID
|
Indicates the smart query instance to use for the export. |
| ADDEDBYID |
uniqueidentifier |
|
CHANGEAGENT.ID
|
FK to CHANGEAGENT. |
| CHANGEDBYID |
uniqueidentifier |
|
CHANGEAGENT.ID
|
FK to CHANGEAGENT. |
| EXPORTDEFINITIONID |
uniqueidentifier |
yes |
EXPORTDEFINITION.ID
|
Indicates the export definition to use for the export. |
| SELECTIONID |
uniqueidentifier |
yes |
IDSETREGISTER.ID
|
Indicates the selection to use for the export. |
Indexes
| Index Name |
Fields |
Unique |
Primary |
Clustered |
| IX_EXPORTPROCESS_DATEADDED |
DATEADDED |
|
|
yes |
| IX_EXPORTPROCESS_DATECHANGED |
DATECHANGED |
|
|
|
| PK_EXPORTPROCESS |
ID |
yes |
yes |
|
Triggers
Referenced by