Prepare for your Next Interview
|
Welcome to the Geeks Talk forums. You are currently viewing our boards as a guest which gives you limited access to view most discussions and access our other features. By joining our free community you will have access to post topics, communicate privately with other members (PM), respond to polls, upload content and access many other special features. Registration is fast, simple and absolutely free so please, join our community today! If you have any problems with the registration process or your account login, please contact contact us. |
This is a discussion on Performance Query within the Database General forums, part of the Databases category; Will commit inside a loop reduce the performance of query? Also I have a doubt about using PL/SQL. Will using PL/SQL has any effect on performance?...
|
|||||||
|
|||
|
Re: Performance Query
Generally to say I would suggest not to use commit inside loop and also I would suggest using SQL wherever possible by reducing PL/SQL. But when needed it is used as per the requirements.
|
|
|||
|
Re: Performance Query
When I was going through this discussion I happened to come across some concept or term called Parallel Query. But I could not get any information or description about this. Somebody highlight whether it is related to this discussion. In other words can this Parallel query can be used to improve performance. If so what does the concept actually mean?
|
|
|||
|
Re: Performance Query
Quote:
Oracle implemented the concept of Parallelism using Oracle Parallel Query(OPQ) or Parellel Execution. When Oracle has to perform a large, full-table scan, OPQ can make a dramatic difference in the response time Parallelism is the idea of breaking down a task so that, instead of one process doing all of the work in a query, many processes do part of the work at the same time. The performance will improve drastically by this method. When SQL statement is executed in Oracle, multiple processes work together simultaneously to run a single SQL statement. By dividing the job necessary to run a statement among multiple processes, Oracle can run the statement more quickly than a single process. This is called Parallel Execution or Parallel Processing. *** Innila *** Last edited by Innila; 02-20-2007 at 08:16 AM. |
![]() |
|
| Thread Tools | |
| Display Modes | |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Performance testing | bharathi_ark | Testing Issues | 13 | 05-21-2009 06:39 AM |
| Functional and Performance testing tools | FLAVIADSOUZ | WinRunner | 5 | 04-19-2007 07:25 AM |
| Ways to Achieve Query Optimization | joel | SQL | 2 | 02-07-2007 02:19 PM |
| Performance Monitoring - In ASP.NET | timmy | ASP.NET | 3 | 07-13-2006 03:47 AM |
| where to write sql query at runtime | dssanjay | WinRunner | 1 | 06-03-2006 08:02 AM |