1

I am connecting to the DB2 database using oracle SQL developer, but automatically it is committing, i checked in the advanced menu the auto commit feature is turned off. I am confused now, can someone help me in switching off auto commit.

asked Oct 28, 2019 at 14:19
0

1 Answer 1

1

Check whether auto-commit is really off (or if it's a glitch in the gui), by (for example):

1. create table T (x int);
2. rollback;
3. select * from t; -- should result in an error
answered Oct 28, 2019 at 14:26
3
  • No error in selecting data Commented Oct 28, 2019 at 14:33
  • Then autocommit is on regardless of what the gui says Commented Oct 28, 2019 at 15:24
  • What happens if you enable auto-commit, and then disable it again? Commented Oct 28, 2019 at 19:06

Your Answer

Draft saved
Draft discarded

Sign up or log in

Sign up using Google
Sign up using Email and Password

Post as a guest

Required, but never shown

Post as a guest

Required, but never shown

By clicking "Post Your Answer", you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.