InterviewSolution
Saved Bookmarks
| 1. |
Which of the following argument is ignored by database engine in COMMIT TRANSACTION?(a) @tran_name_variable(b) @tran_name(c) transaction_name(d) all of the mentionedThis question was posed to me by my school teacher while I was bunking the class.I would like to ask this question from Transaction in chapter Performance Tuning and Optimization of SQL Server |
|
Answer» CORRECT option is (a) @tran_name_variable Best explanation: transaction_name specifies a transaction NAME assigned by a previous BEGIN TRANSACTION. transaction_name must CONFORM to the rules for IDENTIFIERS |
|