MSC-GP0001

External table translated to regular table

This is a deprecated version of the SnowConvert documentation, please visit the official site HERE.

Severity

Low

Description

Code Example

Input Code:

CREATE TABLE TABLE1 (
CREATE WRITABLE EXTERNAL WEB TABLE TABLE01 (
  COL1 INT
)

Output Code:

/*** MSC-WARNING - MSC-GP0001 - EXTERNAL TABLE TRANSLATED TO REGULAR TABLE ***/ 
CREATE TABLE PUBLIC.TABLE01 (
   COL1 INT
 )

Recommendations

  • The data stored in files of the external tables in Greenplum must be somehow moved into the Snowflake database.

  • If you need more support, you can email us at snowconvert-support@snowflake.com

Last updated