Hi!
I have a currency exchange rate flat file with this format:
date;USD;EUR;SEK;
01-01-2004;8.232;8.00;1.43;
02-01-2004;8.232;8.00;1.43;
..and so on.
I need to pivot this to:
01-01-2004;USD;8.232;
01-01-2004;EUR;8.00;
.. and so on..
Anyone got any tips on how to achieve this?
Try the UNPIVOT transformation.
It does exactly what you need to do. There is a useful walkthrough demo in BOL that explains what the UNPIVOT transformation does.
-Jamie
No comments:
Post a Comment