LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Programming (https://www.linuxquestions.org/questions/programming-9/)
-   -   Oracle database help (https://www.linuxquestions.org/questions/programming-9/oracle-database-help-570693/)

baks 07-19-2007 09:57 AM

Oracle database help
 
Hi, I would like to know how you would disable an index in the folowing sql.

Select order_id, customer_id, total
From sales_order
Where order_id = 557

Thank You.

radoulov 07-20-2007 04:43 AM

Code:

select /*+ full(sales_order) */ order_id, customer_id, total
from sales_order
Where order_id = 557


baks 07-23-2007 02:55 AM

Thank You very much.


All times are GMT -5. The time now is 06:35 AM.