Specifies Oracle hints to pass to Oracle from FedSQL.
Valid in: | DELETE statement, INSERT statement, SELECT statement, UPDATE statement |
Category: | Data Control |
Data source: | Oracle |
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.
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 */'} ;