首页 > 解决方案 > 临时表存储在 GreenPlum 数据库中的什么位置?

问题描述

在 MS SQL Server 中,临时表存储在tempdb 数据库中。

GreenPlum中是否有类似的临时表特殊位置?还是一个临时表只是存储在当前数据库和架构中,我在其下进行正常事务?

标签: temp-tablesgreenplum

解决方案


Greenplum 中的临时表存储在创建它们的数据库中,但是在一个临时模式中,该模式在创建表的会话期间存在。

IE

[gpadmin@mdw:~] $ createdb temp
[gpadmin@mdw:~] $ psql temp
temp=# create temporary table test_temp(a int) distributed by (a);
CREATE TABLE
    Time: 50.516 ms
    temp=# \d
                     List of relations
       Schema   |   Name    | Type  |  Owner  | Storage
    ------------+-----------+-------+---------+---------
     pg_temp_11 | test_temp | table | gpadmin | heap
    (1 row)

temp=# \dn
       List of schemas
        Name        |  Owner
--------------------+---------
 gp_toolkit         | gpadmin
 information_schema | gpadmin
 pg_aoseg           | gpadmin
 pg_bitmapindex     | gpadmin
 pg_catalog         | gpadmin
 pg_temp_11         | gpadmin
 pg_toast           | gpadmin
 pg_toast_temp_11   | gpadmin
 public             | gpadmin
(9 rows)

temp=#

temp=# \q

[gpadmin@mdw:~] $ psql temp
Timing is on.
psql (8.3.23)
Type "help" for help.

temp=# \d
No relations found.
temp=# \dn
       List of schemas
        Name        |  Owner
--------------------+---------
 gp_toolkit         | gpadmin
 information_schema | gpadmin
 pg_aoseg           | gpadmin
 pg_bitmapindex     | gpadmin
 pg_catalog         | gpadmin
 pg_toast           | gpadmin
 public             | gpadmin
(7 rows)

temp=#

这回答了你的问题了吗?


推荐阅读