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.
I am trying to get the Connection between the Tasks used in the schedulers and the schedulers.
In botlog2 I get the Tasks by rc_message like 'WebFOCUS ...' and the stat_bt_Name, which I can join with botlog's stat_bt_nmae, sowthat I get the scheduleid and with wf_reposobj the Schedulername.
But somehow it does not really work, because of the join between the stat_bt_name's from botlog2 and botlog... select --taskobj, --sched_id, --prt_path, substr(FexName, 1, INSTR(FexName,'.',5)-1) as FexName, FexPfad, substr(ZeitplanName, 1, INSTR(ZeitplanName,'.',5)-1) as ZeitplanName, ZeitplanPfad from (select distinct substr(a.rc_message,INSTR(a.rc_message,'/',5,Length(a.rc_message)-Length(Replace(a.rc_message,'/','')))+1) as FexName, substr(a.rc_message,39) as FexPfad, c.objname as ZeitplanName, substr(c.prt_path,16) as ZeitplanPfad --,a.taskobj, b.sched_id, c.prt_path from webfocus.botlog2 a left join webfocus.botlog b on a.stat_bt_name = b.stat_bt_name left join webfocus.wf_reposobj c on c.handle = b.sched_id where a.rc_message like 'WebFOCUS Report%' )
can someone tell me a SQL or webfocus Report were I can find the Tasks used in´the schedulers??
ThanksThis message has been edited. Last edited by: FP Mod Chuck,
there is noh Taskobjpath, only taskobj. But I want to join it sothat I get the fexname which is used in a Scheduler, and the schedulername with path. My SQL works, but it doesn't match all the schedulerid's.