sql - Documentum Query Language Syntax -
i know if there way in dql fetch rows based on start , end row values. (like row number 1 - 1000, 1001 - 2000). ( similar rownumber in oracle queries).
this input of great help.
i not believe possible using dql. however, can consult dql reference guide (check powerlink), contains information dql hints (there section on them). there discussion of passthrough hints allow pass hints through underlying rdbms. hints available depend on whether oracle, sql server, db2, etc.
this excerpt section:
passthrough hints hints passed rdbms server. not handled content server.
sql server , sybase have 2 kinds of hints: apply individual tables , apply globally, entire statement. accommodate this, can include passthrough hints in either select statement’s source list or @ end of statement. hints include in source list must table‑specific hints. hints include @ end of statement must global hints. example, following statement includes passthrough hints sybase @ table level , statement level:
select "r_object_id" "dm_document" (sybase('noholdlock')) "object_name"='test' enable (force_plan)
for db2 , oracle, include passthrough hints @ end of select statement.
Comments
Post a Comment