同一个表中是否可以有 nvarchar(max) 和 varbinar(max) 字段
我正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
当然是的 - 您可能只是在 SSMS 中启用了这个新的“安全”选项(默认情况下处于打开状态):
位于
Tools > 下;选项
....Yes of course - you probably just have this new "safety" option in SSMS still enabled (it's ON by default):
That's under
Tools > Options
....是的,这是可能的。
如果您看到此消息,您一定已尝试在 SSMS 表设计器中将新列插入到现有列的中间。将其添加到现有列的末尾,然后不必完全重建表。
或者只是执行
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
转到
工具|选项>设计器
并取消选中“防止保存需要重新创建表的更改”选项Go to
Tools | Options > Designers
and uncheck the option 'Prevent saving changes that require table re-creation'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.