jgoodman00
Programmer
- Jan 23, 2001
- 1,510
I have written the following stored procedure, which I thought would delete ALL records from the table:
CREATE PROCEDURE [/color] dbo.DeleteAllRecordsFromtblInspection
AS DELETE FROM dbo.tblInspection
GO
This table had 14070 records in it, but it only deleted 10000. The SQL BOL states that unless the WHERE clause is used, DELETE removes all rows from the table. If I run the stored procedure again it removes the remaining records.
Is this therefore something that Access is doing in limiting the number of records which are being deleted?
James Goodman
j.goodman00@btinternet.com
CREATE PROCEDURE [/color] dbo.DeleteAllRecordsFromtblInspection
AS DELETE FROM dbo.tblInspection
GO
This table had 14070 records in it, but it only deleted 10000. The SQL BOL states that unless the WHERE clause is used, DELETE removes all rows from the table. If I run the stored procedure again it removes the remaining records.
Is this therefore something that Access is doing in limiting the number of records which are being deleted?
James Goodman
j.goodman00@btinternet.com