Hi,
I have 3 different tables with different structure
table1 (ID as int, Name as nvarchar(20))
table2 (ID as int, address1ID as int, property1 as nvarchar(20),property2 as nvarchar(20))
table3 (ID as int, subID as int, subName as nvarchar(20))
Now, I have to generate a flat file as below:
ID Name (this row from table1)
ID addressID Property1 property2 (this row from table2)
ID subID subName (this row from table3)
The above 3 rows should repeat for every ID.
Please suggest me any approach how to generate this file.
Thanx in Advance..
Murali