Welcome to the Oracle Analytics Community: Please complete your User Profile and upload your Profile Picture
Comments
-
Hi, You can fetch the details from this table - fusion_ora_ess.request_history using Adhocschedule column. Example query: Select substr(substr(replace(erh.adhocschedule,chr(0)),3), (instr(substr(replace(erh.adhocschedule,chr(0)),3),'FREQ=')+5),…
-
Hi, You can fetch the details from this table - fusion_ora_ess.request_history using Adhocschedule column. Example query: Select substr(substr(replace(erh.adhocschedule,chr(0)),3), (instr(substr(replace(erh.adhocschedule,chr(0)),3),'FREQ=')+5),…
-
Hi, You can get the schedule information from fusion_ora_ess.request_history table using the adhocschedule column. Suppose, frequency and interval can be fetched using the below query: Select substr(substr(replace(erh.adhocschedule,chr(0)),3), (instr(substr(replace(erh.adhocschedule,chr(0)),3),'FREQ=')+5),…