In a transaction block for example i have 5 insert statements:
BEGIN TRANSACTION
Insert A --Should be commited
Insert B
Insert C--Should be commited
Insert D
Insert E
COMMIT TRANSACTION.
Now let's suppose, statement E got failed, and while rolling back the whole bunch of statements, I want statement A and C to be commit ed. Is it possible?
.Net