Output Code
This is a deprecated version of the SnowConvert documentation, please visit the official site HERE.
Source Code
Suppose this is the SQL Server source code you've migrated:
Output code
How to interpret the output code?
There is one parsing error in line number one. This is because of an invalid token
CREATE TABLE!
There is one parsing error in line number three and number 11. This is because of an invalid token
VARCHAR2!
There is a not supported function
UNSUPPORTED_FUNCTION
, which is converted to aUNSUPPORTED_FUNCTION_UDF
stub that means SnowConvert was not able to find a functional equivalent function to use instead.The
GO
command in lines 6, 13 and 22 is not applicable in Snowflake, that is the reason why it is commented. ASEMICOLON (;)
is added to each statement instead in order to make the code valid.
Last updated