Hi Purushottam hope this wil help full,
DataTable dt = new DataTable();
dt.ReadXml("Read.xml");
string strConnectionString = @"Data Source=xyzYY\SQLEXPRESS;Initial Catalog=TrackerDB;User ID=admin;Password=wxyz;";
SqlBulkCopy sqlBulk = new SqlBulkCopy(strConnectionString);sqlBulk.DestinationTableName = "dbo.Quote_Staging"; sqlBulk.WriteToServer(dt);
sqlBulk.Close();