复制到 Excel 时 sqltextinfo 被截断
我需要从日志表中获取“sqltextinfo”列,但当我将其复制到 Excel 时,文本未正确放置在单元格中。
我尝试了以下查询来得到这个。但它抛出错误 -9134 结果超出最大长度
oreplace(oreplace(otranslate(sqltextinfo),', ',''),chr(10),chr(13),'') sqltextinfo
有什么方法可以使用上面的查询不使用 substr
请帮忙
I need to get a column 'sqltextinfo' from log table but the text is not correctly placed in a cell when I copy it to excel.
I tried the following query to get this. But it throws error -9134 result exceeded maximum length
oreplace(oreplace(otranslate(sqltextinfo),', ',''),chr(10),chr(13),'') sqltextinfo
is there any way to use the above query without using substr
Please help
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我用它来用单个
' '
替换任何空格:I use this to replace any whitespace with a single
' '
: