As of December 1, 2020, Focal Point is retired and repurposed as a reference repository. We value the wealth of knowledge that's been shared here over the years. You'll continue to have access to this treasure trove of knowledge, for search purposes only.
Join the TIBCO Community TIBCO Community is a collaborative space for users to share knowledge and support one another in making the best use of TIBCO products and services. There are several TIBCO WebFOCUS resources in the community.
From the Home page, select Predict: WebFOCUS to view articles, questions, and trending articles.
Select Products from the top navigation bar, scroll, and then select the TIBCO WebFOCUS product page to view product overview, articles, and discussions.
Request access to the private WebFOCUS User Group (login required) to network with fellow members.
Former myibi community members should have received an email on 8/3/22 to activate their user accounts to join the community. Check your Spam folder for the email. Please get in touch with us at community@tibco.com for further assistance. Reference the community FAQ to learn more about the community.
Hi, I would like to know what is the optimal number of records that webfocus can scan through. What are the implications if i have WF scan through 500 Million Records ?
As Ginny says, on the WHERE, works best on an index field, the amount of data you are retrieving if sorted on the application server may exceed the sort space allowed, But to look through millions of rows is not an issue that I've seen other than the browser time out issue if you are doing it 'live' rather than deferred or using report caster.
Leah
Posts: 1317 | Location: Council Bluffs, IA | Registered: May 24, 2004
Thanks for your quick responses, I do have where clauses but my concern is most of these reports will work from the self service applications. Does it become mandate to have them run through deferred mode? I also want to know if we have any predefined information from IBI regarding the data limits.
I would try to run it several times from a browser to get timings and see if the performance is acceptable for a user. If not, then deferred would be a good way to go.
You can check with IBI but I worked for them for a long time and the line was/is that the answer is too dependent on platform, memory, request particulars, data source, etc. to give any kind of limits or performance expectations.
An old FOCUS 'best practice' is to NEVER ever 'WHERE' on a DEFINEd field (unless it's a small table). Such a suntax forces FOCUS to do a sequential scan of all records, to compute the DEFINEd field on each so that it can determine if the record is to be included or excluded.
With correctly stated WebFOCUS and proper indexing of the data it is possible to retrieve from multi-million row tables in a reasonable amount of time. Activate the proper traces, run the FEX, and show the generated SQL to your DBA. Together you can get it done.
Also, querying not the RDBS table itself, but a view defined for your needs can quicken the retrieval process.
Chris Burtt
WIN/2K running WF 7.6.4 Development via DevStudio 7.6.4, MRE, TextEditor. Data is Oracle, MS-SQL.
Posts: 154 | Location: NY | Registered: October 27, 2005