Skip to content

Commit 9561eb1

Browse files
authored
Merge pull request #196419 from jovanpop-msft/patch-236
Unclosed quotation mark after the character string
2 parents 9218b8d + 599ca0a commit 9561eb1

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

articles/synapse-analytics/sql/resources-self-help-sql-on-demand.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -163,6 +163,17 @@ The error *Invalid object name 'table name'* indicates that you are using an obj
163163
  - The table has some column types that cannot be represented in serverless SQL.
164164
  - The table has a format that is not supported in serverless SQL pool (Delta, ORC, etc.)
165165

166+
### Unclosed quotation mark after the character string
167+
168+
In some rare cases, where you are using `LIKE` operator on a string column or some comparison with the string literals, you might get the following error:
169+
170+
```
171+
Msg 105, Level 15, State 1, Line 88
172+
Unclosed quotation mark after the character string
173+
```
174+
175+
This error might happen if you are using `Latin1_General_100_BIN2_UTF8` collation on the column. Try to set `Latin1_General_100_CI_AS_SC_UTF8` collation on the column instead of the `Latin1_General_100_BIN2_UTF8` collation to resolve the issue. If the error is still returned, raise a support request through the Azure portal.
176+
166177
### Could not allocate tempdb space while transferring data from one distribution to another
167178

168179
The error *Could not allocate tempdb space while transferring data from one distribution to another* is returned when the query execution engine cannot process data and transfer it between the nodes that are executing the query.

0 commit comments

Comments
 (0)