on commit delete rows and on commit preserve rows

tolywang發表於2007-08-24

ON COMMIT
The ON COMMIT clause is relevant only if you are creating a temporary table. This clause specifies whether the data in the temporary table persists for the duration of a transaction or a session.




DELETE ROWS
Specify DELETE ROWS for a transaction-specific temporary table (this is the default). Oracle will truncate the table (delete all its rows) after each commit.

PRESERVE ROWS
Specify PRESERVE ROWS for a session-specific temporary table. Oracle will truncate the table (delete all its rows) when you terminate the session.

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/35489/viewspace-84878/,如需轉載,請註明出處,否則將追究法律責任。

相關文章