- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用“for JSON path('')”将字符串串联在一起。
我已经将“工具”->“选项”->“SQL Server”->“结果到网格”选项设置为最大。
我已经将“工具”->“选项”->“SQL Server”->“结果为文本”选项设置为最大。
在网格模式下执行查询并复制一行/一列的结果,我看到返回值限制为2033个字符。
如何确保返回的值不被截断?
最佳答案
该行为是documented here:
A large result set splits the long JSON string across multiple rows.
By default, SQL Server Management Studio (SSMS) concatenates the results into a single row when the output setting is Results to Grid. The SSMS status bar displays the actual row count.
Other client applications may require code to recombine lengthy results into a single, valid JSON string by concatenating the contents of multiple rows. For an example of this code in a C# application, see Use FOR JSON output in a C# client app.
SELECT STUFF((
SELECT ', '+name FROM sys.columns FOR XML PATH(''), TYPE
).value('.','nvarchar(max)'),1,2,'')
关于sql-server - FOR JSON PATH结果导致SSMS被截断为2033个字符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54973536/
我是一名优秀的程序员,十分优秀!