specifies an Oracle
hint for the FedSQL language processor to pass to the DBMS as part
of a query. If you do not specify a hint, FedSQL does not send any
hints to Oracle. For more information, see SAS Federation
Server: Administrator’s Guide.
Details
The ORHINTS= table option
is used in conjunction with the DRIVER_TRACE= and DRIVER_TRACEFILE=
data source connection options. PROC FEDSQL and PROC DS2 do not support
use of data source connection options.
Example: Using the ORHINTS= Option
These examples show
how to specify ORHINTS=:
select * from test{options orhints='/* dummy hint */'} ;
update test{options orhints='/* dummy hint */'} set c1=1;
insert into test{options orhints='/* dummy hint */'} values (100);
delete from test{options orhints='/* dummy hint */'} ;