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
Does pl sql work in mysql?
What is constant in pl sql?
What is the purpose of the sql select top clause?
how to check myisam tables for errors? : Sql dba
Can you have more than one trigger on a table?
How do you remove duplicate records from a table?
How do I remove all records from a table?
How to run sql statements through the web interface?
What does over partition by mean in sql?
how to use 'mysql' to run sql statements? : Sql dba
What is parameter substitution in sql?
What is program debugging?
Is crud a cuss word?
How to rename a column in the output of sql query?
What is a table partition?