We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi Team, when I query data from SQL server, if I intent to control the CPU usage, I always use
select * from XXX option (MAXDOP 1)
How to achieve this by spark sql connector?
I tried to pass above query through option("query"), it throws a syntax error.
java.lang.Error: com.microsoft.sqlserver.jdbc.SQLServerException: Incorrect syntax near the keyword 'OPTION'.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi Team,
when I query data from SQL server, if I intent to control the CPU usage, I always use
select * from XXX option (MAXDOP 1)
How to achieve this by spark sql connector?
I tried to pass above query through option("query"), it throws a syntax error.
java.lang.Error: com.microsoft.sqlserver.jdbc.SQLServerException: Incorrect syntax near the keyword 'OPTION'.
The text was updated successfully, but these errors were encountered: