i have a Teradata table with over 100 M rows that im looking to do some normalization on.
one of the columns is a string, comma separated, that details a list of invalid reasons for my data. number of reasons in the string is not constant. what i would like to do is separate the values in that string and than normalize them so that i can analyze my data.
string example: {"invalid reason 1":1,"invalid reason 2":1,"invalid reason 3":2}
and i would like to normalize it to something like:
Invalid_reason value
invalid reason 1 1
invalid reason 2 1
invalid reason 3 2
any ideas?