Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

(The error occurs when  MEM_MAX_DB_SIZE is exceeded because the transaction tried to expand.)

Note

Each memory tablespace has its own MAXSIZE. This error not only occurs when it has reached its MAXSIZE but also when the sum of all the memory tablespaces exceeds MEM_MAX_DB_SIZE.

  • Restarting Altibase server after increasing MEM_MAX_DB_SIZE
    Code Block
    languagesql
    Shell> vi $ALTIBASE_HOME/conf/altibase.properties
    ....
    ....
    UNIXDOMAIN_FILEPATH    =?/trc/cm-unix
    MEM_MAX_DB_SIZE        =  1G             <===== Change this value to the appropriate size (Using GB/MB unit)
    LOG_FILE_SIZE          =  10M
    ....
    ....
    :wq!
    
    Shell> server restart
    It needs to restart the server after modification.

...