Reference Manual
CHAPTER 11. SQL Preprocessor Error Messages
This section lists all SQL preprocessor warnings.
Item |
Value |
---|---|
Code |
2660 |
You have specified an into clause on a SELECT statement in a declare cursor. Note that the into clause will be ignored.
Item |
Value |
---|---|
Code |
2661 |
You have used a SQL statement that will probably cause a syntax error when the statement is sent to the database engine.
Item |
Value |
---|---|
Code |
2662 |
You have used a SQL function that is unknown to the preprocessor and will probably cause an error when the statement is sent to the database engine.
Item |
Value |
---|---|
Code |
2663 |
You have used a SQL function with the wrong number of parameters. This will likely cause an error when the statement is sent to the database engine.
Item |
Value |
---|---|
Code |
2664 |
You have used a static statement name and preprocessed with the -r reentrancy switch. Static statement names cause static variables to be generated that are filled in by the database. If two threads use the same statement, contention arises over this variable. Use a local host variable as the statement identifier instead of a static name.