Hi, 1) Construct an XML file from the front end (ASP.NET). 2) Pass the XML file as a parameter to an Stored Procedure. 3) Write an SP to read the Values from the XML and insert into table. Sample Insert query to read from xml in SP Insert into table1(field1,field2,field3,....,field75) Select * from OpenXml(@intPointer,'/XML1/XML2',2) With (field1 char(6),field2 char(3),field3 char(15),......,field75 char (8) ) Advantages: ========== 1) No need to create 75 parameters. 2) SP creation is very simple and easy to maintain. Ram