从模板创建新数据库的最快方法是什么?
我们正在按需创建数据库,并且可以从不同的模板创建数据库。所有模板具有相同的结构但不同的数据。模板包含的数据很小。
创建数据库副本的最快方法是什么:
- 备份/恢复
- 使用 T-SQL ?
- 使用 SMO 吗?
- 从模板的脚本版本创建一个新数据库,然后填写所需的少量数据?
- 其他 ?
We are creating databases on demand and the databases can be created from different templates. All templates have the same structure but different data. The data contained by the templates is small.
What is the fastest way to create a copy of the database:
- Backup/Restore
- Using T-SQL ?
- Using SMO ?
- Create a new database from a scripted version of the template and then fill in the little data required ?
- Other ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
可能会分离/连接。
这使得所有内容都成为文件副本,这是 IIRC 最快的方法。事实上,并不是说有很多区别。
Possibly detach / attach.
This makes everything a file copy, which is IIRC the fastest way. Not that there is a lot of difference, actually.