By using db<>fiddle, you agree to license everything you submit by Creative Commons CC0.
WITH t( col ) AS
(
SELECT 'Record: 11, Entità : CustomerOrder, attributo: DESCRIPTION non conforme al formato atteso' FROM dual UNION ALL
SELECT 'Record: 3, Entità : CustomerOrder, attributo: DESCRIPTION non conforme al formato atteso' FROM dual
)
SELECT 'Entità : '||REGEXP_REPLACE(col,'(.*Entità : )(.*)','\2') AS output
FROM t
OUTPUT |
---|
Entità : CustomerOrder, attributo: DESCRIPTION non conforme al formato atteso |
Entità : CustomerOrder, attributo: DESCRIPTION non conforme al formato atteso |