-909 THE OBJECT HAS BEEN DELETED OR ALTERED

Explanation

The application program has performed one of the following actions:
  • Dropped or altered a table and then accessed it.
  • Dropped or altered an index and then accessed the table on which the index was defined.
  • Executed the EXCHANGE statement on a table more than once without executing a COMMIT statement between consecutive EXCHANGE statements.
  • Start of changeExecuted the EXCHANGE statement on a table and then accessed it.End of change

System action

The statement cannot be processed.

System programmer response

Correct the application program in one of the following ways:
  • Do not drop or alter a table, and then access it in the same application program.
  • Do not drop or alter an index, and then access the table on which it is defined in the same application program.
  • If the application program contains consecutive EXCHANGE statements for a table, include a COMMIT statement between the EXCHANGE statements.
  • Start of changeIf the applications contains an EXCHANGE statement and then accesses the table, add a COMMIT statement after the EXCHANGE statement and before accessing the table.End of change

SQLSTATE

57007