High Availability Guide : Error codes for HotStandby : solidDB® table errors
  
solidDB® table errors
solidDB® database table errors are caused by erroneous SQL statements and are detected by solidDB®. Administrative actions are not needed.
This section lists the solidDB® table errors that are related to HotStandby. A full list of the errors in the Table class is available in section solidDB® table errors in the solidDB® Administrator Guide.
Code
Class
Type
Description
13068
Table
Error
Server shutdown in progress
Meaning: You are unable to complete this operation because server shutdown is in progress.
13123
Table
Error
Table 'table_name' is not empty
Meaning: This operation can only be executed when a table is empty. For example, you can only change a table from disk-based to in-memory (or vice-versa) when the table is empty.
13167
Table
Error
Only M-tables can be transient
Meaning: You cannot create a transient table that is disk-based. For example, the following SQL statement will get this error message:
CREATE TRANSIENT TABLE t1 (i INT) STORE DISK;
13170
Table
Error
Only M-tables can be temporary
Meaning: You cannot create a temporary table that is disk-based. For example, the following SQL statement will get this error message:
CREATE TEMPORARY TABLE t1 (i INT) STORE DISK;
See also
Error codes for HotStandby