Files
doc-exports/docs/dws/tool/dws_mt_0212.html
luhuayi a5e3903f6b DWS TG 910.211 version
Reviewed-by: Pruthi, Vineet <vineet.pruthi@t-systems.com>
Co-authored-by: luhuayi <luhuayi@huawei.com>
Co-committed-by: luhuayi <luhuayi@huawei.com>
2025-04-23 13:53:01 +00:00

1.8 KiB

Global Temporary Tables

Global temporary tables are converted to local temporary tables.

Input - GLOBAL TEMPORARY TABLE

CREATE GLOBAL TEMPORARY TABLE
"Pack1"."GLOBAL_TEMP_TABLE"
                     
( "ID" VARCHAR2(8)
                                       
) ON COMMIT DELETE ROWS ;

Output

CREATE
     LOCAL TEMPORARY TABLE
         
"Pack1_GLOBAL_TEMP_TABLE" (
              
"ID" VARCHAR2 (8)
          )
           ON COMMIT PRESERVE ROWS ;