I want to delete a record which is inserted in the previous step inside one transaction.
The transaction is created without any isolation level defined.
Currently, no record is deleting by delete statement.
I want to delete a record which is inserted in the previous step inside one transaction.
The transaction is created without any isolation level defined.
Currently, no record is deleting by delete statement.
begin trans
################################insert your sql statement here
################################rollback -- if you want to cancel your transactions
commit -- if you feel good about your transactions