my flat file having 3 columns ... they are EMPID,ENAME,PHONENUMBER. in the flat file having following data as shown below
EMPID ENAME PHONENUMBER
-------------------------------------------------
1 AA 123456
1 AA 234567
2 BB 345632
2 BB 987456
3 CC 563421
in the above data can store in the sql server table having columns
EMPID,ENAME,PHNO1,PHNO2
as shown below
EMPID ENAME PHNO1 PHNO2
---------------------------------------------------------------------------------------
1 AA 123456 234567
2 BB 345632 987456
3 CC 563421 UNKNOW
so psz give the replies of the above problem
sreekanth kancharla