Mur
User
 Platinum Boarder
| Posts: 116 |   | Karma: 0 |
|
RE: use tempory table
|
|
Posted: 2002/07/07 23:38 |
|
|
|
|
From Oracle8i Concepts: "For transaction-specific temporary tables, data exists for the duration of the transaction" If you use implicit transaction control, NCOCI starts transaction, inserts record and then commits. At this moment record disappears. You should use explicit transactin control (DataBase.StartTransaction, Commit, Rollback) Or use session-specific temporary tables.
|
|