Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Mailing Lists -> Oracle-L -> Help - Query running slow
Hello,
I'am getting a very slow response on the query that calls a function after
getting a variable.
The query is used in pert script.
The function after getting the variable do a select statement & return a
value to the query. The response time using the
fuction in a query is very slow. If i type the value & run the same query it
runs very fast.
Almost twice as fast as running with a function.
Cant figure out what's causing it slow...is it the rtrim iam using?????
I also created an index on these columns but no improvement.
Any input will be appreciated
Below is the funtion iam using:
create or replace funtion e_conv(empid VARCHAR2, name varchar2) RETURN VARCHAR2 IS
ret_empid VARCHAR2(6); BEGIN if name = 'MGMT' then SELECT DISTINCT emp_id INTO ret_empid FROM emp_code WHERE rtrim(MGMT_CD) = empid; elsif name = 'ACCT' then SELECT DISTINCT emp_id INTO ret_empid FROM emp_code WHERE rtrim(ACCT_CD) = empid; elsif name = 'MRKT' then SELECT DISTINCT emp_id INTO ret_empid FROM emp_code WHERE rtrim(MRKT_CD) = empid; end if; RETURN ret_empid;
![]() |
![]() |