SQL Server 2008 复制表,其中字段的物理顺序发生变化
任务是将有效相同的表复制
table1 ( A,C,B )
到
table2 ( A,B,C )
相同的字段/约束,只是字段的物理顺序不同。我可以使用标准工具和最少的编码来完成它吗?对于这种情况下的批量复制,似乎需要每个字段对的映射。
The task is to copy
table1 ( A,C,B )
to
table2 ( A,B,C )
Tables effectively identical, the same fields/constraints just physical sequence of fields is different. Can I do it with standard tools and minimal coding. For bulk copy in this case mapping for each field pair seems to be required.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这似乎是一个简单的
This seems to be a simple
如果我正确理解了您的问题,您只需复制表格而不进行更改,然后更改顺序即可。通过在 SQL 企业管理器的设计模式下拖动列来更改字段顺序。
If I've understood your question correctly, you can just copy the table without changes and then change the ordering afterwards. Change the field order by dragging the column in Design mode in SQL Enterprise Manager.