Skip to content

Commit eff07cb

Browse files
committed
fixed comment, we support LOBs now
1 parent 8b3b7c0 commit eff07cb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

articles/synapse-analytics/sql/query-json-files.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ FROM
128128
ROWTERMINATOR = '0x0b'
129129
)
130130
WITH (
131-
jsonContent NVARCHAR(4000) --Note that you have to use NVARCHAR(4000) for OPENJSON to work.
131+
jsonContent NVARCHAR(max) -- Use appropriate length. Make sure your JSON fits.
132132
) AS [r]
133133
CROSS APPLY OPENJSON(jsonContent) AS j
134134
WHERE

0 commit comments

Comments
 (0)