Products | Versions |
---|---|
Spotfire Server | All Versions |
This is one technique to help you determine the size of an analysis file by using the TIBCO Spotfire application database or the Action Logs database. This is not the amount of RAM required when the report is opened, but instead the size of the .dxp file itself as stored in the library.
select CONTENT_SIZE from lib_items where ITEM_ID='<GUID of dxp file>'or
select CONTENT_SIZE from lib_items where TITLE='<dxp name>' and item_type='4f83cd47-71b5-11dd-050e-00100a64217d'Where <dxp name> is updated with the name of the analysis file and <GUID of dxp file> is updated with the unique GUID of the analysis file you are investigating.
select CONTENT_SIZE from lib_items where ITEM_ID='a5e48046-75b5-4f30-bc50-22a87fc218bc'or:
select CONTENT_SIZE from lib_items where TITLE='My Baseball dxp' and item_type='4f83cd47-71b5-11dd-050e-00100a64217d'
select ARG3 AS analysissize from [dbo].[ACTIONLOG] where [LOG_CATEGORY]='library' AND [LOG_ACTION]='load_content' AND [ID2]='<Librarypath>';Where <Librarypath> is updated with the path to the analysis file you are investigating. For example:
select ARG3 AS analysissize from [dbo].[ACTIONLOG] where [LOG_CATEGORY]='library' AND [LOG_ACTION]='load_content' AND [ID2]='/Spotfire/Test_Java_Script';