CREATE EVENT statement [CR 617597]

An error appears in the CREATE EVENT statement documentation for DiskSpace event types. The statement that the disk space event types require Windows and are not available on UNIX platforms is incorrect.

The CREATE EVENT statement includes this new example:

This statement posts a message to the server log when free disk space on the device containing the transaction log file falls below 30 percent, but executes the handler no more than once every 300 seconds.

CREATE EVENT LowTxnLogDiskSpace
TYPE DBDiskSpace
WHERE event_condition( 'DBFreePercent' ) < 30
AND event_condition( 'Interval' ) >= 300
HANDLER
BEGIN
message 'Disk space for Transaction Log is low.';
END;