Skip to Main Content

APEX

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Interested in getting your voice heard by members of the Developer Marketing team at Oracle? Check out this post for AppDev or this post for AI focus group information.

ORACLE_APEX_MAIL_QUEUE It has not been found

macontrerasApr 4 2022 — edited Apr 4 2022

Oracle Linux 8, Apex 21.2, Oracle Xe 21c, Ords 21.4 TomCat 9
ora01.jpgora02.jpgFriends, I can't get the emails to go out. There is a job that does not exist. The only way to get emails out is by pressing the SEND ALL EMAILS button or FORCE SEND ALL EMAILS. Thanks for the help

Comments

cormaco
Answer

Here is one way:

with input_string(ins) as (
    select 'Chesterton, Mark;#789;#Erbach, Magnus;#786' from dual union all
    select 'Phillips, Edward;#744;#Bubba, Matthew;#782;#Mahony, Chloe;#779' from dual union all
    select 'Corbett, Paul;#784;#Johnson, Ben;#392;#Smith, Adam;#775' from dual
)
select regexp_substr(ins,',\ *([^;]+)',1,1,null,1) regex from input_string

REGEX               
--------------------
Mark                
Edward              
Paul
                
Marked as Answer by User_AS6XD · Oct 14 2021
1 - 1

Post Details

Added on Apr 4 2022
0 comments
95 views