I have some queries such as update, delete.. etc.
Before i run them i want to create savepoint (without using transaction). But “how?” I don’t know because savepoint is part of transaction. Is there another way to achieve this job?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
No there is no way to create a save point without a transaction.
In absence of a transaction the concept is meaningless.
If you are looking at reducing locking that will be generated due to the transaction, have a look at snapshot isolation.