Stores metadata about dynamically created tables that are used in email jobs.
Primary Key
| Primary Key |
Field Type |
| ID |
uniqueidentifier |
Fields
| Field |
Field Type |
Null |
Notes |
Description |
| TABLENAME |
nvarchar(255) |
|
Default = '' |
Stores the name of a dynamically created table used in email jobs |
| 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 |
| EMAILJOBID |
int |
|
EmailJob.ID
|
FK to EMAILJOB |
| ADDEDBYID |
uniqueidentifier |
|
CHANGEAGENT.ID
|
FK to CHANGEAGENT. |
| CHANGEDBYID |
uniqueidentifier |
|
CHANGEAGENT.ID
|
FK to CHANGEAGENT. |
Indexes
| Index Name |
Fields |
Unique |
Primary |
Clustered |
| IX_EMAILJOBTEMPORARYMETATDATA_DATEADDED |
DATEADDED |
|
|
yes |
| IX_EMAILJOBTEMPORARYMETATDATA_DATECHANGED |
DATECHANGED |
|
|
|
| PK_EMAILJOBTEMPORARYMETATDATA |
ID |
yes |
yes |
|
| UC_EMAILJOBTEMPORARYMETATDATA_TABLENAME |
TABLENAME |
yes |
|
|
Triggers