ON COMMIT
Description
Specifies the behaviour of the temporary table when a commit is done. (Sybase SQL Language Reference)
This syntax is partially supported.
Grammar Syntax
[ ON COMMIT { DELETE | PRESERVE } ROWS ]Sample Source Patterns
Input Code:
CREATE LOCAL TEMPORARY TABLE temp_employees (
DATA VARCHAR(255)
) ON COMMIT DELETE ROWS;
CREATE LOCAL TEMPORARY TABLE temp_projects (
DATA VARCHAR(255)
) ON COMMIT PRESERVE ROWS; Output Code:
Related EWIs
SSC-FDM-0008: On Commit not supported.
Last updated
