RE7INTEGRATIONERROR
Stores errors that happen during RE7 Integration imports.
Primary Key
| Primary Key |
Field Type |
| ID |
uniqueidentifier |
Fields
| Field |
Field Type |
Null |
Notes |
Description |
| JOBID |
uniqueidentifier |
|
|
Unique ID to identify which import job the error belongs to. |
| RE7RECORDID |
int |
|
Default = 0 |
RE7 record ID of the record that failed. |
| MESSAGE |
nvarchar(4000) |
|
Default = '' |
Stores the error message from the exception. |
| 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 |
| ADDEDBYID |
uniqueidentifier |
|
CHANGEAGENT.ID
|
FK to CHANGEAGENT. |
| CHANGEDBYID |
uniqueidentifier |
|
CHANGEAGENT.ID
|
FK to CHANGEAGENT. |
Indexes
| Index Name |
Fields |
Unique |
Primary |
Clustered |
| IX_RE7INTEGRATIONERROR_DATEADDED |
DATEADDED |
|
|
yes |
| IX_RE7INTEGRATIONERROR_DATECHANGED |
DATECHANGED |
|
|
|
| IX_RE7INTEGRATIONERROR_JOBID |
JOBID |
|
|
|
| PK_RE7INTEGRATIONERROR |
ID |
yes |
yes |
|
Triggers