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
IN -> Teradata_02.sql
/*<sc-view>RMSviews.EMPLOYEEB</sc-view>*/REPLACE VIEW EMPLOYEEB ASSELECT*FROM EMPLOYEEWHERE AREA ="AREAB";/*<sc-view>Views.EMPLOYEEB</sc-view>*/REPLACE VIEW EMPLOYEEB ASSELECT*FROM EMPLOYEEWHERE AREA ="AREAB";
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.
OUT -> Teradata_02.sql
/*<sc-view>RMSviews.EMPLOYEEB</sc-view>*/--** SSC-FDM-0007 - MISSING DEPENDENT OBJECT "EMPLOYEE" **CREATE OR REPLACEVIEWRMSviews.EMPLOYEEBCOMMENT = '{"origin":"sf_sc","name":"snowconvert","version":{"major":1, "minor":0},{"attributes":{"component":"teradata"}}'
ASSELECT*FROMRMSviews.EMPLOYEEWHERE AREA ="AREAB";/*<sc-view>Views.EMPLOYEEB</sc-view>*/--** SSC-FDM-0007 - MISSING DEPENDENT OBJECT "EMPLOYEE" **--** SSC-FDM-0019 - SEMANTIC INFORMATION COULD NOT BE LOADED FOR Views.EMPLOYEEB. CHECK IF THE NAME IS INVALID OR DUPLICATED. **
CREATE OR REPLACEVIEWViews.EMPLOYEEBCOMMENT = '{"origin":"sf_sc","name":"snowconvert","version":{"major":1, "minor":0},{"attributes":{"component":"teradata"}}'
ASSELECT*FROMViews.EMPLOYEEWHERE AREA ="AREAB";
/*<sc-view>RMSviews.EMPLOYEEB</sc-view>*/CREATE OR REPLACEVIEWMyDatabase.RMSviews.EMPLOYEEBASSELECT*FROM MyDatabase.RMSviews.EMPLOYEEWHERE AREA ="AREAB";/*<sc-view>Views.EMPLOYEEB</sc-view>*/CREATE OR REPLACEVIEWMyDatabase.Views.EMPLOYEEBASSELECT*FROM MyDatabase.Views.EMPLOYEEWHERE AREA ="AREAB";
/*<sc-view>RMSviews.EMPLOYEEB</sc-view>*/CREATE OR REPLACEVIEWRMSviews.PUBLIC.EMPLOYEEBASSELECT*FROM RMSviews.PUBLIC.EMPLOYEEWHERE AREA ="AREAB";/*<sc-view>Views.EMPLOYEEB</sc-view>*/CREATE OR REPLACEVIEWViews.PUBLIC.EMPLOYEEBASSELECT*FROM Views.PUBLIC.EMPLOYEEWHERE AREA ="AREAB";
Known Issues
1. Locking row for access logic difference
In Snowflake, access to objects and elements is based on users and privileges.