Help Center/
GaussDB(DWS)/
Tool Guide/
DSC: SQL Syntax Migration Tool/
Oracle Syntax Migration/
Schema Objects/
Global Temporary Tables
Updated on 2023-04-03 GMT+08:00
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 ;
Parent topic: Schema Objects
Feedback
Was this page helpful?
Provide feedbackThank you very much for your feedback. We will continue working to improve the documentation.
The system is busy. Please try again later.