The derby.database.noAutoBoot property specifies that a database should not be automatically booted at startup time.
When this property is set to true, this database is booted only on the first connection. Otherwise, the database is booted at startup if the derby.system.bootAll property is set to true.
False.
-- database-level property
CALL SYSCS_UTIL.SYSCS_SET_DATABASE_PROPERTY(
'derby.database.noAutoBoot', 'true')
This property is static; if you change it while Derby is running, the change does not take effect until you reboot.