每月将有限(1000 行)块的 SQL Server 数据移动到不同的表
我正在寻找一种解决方案,如何根据部分日期时间值(作为每月存档)将行从 1000 块的大表移动到不同的表。我正在使用 MS SQL Server 2008。Remus
Rusanu 在 stackoverflow 上提供了以下解决方案 以有限(1000 行)块的形式移动 SQL Server 数据,用于以块的形式移动行。工作起来就像一个魅力:-)
WHILE 1=1
BEGIN
WITH messages AS (
SELECT TOP 1000 id, messageDatetime, message
FROM DemoData)
DELETE messages
OUTPUT DELETED.id, messageDatetime, message
INTO messageArchive;
IF (@@ROWCOUNT = 0)
BREAK;
END
我现在需要的是能够根据 messageDate 的月份部分将行移动到不同的表。
- 九月的消息应插入名为 messageArchive_09 的表中
- 十月的消息应插入名为 messageArchive_10 的表中
- ...
有什么想法吗?
I'm looking for a solution how I can move rows from a large table in chunks of 1000 to different tables based on parts of a datetime value (as a monthly archive). I'm using MS SQL Server 2008.
Remus Rusanu provided the following solution here on stackoverflow Move SQL Server data in limited (1000 row) chunks for moving rows in chunks. Works like a charm :-)
WHILE 1=1
BEGIN
WITH messages AS (
SELECT TOP 1000 id, messageDatetime, message
FROM DemoData)
DELETE messages
OUTPUT DELETED.id, messageDatetime, message
INTO messageArchive;
IF (@@ROWCOUNT = 0)
BREAK;
END
What I need now ist the ability to move the rows to different tables depending on the month part of the messageDate.
- messages from september should be inserted into a table named messageArchive_09
- messages from october should be inserted into a table named messageArchive_10
- ...
Any Ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
只需使用 month() 和一个不同的目标表。我知道,复制和粘贴代码感觉很糟糕,替代方法是做一些动态。
如果你想要动态,可以使用一些代码
Just repeat the code you have 12 times with a where clause using month() and a different target table. I know, copy and paste code feels bad, the alternative is to do something dynamic.
Some code to use if you want to go dynamics