从模板创建新数据库的最快方法是什么?

发布于 2024-08-26 11:58:56 字数 219 浏览 4 评论 0原文

我们正在按需创建数据库,并且可以从不同的模板创建数据库。所有模板具有相同的结构但不同的数据。模板包含的数据很小。

创建数据库副本的最快方法是什么:

  1. 备份/恢复
    1. 使用 T-SQL ?
    2. 使用 SMO 吗?
  2. 从模板的脚本版本创建一个新数据库,然后填写所需的少量数据?
  3. 其他 ?

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:

  1. Backup/Restore
    1. Using T-SQL ?
    2. Using SMO ?
  2. Create a new database from a scripted version of the template and then fill in the little data required ?
  3. Other ?

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

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

发布评论

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

评论(1

蹲在坟头点根烟 2024-09-02 11:58:57

可能会分离/连接。

  • 准备主数据库。
  • 分离
  • 复制到新名称,使用正确的语法附加以重定向文件。
  • 调整到适当的大小(我讨厌正常操作的自动扩展)。

这使得所有内容都成为文件副本,这是 IIRC 最快的方法。事实上,并不是说有很多区别。

Possibly detach / attach.

  • Preparae master database.
  • Detach
  • Copy to new names, attach with proper syntax to redirect files.
  • Resize to proper size (I hate autoexpand for normal operations).

This makes everything a file copy, which is IIRC the fastest way. Not that there is a lot of difference, actually.

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