Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question
Your string example is what 1 sample record would look like. Another record may have 2 invalid reasons separated by a commas and yet another could have 4 invalid reasons separated by a comma. Correct? – Rob Paller Feb 13 at 15:47
Rob, that is almost correct. the sample has 3 invalid reasons. but it is all in one string per row. BTW, a row can also have an empty string if no invalid values. – Elad Feb 13 at 16:00
I would use a different tool that has better parsing functions than Teradata – Beth Feb 13 at 16:24
maybe... but fact is that my data is on teradata and extracting such data volume will not be very efficient, so... – Elad Feb 14 at 6:58
I think you can solve this with a recursive query. It will probably be expensive in terms of CPU but probably doable. – Rob Paller Feb 16 at 14:21

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.