签到成功

知道了

CNDBA社区CNDBA社区

oracle global temporary table

2022-05-03 10:29 949 0 原创 oracle
作者: hbhe0316

针对global temporary table tsa01(id int) on commit preserve rows
1.在当前session drop table时候,必须先truncate该表
2.当另起一个session后,查看该表数据为空。http://www.cndba.cn/hbhe0316/article/107968

http://www.cndba.cn/hbhe0316/article/107968
http://www.cndba.cn/hbhe0316/article/107968
http://www.cndba.cn/hbhe0316/article/107968http://www.cndba.cn/hbhe0316/article/107968
http://www.cndba.cn/hbhe0316/article/107968
http://www.cndba.cn/hbhe0316/article/107968http://www.cndba.cn/hbhe0316/article/107968
http://www.cndba.cn/hbhe0316/article/107968
http://www.cndba.cn/hbhe0316/article/107968

SQL> create global temporary table tsa01(id int) on commit preserve rows;

Table created.

SQL> insert into tsa01 values (11);

1 row created.

SQL> select * from tsa01;

        ID
----------
        11

SQL> drop table tsa01;
drop table tsa01
           *
ERROR at line 1:
ORA-14452: attempt to create, alter or drop an index on temporary table already
in use


SQL> commit;

Commit complete.

SQL> drop table tsa01;
drop table tsa01
           *
ERROR at line 1:
ORA-14452: attempt to create, alter or drop an index on temporary table already
in use


SQL> truncate table tsa01;

Table truncated.

SQL> drop table tsa01;

Table dropped.

[oracle@db02 ~]$ sqlplus / as sysdba

SQL*Plus: Release 19.0.0.0.0 - Production on Tue May 3 10:25:37 2022
Version 19.15.0.0.0

Copyright (c) 1982, 2022, Oracle.  All rights reserved.


Connected to:
Oracle Database 19c Enterprise Edition Release 19.0.0.0.0 - Production
Version 19.15.0.0.0

SQL> select * from tsa01;

no rows selected

版权声明:本文为博主原创文章,未经博主允许不得转载。

oracle

用户评论
* 以下用户言论只代表其个人观点,不代表CNDBA社区的观点或立场
hbhe0316

hbhe0316

关注

1.只有承认无知,才能装下新的东西; 2.进步来自一点点滴滴的积累; 3.广博让你更优秀,而专业让你无法替代; 4.挫折和失败能够转换为一种财富。

  • 889
    原创
  • 1
    翻译
  • 13
    转载
  • 24
    评论
  • 访问:1154218次
  • 积分:1523
  • 等级:核心会员
  • 排名:第6名
精华文章
    最新问题
    查看更多+
    热门文章
      热门用户
      推荐用户
        Copyright © 2016 All Rights Reserved. Powered by CNDBA · 皖ICP备2022006297号-1·

        QQ交流群

        注册联系QQ