You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Oracle has optimizer hint feature on select statements , add ability to provide this hits here is an example of PARALLEL hint
SELECT /*+ PARALLEL(4) */ customers.cust_first_name, customers.cust_last_name,
MAX(QUANTITY_SOLD), AVG(QUANTITY_SOLD)
FROM sales, customers
WHERE sales.cust_id=customers.cust_id
GROUP BY customers.cust_first_name, customers.cust_last_name;
The text was updated successfully, but these errors were encountered:
jdafda
changed the title
Added ability to provide oracle hints
Add ability to provide oracle hints
Feb 17, 2022
Oracle has optimizer hint feature on select statements , add ability to provide this hits here is an example of PARALLEL hint
The text was updated successfully, but these errors were encountered: