在SSMS中,有没有一种方法可以根据视图输出的表生成用于创建表的脚本?
在SSMS中,有没有一种方法可以根据视图输出的表生成用于创建表的脚本?
In SSMS is there a way to generate a script for table creation based on the table output by a view?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
没有简单的方法可以做到这一点,因为所选数据不足以描述该表。例如。可能存在标识列,但您不知道,或者某些列可能可为空,但实际数据没有空值,等等。
这通常是一项复杂的任务,需要专用程序,而不是普通的数据库管理实用程序。
There is no simple way of doing such a thing, because selected data is not sufficient to describe the table. Eg. there might be identity column and you won't know or some column may be nullable but actual data has no nulls and so on.
This is in general a complex task that requires a dedicated program, not an ordinary database management utility.
我不知道怎么做,但是这个的答案问题可能对你有用。它涉及程序,但可能适用相同的原则。
I don't know how, but the answer to this question may prove useful to you. It is concerning procedures, but the same principles might apply.