I'm trying to execute a recursive query in Azure Data Factory Source using the query option.
However, even writting go or ; before the with sentence, Data Factory is not able to project the columns. If I write (before the with clause):
- "Go", I've got this error
"shaded.msdataflow.com.microsoft.sqlserver.jdbc.SQLServerException: Incorrect syntax near 'r'. If this is intended to be a common table expression, you need to explicitly terminate the previous statement with a semi-colon." - If I write ";", I've got this one
shaded.msdataflow.com.microsoft.sqlserver.jdbc.SQLServerException: Incorrect syntax near ';'. - If I do not write anything s
haded.msdataflow.com.microsoft.sqlserver.jdbc.SQLServerException: Incorrect syntax near the keyword 'with'.
So I wonder if this kind of code is not allowed in Azure Data Factory, or if there is something I'm missing.
