Is there any problem if we use commit repeatedly after each
dml statement in a plsq procedure ? (eg. there are 10 update
stmt and using 10 commit stmt after each update stmt)
Answer / kiran iyer
Commiting a record frequently will effect the performance as
oracle internally would wait for the transaction to get
commited and then flush the RBS and then would go ahead and
read the Next Record. Hence it is not a good Practice to
commit records frequently. Records should be commited in a
batch.
Is This Answer Correct ? | 4 Yes | 0 No |
What is the difference between the conventional and direct path loads? : aql loader
Which is better join or subquery?
How do I sort a table in sql?
declare l1 number := null; l2 number :=null; begin if l1=l2 then message('equal'); else if l1<>l2 then message('not equal'); else message('else'); end if; end if; end; What will be the output ?
Is sql a oracle?
how can we encrypt and decrypt a data present in a mysql table using mysql? : Sql dba
What is mdf ldf and ndf?
What are data types in pl sql?
How can check sql version from command line?
What is the difference between SQL Constraint and PL/SQL constraint.Pls give all the constraint name.
What is partition in sql query?
What is the relation b/w view and trigger