I have a stored procedure:
DELETE FROM dbo.Period_NonL abor
WHERE (Period_Date = '6/13/2008')
I have to run it multiple times because it only deletes 10000 records
each time I run it. Is there a way to force it to delete all records?
Thanks!
DELETE FROM dbo.Period_NonL abor
WHERE (Period_Date = '6/13/2008')
I have to run it multiple times because it only deletes 10000 records
each time I run it. Is there a way to force it to delete all records?
Thanks!
Comment