We're using BusObj to query an Oracle database. To improve Oracle performance, I need to use index hints in the SQL. I haven't been able to find any documentation or tips on how to do this. Any ideas? Thanks!
when you make an object, you specify a table and column
mytable.mycolumn
to add a hint where that object is the first column in the query
/*+ all_rows */ mytable.mycolumn
when BO makes the SQL, the hint will precede the first value in the select and you are done! I tried to remain child-like, all I acheived was childish.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.