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 current version of sql?
List different type of expressions with the example.
What is a table?
When a dml statement is executed, in which cursor attributes, the outcome of the statement is saved?
what does the t-sql command ident_current does? : Transact sql
What is the use of desc in sql?
what is the difference between undefined value and null value? : Sql dba
How can I speed up sql query?
how to convert character strings to numeric values? : Sql dba
what is the difference between $message and $$message? : Sql dba
how to return query output in html format? : Sql dba
What is the use of count (*) in sql?
what is a scheduled jobs or what is a scheduled tasks? : Sql dba
how to shut down the server with 'mysqladmin'? : Sql dba
how do you know if your mysql server is alive? : Sql dba