select * from v$version
BANNER | BANNER_FULL | BANNER_LEGACY | CON_ID | Oracle Database 18c Enterprise Edition Release 18.0.0.0.0 - Production | Oracle Database 18c Enterprise Edition Release 18.0.0.0.0 - Production Version 18.1.0.0.0 | Oracle Database 18c Enterprise Edition Release 18.0.0.0.0 - Production | 0 |
---|
create an ordinary table
create table t (n number)
Table created.
do some ordinary dml
insert into t values (1)
1 row(s) inserted.
will this commit the insert into the ordinary table t?
create private temporary table ora$ptt_a (x number) on commit preserve definition
Table created.
rollback the insert
rollback
Statement processed.
select * from t
no data found