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
A query similar to the following does not work when using the TDS endpoint, works perfectly when that setting is not enabled:
UPDATE child SET child.ownerid = parent.ownerid, child.owneridtype = parent.owneridtype FROM account AS child JOIN account AS parent ON child.parentaccountid = parent.accountid WHERE parent.ownerid <> child.ownerid;
with the error on the UPDATE:
UPDATE
Specified cast is not valid. See the Execution Plan tab for details of where this error occurred
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
A query similar to the following does not work when using the TDS endpoint, works perfectly when that setting is not enabled:
with the error on the
UPDATE
:The text was updated successfully, but these errors were encountered: