question about queries used in the component
Posted: Tue 21 Jun 2011 10:06
While attempting to optimise performance on our oracle servers, two queries keep cropping up as using a significant amount of system resources:
select PIPELINED from sys.user_procedures where object_name = :packname and procedure_name = :procname
select PIPELINED from sys.all_procedures where owner = :schemaname and object_name = :procname and procedure_name is null
Can you please explain how and why these queries are used and if there is anything we can do to reduce the actions that cause these queries to run.
Thanks
Darren Coles
select PIPELINED from sys.user_procedures where object_name = :packname and procedure_name = :procname
select PIPELINED from sys.all_procedures where owner = :schemaname and object_name = :procname and procedure_name is null
Can you please explain how and why these queries are used and if there is anything we can do to reduce the actions that cause these queries to run.
Thanks
Darren Coles