i want to know how the commit option works,how it save the
changes? it will update the database or what ? where we can
see these saved changes?
Answers were Sorted based on User's Feedback
Hi,
Mostly we are using commit mass insert and update time
only.suppose i insert 1000 records i am using count varable
i give commit every 100th records means it will
automatically update the data base.so it will affect 999th
records means 900 records ulready update in ur table.so we
can restart 901 records thats enough.you can see in ur
table.
| Is This Answer Correct ? | 6 Yes | 2 No |
Answer / sankar
All changes happens to database are initially made in log,
after successful completion of unit of work (COMMIT),the
changes from log reflected into physical database. In case
of roll-back or un-successful completion, changes will not
be reflested into physical database.
Commit executed at the end of all transaction (explicitly
or inplicitly) irrespective of number of rows affected.
| Is This Answer Correct ? | 6 Yes | 2 No |
Answer / era
commit will insert a unit of work after some define number
of record processed. That commit point will be taken and
the database updated.
| Is This Answer Correct ? | 0 Yes | 0 No |
why we go for SPUFI for creating tables or for sql queries?
How do I copy a table in db2?
What keyword does an SQL SELECT statement use for a string search?
How many types of page locks can be held in db2?
Which isolation level provides highest data integrity?
How do I start db2 in windows?
What does CURRENTDATA option in bind indicate
How to restart a DB2 program?
Mention some fields that are a part of sqlca.
What is RUNSTATS?
How to get the ddl of a table in db2?
what's the error code for Unique Index Violation?