In a PL/SQL block,which loop type should be used in a performance point of view & Why (as both loops can do the same task)
1) open - Fetch loop
2) for loop
Answers were Sorted based on User's Feedback
Answer / nidhi
yes For Loop will be faster than the open fetch loop
Is This Answer Correct ? | 0 Yes | 0 No |
Answer / swastik
yes for loop is faster tan loop-fetch
in loop there is exit statement to control the loop
in for loop it is an implicitly declared integer which is incremented or decremented by 1 until the upper bound or lower bound is reached
Is This Answer Correct ? | 0 Yes | 0 No |
Answer / mihir kar
For loop is always faster than explicitly open -fetch loop.
the main advantages of for loop is it internally works like bulk collect limit 100
it hold 100 record and fetch so it is always preferebale.
Is This Answer Correct ? | 0 Yes | 0 No |
What are the subsets of sql?
Explain the difference between rename and alias?
Why are sql stored procedures used?
what is index? : Sql dba
What are the dml statements?
What is rank dense_rank and partition in sql?
What is ROWID?
What is clustered index in sql?
What is write ahead logging in sql server?
Does sql backup shrink transaction log?
How can you fetch first 5 characters of the string?
What is a composite primary key?