I have this...CREATE TRIGGER [trig_tbl_newspaper_download_delete_files] ON [dbo].[tbl_newspaper_download] FOR DELETE ASSET XACT_ABORT ONRAISERROR ('An error occured updating the tabke',16,1)INSERT INTO tbl_FileToDelete SELECT '/' + FileName, 'DownloadsDirectory' FROM deletedGOThe app receives an exception but the initial delete is not rolled back.Why isn't the delete trigger included in the same transaction as the delete?Cheers, XF