Query on SQL transaction
I got the below question in an online exam. The question is:
You are connected to an SQL database and are issuing DML statements. You want to be able to undo the first set of statements you have done so far, but you also want to start a new series of statements which you would be able to undo separately fro the first set.
Based on the above scenario, how do you achieve the DB requirements?
Options:
- Instruct the DB to save future changes in a different log file.
- Instruct the server to create a new session
- Instruct the DB to begin a new transaction
- Instruct the DB to checkpoint your work so far
- Instruct the DB to create a savepoint
I went with the 5th one as I thought creating a new session, transaction are unnecessary overload. savepoint can be used to rollback to a point to undo the recent modification.
Please correct me if am wrong.
sql
add a comment |
I got the below question in an online exam. The question is:
You are connected to an SQL database and are issuing DML statements. You want to be able to undo the first set of statements you have done so far, but you also want to start a new series of statements which you would be able to undo separately fro the first set.
Based on the above scenario, how do you achieve the DB requirements?
Options:
- Instruct the DB to save future changes in a different log file.
- Instruct the server to create a new session
- Instruct the DB to begin a new transaction
- Instruct the DB to checkpoint your work so far
- Instruct the DB to create a savepoint
I went with the 5th one as I thought creating a new session, transaction are unnecessary overload. savepoint can be used to rollback to a point to undo the recent modification.
Please correct me if am wrong.
sql
add a comment |
I got the below question in an online exam. The question is:
You are connected to an SQL database and are issuing DML statements. You want to be able to undo the first set of statements you have done so far, but you also want to start a new series of statements which you would be able to undo separately fro the first set.
Based on the above scenario, how do you achieve the DB requirements?
Options:
- Instruct the DB to save future changes in a different log file.
- Instruct the server to create a new session
- Instruct the DB to begin a new transaction
- Instruct the DB to checkpoint your work so far
- Instruct the DB to create a savepoint
I went with the 5th one as I thought creating a new session, transaction are unnecessary overload. savepoint can be used to rollback to a point to undo the recent modification.
Please correct me if am wrong.
sql
I got the below question in an online exam. The question is:
You are connected to an SQL database and are issuing DML statements. You want to be able to undo the first set of statements you have done so far, but you also want to start a new series of statements which you would be able to undo separately fro the first set.
Based on the above scenario, how do you achieve the DB requirements?
Options:
- Instruct the DB to save future changes in a different log file.
- Instruct the server to create a new session
- Instruct the DB to begin a new transaction
- Instruct the DB to checkpoint your work so far
- Instruct the DB to create a savepoint
I went with the 5th one as I thought creating a new session, transaction are unnecessary overload. savepoint can be used to rollback to a point to undo the recent modification.
Please correct me if am wrong.
sql
sql
asked Jan 11 at 9:55
user983795user983795
11
11
add a comment |
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "3"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f1393098%2fquery-on-sql-transaction%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Super User!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f1393098%2fquery-on-sql-transaction%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown