Here is an example query for Microsoft SQL Server (modification needed for Oracle databases):
SELECT A.[NAME] Schedule_Name,C.NAME Rule_Name
FROM [dbo].[JOB_SCHEDULES] A , [dbo].[RULES_SCHEDULES] B , [dbo].[ROUTING_RULES] C
WHERE A.ID=B.SCHEDULE_ID AND B.ROUTING_RULE_ID=C.ID
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.