TimesTen Error Messages

TT-03305

Invalid number of column names specified


Cause

Possible causes for this error are:

  • You specified too many column names.
  • You attempted to execute a CREATE TABLE AS SELECT statement and the number of columns specified for the table does not match the projected columns in SELECT. For example, CREATE TABLE atab1(c1) AS SELECT c1, c2 FROM atab; or CREATE TABLE atab1(c1, c2) AS SELECT c1 FROM atab;.

Action

Either use fewer column names or modify your statement so that the number of columns specified for the table matches the projected columns in SELECT, and then retry the operation.


Additional Information

TimesTen cannot perform the operation.