Changing The Page Size
Similar to the example above to change the default database cache size, the database page size can also be changed using gbak
.
tux> # Check current page size (as root user!) tux> gstat -h employee | grep -i "page size" Page size 4096 tux> # Restore the database & change the page size. tux> gfix -shut -tran 60 employee tux> gbak -r o -page_size 8192 /backups/employee.fbk employee tux> # Check the new page size (as root user!) tux> gstat -h employee | grep -i "page size" Page size 8192