Here is an example query that can be run on the TIBCO Spotfire database running on Microsoft SQL Server:
SELECT GROUP_NAME, CATEGORY_NAME, PREFERENCE_NAME as [ENGINE TYPE], PREFERENCE_VALUE as [TSSS URL in encrypted format]
FROM PREFERENCE_KEYS A
INNER JOIN PREFERENCE_VALUES B ON A.PREFERENCE_ID = B.PREFERENCE_ID
INNER JOIN GROUPS C ON B.GROUP_ID = C.GROUP_ID
WHERE PREFERENCE_VALUE != '#null' and CATEGORY_NAME = 'TIBCO Spotfire Statistics Services'
Note that the actual URL text is encrypted in the database and not in a readable format. This query will at least give a list of the groups for you to investigate in the Administration Manager.
Disclaimer: The content of this article is for informational purposes only. The subject material may change in any new versions with no notice and there is no responsibility by TIBCO to maintain or support future access to this internal application content. Modification of any internal application content is not recommended and can lead to an unsupported configuration. It is not intended to be used "As Is" in a Production environment. Always test in a Development environment.