Oracle 18c/10.7.1 geodatabase:
I want to find junk values in all tables and columns (in a specific schema/owner/user):
- Loop through all tables
- Loop through each number and text column
- If a column has junk values, then add a record to a log table that summarizes the column's data integrity issue (i.e., insert a rolled-up record into the log table with a COUNT column, not a row for each problem value):
- 0 (number)
- " " (text; single space)
- " " (text; double space)
- "0" (text)
- "-" (text)
- "NULL" (text; not a true null)
- "<NULL>" (text; not a true null)

Thanks.