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;
|