Basic Oracle Concepts and Programming Question:
Download Job Interview Questions and Answers PDF
How To Commit the Current Transaction in Oracle?
Answer:
If you have used some DML statements updated some data objects, and you want to have the updates to be permanently recorded in the database, you can use the COMMIT statement. It will make all the database changes made in the current transaction become permanent and end the current transaction. The following tutorial exercise shows you how to use COMMIT statements:
SQL> connect HR/globalguideline
SQL> INSERT INTO ggl_links (url, id)
2 VALUES ('globalguideline.com', 101);
SQL> INSERT INTO ggl_links (url, id)
2 VALUES ('globalguideline.com/html', 110);
SQL> SELECT * FROM ggl_links;
<pre> ID URL NOTES COUNTS CREATED
------- ---------------- ---------- ---------- ---------
101 globalguideline.com 07-MAY-06
110 globalguideline.com/html 07-MAY-06</pre>
SQL> COMMIT;
Commit complete.
SQL> connect HR/globalguideline
SQL> INSERT INTO ggl_links (url, id)
2 VALUES ('globalguideline.com', 101);
SQL> INSERT INTO ggl_links (url, id)
2 VALUES ('globalguideline.com/html', 110);
SQL> SELECT * FROM ggl_links;
<pre> ID URL NOTES COUNTS CREATED
------- ---------------- ---------- ---------- ---------
101 globalguideline.com 07-MAY-06
110 globalguideline.com/html 07-MAY-06</pre>
SQL> COMMIT;
Commit complete.
Download Oracle Database Interview Questions And Answers
PDF
Previous Question | Next Question |
How To Create an Oracle Testing Table? | How To Rollback the Current Transaction in Oracle? |