oracle how to know transaction committed? -
possible duplicate:
oracle: how find out if there transaction pending?
in oracle, if issue update command in sql plus, how can know if committed or not ?
for example, codes below, how can know these 25 rows committed or not ?
update countries set name = 'ddd' 25 rows updated
thanks
use commit statement after commit e.g update countries set name = 'ddd'; commit; , after perform select statement see if have persisted database
Comments
Post a Comment