SSIS Control Flow
Consider the following design:
What happens to the updates executed by Execute SQL Task 1 and Execute SQL Task 2? (Select the correct answer.)
|
| th Execute SQL Task 1 and Execute SQL Task 2's updates are committed to the database. |
Explanation: | The answer: A.
Supported is the default TransactionOption property value. Since the package (Control Flow) TransactionOption is set to the default, the package is executed standalone, and there are no overrides applied at runtime; the execute SQL Tasks are not participating in a transaction. Serializable is the default IsolationLevel as well. Since the TransactionOption is Supported, Serializable is ignored until a transaction starts.
To learn more about SSIS Containers and Transactions, attend Andy Leonard's Zero to SSIS class in the Boston area, October 6-8, 2010 (http://bostonsqltraining.com). You can read more about the class here.
|
0 comments:
Post a Comment