Teradata script to Databricks conversion #1989
-
Hi I am working on Terdata script (BTEQ) to Databricks conversions. Below is a sample script i am using.
Is there a way to Ignore the |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
You could add a preprocess step in your program to skip those statements, or print them as-is. Another option is to create a custom dialect and map the starting keywords / tokens into |
Beta Was this translation helpful? Give feedback.
You could add a preprocess step in your program to skip those statements, or print them as-is. Another option is to create a custom dialect and map the starting keywords / tokens into
TokenType.COMMAND
, e.g.".LOGON": TokenType.COMMAND
.