You need to combine the files into one large text file, especially if each document only contains one record. That is going to be the biggest hurdle. Separate fields with commas, and records with linebreaks. Wrap each field in quotation marks. You should have a 200-line file at the end. I suggest using an editor with macro functionality. Be aware of fields that contain commas, and make sure they end up inside the quotation marks.
"MR RAMESH KUMAR", "23/64,PANKAJ RESIDENCY", "HYDERABAD", "ANDHRA PRADESH", "8712455", "456456", "[email protected]"
Next, use your editor to put an INSERT statement on each line
INSERT INTO people p (FullName, Residency, ..., Email) VALUES ("MR RAMESH KUMAR", "23/64,PANKAJ RESIDENCY", "HYDERABAD", "ANDHRA PRADESH", "8712455", "456456", "[email protected]");
Then, run the INSERT statements in your database admin tool. That's it!