Field |
Field Type |
Null |
Notes |
Description |
ALLOWVALIDATION |
bit |
|
Default = 0 |
Signifies whether or not addresses in this country may be validated. |
VALIDATIONCOUNTRYCODE |
tinyint |
|
Default = 0 |
Maps the country records to a constant enumeration which represents the countries supported by address validation. |
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) |
 |
CONVERT(bigint, TS) |
Numeric representation of the timestamp. |
VALIDATIONCOUNTRY |
nvarchar(14) (Computed) |
 |
CASE [VALIDATIONCOUNTRYCODE] WHEN 0 THEN N'' WHEN 1 THEN N'Australia' WHEN 2 THEN N'Canada' WHEN 3 THEN N'United Kingdom' WHEN 4 THEN N'United States' WHEN 5 THEN N'New Zealand' END |
Provides a translation for the 'VALIDATIONCOUNTRYCODE' field. |