Oracle Analytics Cloud and Server

Welcome to the Oracle Analytics Community: Please complete your User Profile and upload your Profile Picture

how to control Maximum Number of Rows in pivot and table in OBIEE 12C

Received Response
272
Views
3
Comments
Tony_OAS_Apex_User
Tony_OAS_Apex_User Rank 5 - Community Champion

We were able to modify instanceconfig.xml files to set the maximum rows on pivot, table, so on in 11G.

 

I heard everything should be in em console to change in 12C. There aren't many entries in em console.

 

It has section for

 

Maximum Number of Rows Processed when Redering a Table View

 

Maximum Number of Rows to Download

 

Maximum Number of Rows Per page to include.

 

 

 

We tried to copy those config lines to instanceconfig.xml and restart the services. This change didn't get the service to get restarted.

 

Any suggestion?

 

 

Here's the example we used in 11G..

 

<Views>

 

<Pivot>

 

<MaxCells>6500000</MaxCells>

 

<MaxVisibleColumns>100</MaxVisibleColumns>

 

<MaxVisiblePages>100</MaxVisiblePages>

 

<MaxVisibleRows>65000</MaxVisibleRows>

 

<MaxVisibleSections>25</MaxVisibleSections>

 

<DefaultRowsDisplayed>500</DefaultRowsDisplayed>

 

<!--This Configuration setting is managed by Oracle Business Intelligence Enterprise Manager--><DefaultRowsDisplayedInDelivery>75</DefaultRowsDisplayedInDelivery>

 

<!--This Configuration setting is managed by Oracle Business Intelligence Enterprise Manager--><DefaultRowsDisplayedInDownload>65000</DefaultRowsDisplayedInDownload>

 

<!--This Configuration setting is managed by Oracle Business Intelligence Enterprise Manager--><DisableAutoPreview>false</DisableAutoPreview>

 

</Pivot>

 

<Table>

 

<MaxCells>6500000</MaxCells>

 

<MaxVisiblePages>100</MaxVisiblePages>

 

<MaxVisibleRows>65000</MaxVisibleRows>

 

<MaxVisibleSections>25</MaxVisibleSections>

 

<DefaultRowsDisplayed>500</DefaultRowsDisplayed>

 

<!--This Configuration setting is managed by Oracle Business Intelligence Enterprise Manager--><DefaultRowsDisplayedInDelivery>75</DefaultRowsDisplayedInDelivery>

 

<!--This Configuration setting is managed by Oracle Business Intelligence Enterprise Manager--><DefaultRowsDisplayedInDownload>65000</DefaultRowsDisplayedInDownload>

 

</Table>

 

</Views>

 

Answers