Table of Contents

Search

  1. About the Data Vault Message Reference
  2. Data Definition Language Errors
  3. Data Vault Repository Service Exit Codes
  4. Load Balancer and Administration Errors
  5. Data Vault Repository Administration CLI Errors
  6. Data Vault SQL Tool Messages
  7. Data Vault Loader Messages

Data Vault Message Reference

Data Vault Message Reference

0071

0071

Character constant too long, must be <= 1024.
Returned when a character constant longer than 1024 characters in length appears in the specification file.
If a string longer than 1024 characters is required, define multiple variables in the VAR section, each a subset of the full string. Another variable can then be defined using the concatenation of these substring variables, for example:
VAR
{
VAR1 'substring1'
VAR2 'substring2'
VAR3 'substring3'
VARSTRING (%VAR1 + %VAR2 + %VAR3)
}
The “VARSTRING” variable can be referenced wherever the full string is required. For instance:
table1
{
col1 %VARSTRING
}

0 COMMENTS

We’d like to hear from you!