How to get the values of property resulting from an analyses?

Hello
I am working on a java REST API and writing MS-SQL queries on BFEnterprise tables and views. is there a way to get values of the properties resulting from an analyses by SQL querying tables?

-bipin

While this information is accessible via the database, we highly recommend leveraging the APIs (REST, SOAP) rather than querying the database directly. This is due to a variety of reasons including performance, and the potential for database schema changes with upgrades breaking existing queries. For more information, please see Legacy Communities - IBM TechXchange Community.

That said, you can easily return property results via session relevance through either REST or SOAP. Here’s a very simple example:

values of results of bes property (“Last Report Time”)

This can naturally be expanded based on your requirements.

Via REST, you can return this information using the /api/query method. Example:

/api/query?relevance=values%20of%20results%20of%20bes%20property%20(“Last%20Report%20Time”)

1 Like