No, your hint syntax is wrong.
BTW, are you realy sure you want oracle to use the index for that query? What if the performance with index will actually be worse? What does the following two queries return for your table?
select count(*) from spatial.grid_master
Where grid_lvl = 2;
select count(*) from spatial.grid_master;




Reply With Quote