<comment>Defragment the database before enabling auto defrag, so that the biggest part of the work is done during migration.</comment>
<comment>Defragment the database before enabling auto defrag, so that the biggest part of the work is done during migration.</comment>
</sql>
</sql>
<sql>
<sql>
SET LOGSIZE 64;
SET FILES LOGSIZE 64;
<comment>Automatically run a CHECKPOINT when the log is above 64MB.</comment>
<comment>Automatically run a CHECKPOINT when the log is above 64MB. http://hsqldb.org/doc/guide/management-chapt.html#N150AB</comment>
</sql>
</sql>
<sql>
<sql>
SET CHECKPOINT DEFRAG 32;
SET FILES DEFRAG 50;
<comment>Automatically defragment on CHECKPOINT when the wasted space is above 32MB.</comment>
<comment>Sets the threshold in percentage for performing a DEFRAG during a checkpoint. http://hsqldb.org/doc/guide/management-chapt.html#N1506D</comment>