Oracle query logic to identify email addresses across the dwh schemas
问题 I was performing an activity to identify eMail addresses based on certain pattern (@xyz.de). I initially tried checking the DBA_TAB_COLS [data dictionary] view but this just finds email column names and I manually need to check the big list of tables. Instead of doing that, is there is a more effective way to just fetch the the pattern value @xyz.de ? Database - oracle 11g Query used SET SERVEROUTPUT ON 100000 DECLARE lv_count number(10):=0; l_str varchar2 (1000); lv_col_name varchar2(255) :=