You have the following stored procedure:

The Numbers table becomes unavailable when you run the stored procedure. The stored procedure obtains an exclusive lock on the table and does not release the lock.
What are two possible ways to resolve the issue? Each correct answer presents a complete solution.
NOTE: Each correct selection is worth one point.
Select all that apply, then click Submit answer.
-
○
Remove the implicit transaction and the SET ANSI_DEFAULTS ON statement.
-
○
Set the ANSI_DEFAULT statement to OFF and add a COMMIT TRANSACTION statement after the INSERT statement.
-
○
Add a COMMIT TRANSACTION statement after the INSERT statement.
-
○
Remove the SET ANSI_DEFAULTS ON statement.
