How to delete large data of table in SQL without log?(如何在没有日志的情况下删除SQL中表的大数据?)
问题描述
我有一个大数据表.此表中有 1000 万条记录.
I have a large data table. There are 10 million records in this table.
这个查询的最佳方式是什么
What is the best way for this query
Delete LargeTable where readTime < dateadd(MONTH,-7,GETDATE())
推荐答案
如果您要删除该表中的所有行,最简单的选择是截断表,例如
If you are Deleting All the rows in that table the simplest option is to Truncate table, something like
TRUNCATE TABLE LargeTable
GO
Truncate table 只会清空表,您不能使用 WHERE 子句来限制被删除的行,也不会触发任何触发器.
Truncate table will simply empty the table, you cannot use WHERE clause to limit the rows being deleted and no triggers will be fired.
另一方面,如果您要删除超过 80-90% 的数据,假设您总共有 1100 万行并且您想删除 1000 万行,另一种方法是插入这些 100 万行(您要保留的记录)到另一个临时表.截断这个大表并插入这 100 万行.
On the other hand if you are deleting more than 80-90 Percent of the data, say if you have total of 11 million rows and you want to delete 10 million another way would be to Insert these 1 million rows (records you want to keep) to another staging table. Truncate this large table and Insert back these 1 million rows.
或者如果权限/视图或其他具有这个大表作为其基础表的对象没有受到删除此表的影响,您可以将这些相对较少的行放入另一个表中,删除此表并创建另一个具有相同架构的表,并将这些行导入回这个 ex-Large 表中.
Or if permissions/views or other objects which has this large table as their underlying table doesn't get affected by dropping this table, you can get these relatively small amounts of the rows into another table, drop this table and create another table with same schema, and import these rows back into this ex-Large table.
我能想到的最后一个选项是将数据库的恢复模式更改为 SIMPLE
,然后使用如下所示的 while 循环小批量删除行:
One last option I can think of is to change your database's Recovery Mode to SIMPLE
and then delete rows in smaller batches using a while loop something like this:
DECLARE @Deleted_Rows INT;
SET @Deleted_Rows = 1;
WHILE (@Deleted_Rows > 0)
BEGIN
-- Delete some small number of rows at a time
DELETE TOP (10000) LargeTable
WHERE readTime < dateadd(MONTH,-7,GETDATE())
SET @Deleted_Rows = @@ROWCOUNT;
END
并且不要忘记将恢复模式更改回完整模式,我认为您必须进行备份才能使其完全有效(更改或恢复模式).
and don't forget to change the Recovery mode back to full and I think you have to take a backup to make it fully effective (the change or recovery modes).
这篇关于如何在没有日志的情况下删除SQL中表的大数据?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何在没有日志的情况下删除SQL中表的大数据?


- 以一个值为轴心,但将一行上的数据按另一行分组? 2022-01-01
- 更改自动增量起始编号? 2021-01-01
- 使用 Oracle PL/SQL developer 生成测试数据 2021-01-01
- 导入具有可变标题的 Excel 文件 2021-01-01
- 如何将 Byte[] 插入 SQL Server VARBINARY 列 2021-01-01
- 如何将 SonarQube 6.7 从 MySQL 迁移到 postgresql 2022-01-01
- 远程 mySQL 连接抛出“无法使用旧的不安全身份验证连接到 MySQL 4.1+"来自 XAMPP 的错误 2022-01-01
- 如何使用 pip 安装 Python MySQLdb 模块? 2021-01-01
- SQL 临时表问题 2022-01-01
- 在SQL中,如何为每个组选择前2行 2021-01-01