SQL Server 2008 - 从临时表插入/更新主表

发布于 2024-11-30 22:12:53 字数 117 浏览 2 评论 0原文

通过批量插入将数据导入临时表后,我需要执行两个步骤:

  1. 转换
  2. 在主表中插入/更新

JOINS 是最好的工具还是有更快/更有效的方法来执行这些任务?

Once the data is imported in a Staging table through Bulk Insert, then I need to do two steps:

  1. Transformations
  2. Insert/Update in Main table

Is the JOINS are the best tool OR there is something quicker/more efficient to perform these tasks?

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

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

发布评论

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

评论(1

我不会写诗 2024-12-07 22:12:53

我可能会做这样的事情:

  • 在该临时表上进行转换(根据需要添加其他列等)
  • 使用 SQL Server 2008 MERGE 命令 非常适合这种情况 - 更新一些现有行,插入一些新行(并可能删除一些旧的“孤立”行)。这是一个命令,可以在一次调用中处理几乎所有插入、更新、删除场景。

参阅一些有关如何使用 MERGE 命令的精彩文章:

I would probably do something like this:

  • make your transformations on that staging table (add additional columns as needed etc.)
  • do the INSERT/UPDATE into the actual data table using the SQL Server 2008 MERGE command which is ideally suited for just this - update some existing rows, insert some new rows (and possibly delete some old "orphaned" rows). It's a single command which can handle just about all insert, update, delete scenario in a single call

See some great articles on how to use the MERGE command:

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