Views
Translation reference to convert Teradata VIEW statement to Snowflake
Description
Teradata's VIEW statement is translated to Snowflake VIEW syntax.
For more information on Teradata VIEW, check here.
Sample Source Patterns
Create View Transformation
Teradata
Snowflake
Custom Schema Tag
The custom schema is specified in the comment section before the specification of the view, with an XML tag named “sc-view” that contains only the value of the schema and the view name separated with a period ‘.’ as shown below: <sc-view>SCHEMANAME.VIEWNAME</sc-view>
The custom schema will be used as a view qualifier, and then the name of the view and all the objects referred to in the FROM queries and inner queries will be using that custom schema. Therefore could be several views with the same name, but with different custom tags. Example: two views with the same name, will take the custom schema tag information to perform the translation.
Teradata
Snowflake
The transformation for Snowflake will vary depending on the customized schema name MySchema
, customized database name MyDatabase
or not selecting a customized database or schema in the conversion settings.
Known Issues
1. Locking row for access logic difference
In Snowflake, access to objects and elements is based on users and privileges.
Related EWIs
SSC-FDM-0007: Element with missing dependencies.
SSC-FDM-0019: Sematic information could not be loaded.
Last updated