【发布时间】:2018-07-05 14:01:03
【问题描述】:
在 MS SQL Server 中,临时表存储在tempdb Database。
GreenPlum 中是否有类似的特殊位置用于临时表?还是只是存储在当前数据库和架构中的临时表,我在其下进行正常事务?
【问题讨论】:
标签: temp-tables greenplum
在 MS SQL Server 中,临时表存储在tempdb Database。
GreenPlum 中是否有类似的特殊位置用于临时表?还是只是存储在当前数据库和架构中的临时表,我在其下进行正常事务?
【问题讨论】:
标签: temp-tables greenplum
Greenplum 中的临时表存储在创建它们的数据库中,但是在一个临时模式中,该模式在创建表的会话期间存在。
即
[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=#
这是否回答了您的问题?
【讨论】:
psql 和gpadmin,就像您发布的示例一样。