Skip to main content

How to delete records in batches while reducing locking

I have used the technique below to delete rows in batches which includes pauses to let other process access the table. USE IT AT YOUR OWN RISK!! I take NO responsibility if you run it on your own system - in fact that goes for any of the code on my blog.


DECLARE @MaxID INT
DECLARE @MinID INT
DECLARE @Date DATETIME
DECLARE @MyTableVar TABLE (ID INT)

SET @Date = GETDATE()

IF EXISTS (SELECT * FROM tempdb..sysobjects WHERE id=OBJECT_ID('tempdb..#DelRows'))
    DROP TABLE #DelRows

CREATE TABLE #DelRows (ID INT)

/*
To try and reduce table scans on large tables we get the minimum and maximum ID (assuming ID is a Clustered Index) of the date range and use those as the minimum and maximum criteria for the filter
*/
-- Find latest ID in range
SET @MaxID = (
              SELECT TOP 1 t1.Table1_ID
              FROM dbo.Table1 t1 WITH (NOLOCK)        
              WHERE t1.TableDate < DATEADD(HOUR, - 24, @date)
              ORDER BY t1.TableDate DESC
              )
-- Find earliest ID in range
SET @MinID = (
              SELECT TOP 1 t1.Table1_ID
              FROM dbo.Table1 t1 WITH (NOLOCK)
              WHERE t1.TableDate >= @Date
              ORDER BY t1.TableDate ASC
              )

-- Insert the records to delete into a temporary table
INSERT #DelRows
SELECT TOP 500000 ID
FROM Table1 t1(NOLOCK)
WHERE t1.Table1_ID BETWEEN @MinID
              AND @MaxID

-- Delete the records in batches of 1000
WHILE 1 = 1
BEGIN
       DELETE TOP (1000) t1
       OUTPUT DELETED.ID
       INTO @MyTableVar
       FROM Table1 t1
       JOIN #DelRows d ON t1.ID = d.ID

       DELETE d2
       FROM #DelRows d2
       JOIN @MyTableVar m ON d2.ID = m.ID

       DELETE @MyTableVar
      
-- We put in a delay to give other queries a chance
       WAITFOR DELAY '000:00:05'

END

Comments

Popular posts from this blog

Fun and games with the Management Data Warehouse (MDW and Data Collectors)

The SQL Server Management Data Warehouse (when you first come across it) seems to promise so much if the verbiage from Microsoft and some other websites is to to believed. But when you install it you may find that it is not as useful as it could be. This is a shame but we are currently only on v2 of the product with SQL 2012 so one hopes it will improve in subsequent versions. However, it probably is worth playing with if you have never used it before - at least you can show your boss some reports on general server health when he asks for it and you have nothing else in place. There is one big problem with it though if you decide that you don't want to use it any more, uninstalling it is not supported! Mad, I know. But as usual some very helpful people in the community have worked out, what seems to me, a pretty safe way of doing it. I had a problem with my MDW. The data collector jobs were causing a lot of deadlocking on some production servers and impacting performance. I...

How to configure the SSAS service to use a Domain Account

NB Updating SPNs in AD is not for the faint hearted plus I got inconsistent results from different servers. Do so at your own risk! If you need the SSAS account on a SQL Server to use a domain account rather than the local “virtual” account “NT Service\MSSQLServerOLAPService”. You may think you just give the account login permissions to the server, perhaps give it sysadmin SQL permissions too. However, if you try and connect to SSAS  remotely  you may get this error: Authentication failed. (Microsoft.AnalysisService.AdomdClient) The target principal name is incorrect (Microsoft.AnalysisService.AdomdClient) From Microsoft: “A Service Principle Name (SPN) uniquely identifies a service instance in an Active Directory domain when Kerberos is used to mutually authenticate client and service identities. An SPN is associated with the logon account under which the service instance runs. For client applications connecting to Analysis Services via Kerberos authentic...

How to import a large xml file into SQL Server

(Or how to import the StackOverflow database into SQL Server) Introduction NB  This process can be generalised to import any large (>2G) xml file into SQL Server. Some SQL Server training you can find online including that by Brent Ozar uses the StackOverflow database for practice. The tables from it are available online for download in xml format. In the past it was possible to use the scripts found here, https://www.toadworld.com/platforms/sql-server/w/wiki/9466.how-to-import-the-stackoverflow-xml-into-sql-server , to import them but as each xml file is now over 2GB you will get an error like this when you try to execute them: Brent Ozar, has a link to SODDI.exe, https://github.com/BrentOzarULTD/soddi , which can import the files (I haven’t tried it) but it means downloading and importing eight tables: Badges, Comments, PostHistory, PostLinks, Posts, Tags, Users, and Votes tables which amounts to >30GB of compressed xml increasing to ~200GB when deco...