Hi there,
Does anybody know how to push optimizer hint into a view? I need to force using index on one of the inner view tables. I know it's possible, but can not remember syntax.
create view v as select id, value from tab t;
select /*+ index(smth I dont know)*/ id, value from v where id = 0
Regards, Dima
Does anybody know how to push optimizer hint into a view? I need to force using index on one of the inner view tables. I know it's possible, but can not remember syntax.
create view v as select id, value from tab t;
select /*+ index(smth I dont know)*/ id, value from v where id = 0
Regards, Dima