How to improve the performance of a pl/sq stored procedures
or functions or triggers and packages ?
Answer Posted / kapil
By using index (not always)
by using bulk fetch
by using exists and not exists in place of in and not in
clause.
by avoiding implicit conversion by oracle
ex: if in employee table emp_no is varchar then
if we query the data from employee table by
where cluase like employee_number = 123 then oracle will
have to implictly convert the number 123 to
varhcar '123'and will require time
| Is This Answer Correct ? | 11 Yes | 0 No |
Post New Answer View All Answers
What is the difference between a procedure and a function?
What is the meaning of disabling a trigger?
Can primary key be changed?
What are hotfixes and patches?
What is parameter substitution in sql?
What are transaction and its controls?
What is posting?
What is a recursive join sql?
How to write a single statement that concatenates the words ?hello? And ?world? And assign it in a variable named greeting?
Is pl sql a programming language?
1) Synonyms 2) Co-related Subquery 3) Different Jobs in Plsql 4) Explain Plan 5) Wrap 6) Query Optimization Technique 7) Bulk Collect 8) Types of index 9) IF primary key is created then the index created ? 10) Foreign Key 11) Exception Handling 12) Difference Between Delete and Trunc 13) Procedure Overloading 14) Grant Revoke 15) Procedure Argument types. 16) Functions. 17) Joins
Can a procedure in a package be overloaded?
Determine if oracle date is on a weekend?
What is trigger and stored procedure in sql?
what is 'mysqlimport'? : Sql dba