ScalarDL TableStore Error Codes
This page provides a list of error codes in ScalarDL TableStore.
Error code classes and descriptions​
| Class | Description |
|---|---|
DL-TABLE-STORE-4xxxx | Errors for the user error category |
DL-TABLE-STORE-4xxxx status codes​
The following are status codes and messages for the user error category.
DL-TABLE-STORE-414001​
Message
Syntax error. Line=%d, Offset=%d, Length=%d, Code=%s
Solution
Fix the syntax error at the specified location in your query.
DL-TABLE-STORE-414002​
Message
Syntax error. The primary key column must be specified only once in a table.
Solution
Fix the primary key specification to specify each primary key column only once.
DL-TABLE-STORE-414003​
Message
Syntax error. The specified column constraint is invalid.
Solution
Fix the column constraints to use valid syntax.
DL-TABLE-STORE-414004​
Message
Syntax error. The specified data type is invalid.
Solution
Fix the data type to use a valid type.
DL-TABLE-STORE-414005​
Message
Syntax error. The specified INSERT statement is invalid.
Solution
Fix the syntax error in the INSERT statement.
DL-TABLE-STORE-414006​
Message
Syntax error. The specified statement is invalid.
Solution
Fix the syntax error in the statement.
DL-TABLE-STORE-414007​
Message
Syntax error. The specified expression is invalid. Expression: %s
Solution
Fix the syntax error in the expression.
DL-TABLE-STORE-414008​
Message
Syntax error. The specified literal is invalid. Literal: %s
Solution
Fix the syntax error in the literal.
DL-TABLE-STORE-414009​
Message
Syntax error. The specified format of the update target column is invalid.
Solution
Fix the update target column format to use valid syntax.
DL-TABLE-STORE-414010​
Message
Syntax error. The specified table is invalid. Table: %s
Solution
Fix the syntax error in the table specification.
DL-TABLE-STORE-414011​
Message
Syntax error. The specified column is invalid. Column: %s
Solution
Fix the syntax error in the column specification.
DL-TABLE-STORE-414012​
Message
Syntax error. The specified condition is invalid. Condition: %s
Solution
Fix the syntax error in the condition.
DL-TABLE-STORE-414013​
Message
Syntax error. The specified JOIN condition is invalid. Condition: %s
Solution
Fix the syntax error in the JOIN condition.
DL-TABLE-STORE-414014​
Message
Syntax error. The specified JOIN type is invalid.
Solution
Fix the syntax error in the JOIN type.
DL-TABLE-STORE-414015​
Message
Syntax error. The specified projection is invalid. Projection: %s
Solution
Fix the syntax error in the projection.
DL-TABLE-STORE-414016​
Message
Syntax error. The specified LIMIT clause is invalid.
Solution
Fix the syntax error in the LIMIT clause.
DL-TABLE-STORE-414017​
Message
Syntax error. The specified SELECT statement is invalid.
Solution
Fix the syntax error in the SELECT statement.
DL-TABLE-STORE-414018​
Message
Syntax error. The specified WITH clause is not supported.
Solution
Remove the WITH clause from your query as it is not supported.
DL-TABLE-STORE-414019​
Message
Syntax error. The specified ORDER BY clause is not supported.
Solution
Remove the ORDER BY clause from your query as it is not supported.
DL-TABLE-STORE-414020​
Message
Syntax error. The specified OFFSET clause is not supported.
Solution
Remove the OFFSET clause from your query as it is not supported.
DL-TABLE-STORE-414021​
Message
Syntax error. The specified LET clause is not supported.
Solution
Remove the LET clause from your query as it is not supported.
DL-TABLE-STORE-414022​
Message
Syntax error. The specified EXCLUDE clause is not supported.
Solution
Remove the EXCLUDE clause from your query as it is not supported.
DL-TABLE-STORE-414023​
Message
Syntax error. The specified GROUP BY clause is not supported.
Solution
Remove the GROUP BY clause from your query as it is not supported.
DL-TABLE-STORE-414024​
Message
Syntax error. The specified HAVING clause is not supported.
Solution
Remove the HAVING clause from your query as it is not supported.
DL-TABLE-STORE-414025​
Message
Syntax error. The cross join and implicit join using comma-separated tables are not supported. Use a JOIN clause instead.
Solution
Use a JOIN clause instead of cross join or comma-separated tables.
DL-TABLE-STORE-414026​
Message
Syntax error. The specified set quantifier is not supported.
Solution
Remove the set quantifier from your query as it is not supported.
DL-TABLE-STORE-414027​
Message
The LIMIT clause is not supported except in the history query.
Solution
Remove the LIMIT clause from your query or use it only in history queries.
DL-TABLE-STORE-414028​
Message
The table alias is not supported in the information schema and history query.
Solution
Remove the table alias from your information schema or history query.
DL-TABLE-STORE-414029​
Message
Projection is not supported for the information schema query. Specify '*' instead.
Solution
Use '*' instead of specific column projections in your information schema query.
DL-TABLE-STORE-414030​
Message
The specified condition for the information schema query is invalid.
Solution
Fix the condition in your information schema query to use valid syntax and supported operators.
DL-TABLE-STORE-414031​
Message
Multiple statements are not supported.
Solution
Execute one statement at a time instead of multiple statements in a single request.