Last active
October 14, 2016 05:45
-
-
Save PartTimeLegend/f0e7e79023f4f44628e89c007de6dc47 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
DECLARE @BatchSize INT | |
SET @BatchSize = 100000 | |
WHILE @BatchSize <> 0BEGIN | |
DELETE TOP (@BatchSize) t | |
FROM [MyTable] t | |
INNER JOIN [Ids] d ON d.ID=t.ID | |
WHERE ???? | |
SET @BatchSize = @@rowcount | |
END |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment