You have a CSV file that has the following matrix structure:
Prod, Week1, Week2, Week3, Week4
P1, 1, 2, 3, 4
P2, 2, 3, 4, 5
.., .., .., .., ..
.., .., .., .., ..
.., .., .., .., ..
Pn, 6, 7, 8, 9
The task is to insert these rows to an Oracle 9i database on a Sun box (Solaris 8) as follows (basically normalizing the data):
P1, Week1, 1
P1, Week2, 2
P1, Week3, 3
P1, Week4, 4
P2, Week1, 2
...
...
...
Pn, Week4, 9
What would be the best way to process this type of files using Mercator 6.5. Has anyone encountered this type of input files before?
Any input, ideas are welcome.
Thanks a lot.
Yilmaz
Prod, Week1, Week2, Week3, Week4
P1, 1, 2, 3, 4
P2, 2, 3, 4, 5
.., .., .., .., ..
.., .., .., .., ..
.., .., .., .., ..
Pn, 6, 7, 8, 9
The task is to insert these rows to an Oracle 9i database on a Sun box (Solaris 8) as follows (basically normalizing the data):
P1, Week1, 1
P1, Week2, 2
P1, Week3, 3
P1, Week4, 4
P2, Week1, 2
...
...
...
Pn, Week4, 9
What would be the best way to process this type of files using Mercator 6.5. Has anyone encountered this type of input files before?
Any input, ideas are welcome.
Thanks a lot.
Yilmaz