通过 Management Studio 2005 粘贴到 SQL Server 表并保留行结尾
我无法让它发挥作用。我在 SQL Server Management Studio 2005 中打开了一个 SQL Server Express 表。当我尝试将多行文本片段粘贴到 NTEXT 字段中时,它会被截断为仅包含第一行。
在 Access 中这些事情有效,我应该做什么?
I cannot get this to work. I have opened a SQL Server Express table in SQL Server Management Studio 2005. When I try to paste a multiline text snippet into an NTEXT field it gets truncated to only include the first line.
In Access these kind of things works, what should i do?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
将其重写为 UPDATE 或 INSERT INTO 语句。字符串文字可以跨越多行:
Rewrite it as an UPDATE or INSERT INTO statement. String literals can span multiple lines:
我们也遇到过同样的问题。
您可以使用和插入语句
或使用 Access 与链接表来插入多行值。
We have had the same issue.
You can either use and insert statement
Or use Access with linked tables to insert the values with multi lines.