on commit delete rows and on commit preserve rows
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/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- Color Rows and Columns
- JavaScript rows 屬性JavaScript
- FIRST_ROWS_n(轉)
- F. Color Rows and Columns
- git commit後如何取消commitGitMIT
- binlog_rows_query_log_events
- Git commit 之後,想撤銷 commitGitMIT
- [20180628]expdp與rows=n.txt
- git commit 彈出編輯器後報錯: Aborting commit due to empty commit message.GitMIT
- C#中使用Rows.Add新增新行和Rows.Remove刪除指定行列的資料C#REM
- git commit --amendGitMIT
- AWS Code CommitMIT
- Commit規範MIT
- 隨筆MySQL:Searching rows for update狀態解析MySql
- CF2000F Color Rows and Columns 題解
- 關於Git commitGitMIT
- Git拆分commit提交GitMIT
- git commit 規範GitMIT
- Git commit規範GitMIT
- GORM 之 for (rows.Next) 提前退出別忘了 CloseGoORM
- GORM之for(rows.Next)提前退出別忘了CloseGoORM
- python中的一個現象,db.commit和db.commit()PythonMIT
- 撤銷 git commit --amendGitMIT
- Git Commit 標準化GitMIT
- git修改commit註釋GitMIT
- Git插入新的commitGitMIT
- Git刪除指定commitGitMIT
- Git commit message 規範GitMIT
- git 修改 commit 資訊GitMIT
- 撤銷 git commit –amendGitMIT
- ordered_commit流程梳理MIT
- Async Commit 原理介紹MIT
- 如何修改git commit message?GitMIT
- DataTable.ImportRow()與DataTable.Rows.Add()的區別Import
- Extract rows from a CORRUPT table creating ROWID from DBA_EXTENTS
- 132 SVN提交報錯"Commit blocked by pre-commit hook"的解決辦法MITBloCHook
- Git 合併指定的commitGitMIT
- git commit提交空內容GitMIT
- Git修改commit提交資訊GitMIT