替换sql server 2000中的ntext(超过4000个字符)
如何替换sql server 2000中ntext列中超过4000个字符的文本?转换为 nvarchar(max) 不起作用,因为它会截断值。
How to replace text in sql server 2000 in a ntext column with more than 4000 characters? conversion to nvarchar(max) does not work as it truncates values.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用 TEXT/NTEXT 是一团糟 - 这是尽快摆脱这些字段的众多原因之一。
您需要使用 READTEXT、WRITETEXT、UPDATETEXT 等命令来操作它们 - 请参阅一些资源以获取帮助:
Working with TEXT/NTEXT is a mess - one of the many reason to get rid of those fields as quickly as possible.
You need to manipulate those with command such as READTEXT, WRITETEXT, UPDATETEXT and other - see some resources for help:
nvarchar(max) 在 sql server 2005 之前不受支持。对于 sql server 2000 包含超过 4000 个宽字符的列,您必须将数据拉到客户端应用程序并在那里进行更改。
nvarchar(max) isn't supported until sql server 2005. For sql server 2000 columns with more than 4000 wide characters, you must pull the data down to a client application and make your changes there.