MSCEWI2076
The use of foreign tables is not supported in Snowflake.
Severity
Description
Example code
Input code:
SELECT cust_id, income, age FROM
FOREIGN TABLE (SELECT cust_id, income, age FROM twm_customer)@hadoop1 T1;Output code:
SELECT
cust_id,
income,
age FROM
-- ** MSC-ERROR - MSCEWI2076 - THE USE OF FOREIGN TABLES IS NOT SUPPORTED IN SNOWFLAKE. **
-- FOREIGN TABLE (SELECT cust_id, income, age FROM twm_customer)@hadoop1 T1
;Recommendations
Last updated
