SSC-EWI-OR0118
Built-In Views/Tables are not supported by Snowflake
Severity
Medium
Description
Oracle has a set of built-in views and tables, that are not present in Snowflake, SnowConvert adds an error message to queries and statements that use these elements.
Example Code
Input Code:
SELECT * FROM ALL_COL_COMMENTS;
SELECT * FROM (SELECT * FROM ALL_COL_COMMENTS);
Output Code:
SELECT
!!!RESOLVE EWI!!! /*** SSC-EWI-OR0118 - TRANSLATION FOR ORACLE BUILT-IN TABLE/VIEW 'ALL_COL_COMMENTS' IS NOT CURRENTLY SUPPORTED. ***/!!!
* FROM
ALL_COL_COMMENTS;
SELECT * FROM (SELECT
!!!RESOLVE EWI!!! /*** SSC-EWI-OR0118 - TRANSLATION FOR ORACLE BUILT-IN TABLE/VIEW 'ALL_COL_COMMENTS' IS NOT CURRENTLY SUPPORTED. ***/!!! * FROM
ALL_COL_COMMENTS);
Recommendations
Some information provided by Oracle Built-In views, can be found in Snowflake Information Schema or using SHOW command.
If you need more support, you can email us at snowconvert-support@snowflake.com
Last updated