OBIEE 12.2.1.4
What are effective ways to limit the amount of data that Oracle DB returns to the BI
The purpose is to limit amount by rownum or by datasize
We use ResultRowLimit parameter in instanceconfig.xml and its value is 65000.
All logical queries include this limit but some physical dont and we can locate it in in usage tracking tables. It could be queries in pivot tables and smth else.
Probably there are another ways?
We know about row limits for every database in repository and default_db_max_rows parameter in nsqserver. But it doesnt work like we expect.
PS What are
# Following are low priority query governance limits parameters
and
#following are marking query governance limits parameters
sections in nqsconfig.ini?
What are these parameters in these sections?
MARKING_QUERY_DB_MAX_ROWS = 0; # 0 means unlimited. The default value is 0.
MARKING_QUERY_DB_MAX_DATA_SIZE = 0; # 0 means unlimited. The default value is 0. The value can be in KB, MB, GB.
# LOW_PRIORITY_DB_MAX_ROWS = 0; # 0 means unlimited. The default value is 0.
# LOW_PRIORITY_DB_MAX_DATA_SIZE = 0; # 0 means unlimited. The default value is 0. The value can be in KB, MB, GB.
I havent found any describtion how it works
Thanks)