The derby.database.sqlAuthorization property, one of the user authorization properties, enables the SQL standard authorization mode for the database or system on which this property is set.
The possible values are:
SQL authorization for the database or system is enabled, which allows the use of GRANT and REVOKE statements.
SQL authorization for the database or system is disabled. After this property is set to TRUE, the property cannot be set back to FALSE.
The values are not case-sensitive.
Derby uses the type of user authentication that is specified with the derby.authentication.provider property.
If the derby.authentication.provider property specifies NATIVE authentication, Derby behaves as if derby.database.sqlAuthorization were set to TRUE, regardless of how derby.database.sqlAuthorization has been set by other means.
For more information about user authorization, see "Configuring user authorization" in the Derby Security Guide.
-- system-wide property
derby.database.sqlAuthorization=true
-- database-level property
CALL SYSCS_UTIL.SYSCS_SET_DATABASE_PROPERTY(
'derby.database.sqlAuthorization', 'true');
FALSE
This property is static; if you change it while Derby is running, the change does not take effect until you reboot.