I have a flat file that has several non-relational fields, such city_due_1, city_due_2, city_due_3, city_due_4.
There is also garbage 1-4, sewer 1-4, and water 1-4.
I would like to normalize this a little by bringing these fields into their own seperate tables, for example:
bill_num int
quarter tinyint (1 - 4)
city_due currency
Any ideas on how to do this without using a cursor?
thanks, Kevin
There is also garbage 1-4, sewer 1-4, and water 1-4.
I would like to normalize this a little by bringing these fields into their own seperate tables, for example:
bill_num int
quarter tinyint (1 - 4)
city_due currency
Any ideas on how to do this without using a cursor?
thanks, Kevin