I have an SSIS package that was run unintentionally, which appended data to a SQL Server table. Is there a way to delete the last 100 rows which were added to the table? The table is:
CREATE TABLE dbo.Users
(
name VARCHAR(100),
phone_number VARCHAR(30)
);
No IDENTITY column, no date created column.