MSCEWI3118
Built-In Views/Tables are not supported by Snowflake
Medium
Oracle has a set of built-in views and tables, that are not present in Snowflake, SnowConvert comments out the queries and statements that use these elements and adds an error message.
--Simple SELECT
SELECT * FROM ALL_COL_COMMENTS;
--subquery
SELECT * FROM (SELECT * FROM ALL_COL_COMMENTS);
--Simple SELECT
SELECT
-- ** MSC-ERROR - MSCEWI3118 - TRANSLATION FOR ORACLE BUILT-IN TABLE/VIEW 'ALL_COL_COMMENTS' IS NOT CURRENTLY SUPPORTED. **
-- * FROM
-- PUBLIC.ALL_COL_COMMENTS
null;
--subquery
SELECT * FROM
(
SELECT
-- ** MSC-ERROR - MSCEWI3118 - TRANSLATION FOR ORACLE BUILT-IN TABLE/VIEW 'ALL_COL_COMMENTS' IS NOT CURRENTLY SUPPORTED. **
-- * FROM
-- PUBLIC.ALL_COL_COMMENTS
null);
- Some information provided by Oracle Built-In views, can be found in Snowflake Information Schema or using SHOW command.
Last modified 3mo ago