同一个表中是否可以有 nvarchar(max) 和 varbinar(max) 字段

发布于 2024-09-27 14:50:46 字数 241 浏览 5 评论 0原文

我正在使用 SQL Server 2008 R2。

我有一个表,其中有多个字段,包括 nvarchar(max) 字段。

当我尝试添加 varbinary(max) 类型的新字段时,收到一条错误消息:“不允许保存更改。您所做的更改需要删除并重新创建下表”。

同一个表中是否可以有 nvarchar(max) 和 varbinar(max) 字段?

解决此问题的唯一方法是创建具有新结构的新表并传输数据吗?

I am using SQL Server 2008 R2.

I have a table which has several fields including a nvarchar(max) field.

When I try and add a new field of type varbinary(max) I get an error message: "Saving changes is not permitted. The change that you have made requires the following tables to be droped and recreated".

Is it possible to have a nvarchar(max) and a varbinar(max) fields in same table?

Is the only way to fix this, to create a new table with the new structure and transfer the data?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

时光无声 2024-10-04 14:50:46

当然是的 - 您可能只是在 SSMS 中启用了这个新的“安全”选项(默认情况下处于打开状态):

alt text

位于 Tools > 下;选项 ....

Yes of course - you probably just have this new "safety" option in SSMS still enabled (it's ON by default):

alt text

That's under Tools > Options ....

微凉 2024-10-04 14:50:46

是的,这是可能的。

如果您看到此消息,您一定已尝试在 SSMS 表设计器中将新列插入到现有列的中间。将其添加到现有列的末尾,然后不必完全重建表。

或者只是执行

alter table YourTable add newcol varbinary(max) null

Yes it is possible.

If you are seeing this message you must have tried to insert the new column in the middle of existing ones in the SSMS table designer. Add it onto the end of the existing columns then the table won't have to be completely rebuilt.

Or just execute

alter table YourTable add newcol varbinary(max) null
请帮我爱他 2024-10-04 14:50:46

转到工具|选项>设计器并取消选中“防止保存需要重新创建表的更改”选项

Go to Tools | Options > Designers and uncheck the option 'Prevent saving changes that require table re-creation'

愁以何悠 2024-10-04 14:50:46

SQL Server 不允许您以这种方式演化表,因为它无法动态修改现有表的存储。如果您想执行此操作,则必须使用新架构创建一个新表,并使用原始表中的数据填充它。

SQL Server is not allowing you to evolve the table this way, because it cannot modify the storage for the existing table dynamically. If you want to do this, you have to create a new table with the new schema and populate it with the data from the original table.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文