sqldba2k6
Posting Yak Master
176 Posts |
Posted - 2007-05-13 : 12:34:10
|
I used to get flat files which i need to import into tables..The flat files data which contains.....How should i design the tables so that i can get the output in single row...Table1ForRow1--------------col1,100col2,1col3,xxcol4,yycol5,,,col6,20030101Table1ForRow2-------------col1,100col2,2col3,20030101Table1ForRow3------------col1,100col2,3col3,01col4,20030101FlatFiledata:------------100,1,xx,yy,,20030101100,2,20030101100,3,01,20030101I want the output: 100,1,xx,yy,20030101,2,3,01 |
|