forked from docs/doc-exports
Reviewed-by: Hasko, Vladimir <vladimir.hasko@t-systems.com> Reviewed-by: Pruthi, Vineet <vineet.pruthi@t-systems.com> Co-authored-by: Lu, Huayi <luhuayi@huawei.com> Co-committed-by: Lu, Huayi <luhuayi@huawei.com>
29 lines
1.8 KiB
HTML
29 lines
1.8 KiB
HTML
<a name="EN-US_TOPIC_0000001772536584"></a><a name="EN-US_TOPIC_0000001772536584"></a>
|
|
|
|
<h1 class="topictitle1">Global Temporary Tables</h1>
|
|
<div id="body8662426"><p id="EN-US_TOPIC_0000001772536584__en-us_topic_0000001706223965_en-us_topic_0238518384_en-us_topic_0237362243_en-us_topic_0202727326_p19515934203818">Global temporary tables are converted to local temporary tables.</p>
|
|
<p id="EN-US_TOPIC_0000001772536584__en-us_topic_0000001706223965_en-us_topic_0238518384_en-us_topic_0237362243_en-us_topic_0202727326_p19515143443817"><strong id="EN-US_TOPIC_0000001772536584__en-us_topic_0000001706223965_en-us_topic_0237712348_b662615913719">Input - GLOBAL TEMPORARY TABLE</strong></p>
|
|
<pre class="screen" id="EN-US_TOPIC_0000001772536584__en-us_topic_0000001706223965_en-us_topic_0238518384_en-us_topic_0237362243_en-us_topic_0202727326_screen26261859183715">CREATE GLOBAL TEMPORARY TABLE
|
|
"Pack1"."GLOBAL_TEMP_TABLE"
|
|
|
|
( "ID" VARCHAR2(8)
|
|
|
|
) ON COMMIT DELETE ROWS ;</pre>
|
|
<p id="EN-US_TOPIC_0000001772536584__en-us_topic_0000001706223965_en-us_topic_0238518384_en-us_topic_0237362243_en-us_topic_0202727326_p351533433816"><strong id="EN-US_TOPIC_0000001772536584__en-us_topic_0000001706223965_en-us_topic_0237712348_b1562735943715">Output</strong></p>
|
|
<pre class="screen" id="EN-US_TOPIC_0000001772536584__en-us_topic_0000001706223965_en-us_topic_0238518384_en-us_topic_0237362243_en-us_topic_0202727326_screen14627205923711">CREATE
|
|
LOCAL TEMPORARY TABLE
|
|
|
|
"Pack1_GLOBAL_TEMP_TABLE" (
|
|
|
|
"ID" VARCHAR2 (8)
|
|
)
|
|
ON COMMIT PRESERVE ROWS ;
|
|
</pre>
|
|
</div>
|
|
<div>
|
|
<div class="familylinks">
|
|
<div class="parentlink"><strong>Parent topic:</strong> <a href="dws_mt_0106.html">Schema Objects</a></div>
|
|
</div>
|
|
</div>
|
|
|