This script generates insert statements of your existing data. This is a stored procedure which you need to run once and then it is tailor made for you.
I tried to find this kind of stuff for a while but wasn`t satisfied with the results, so I wrote this stored procedure.
Example (1) Exec [dbo].[INS] 'Dbo.test where 1=1'
Here Dbo is schema and test is tablename and 1=1 is condition
(2) Exec [dbo].[INS] 'Dbo.test where name =''neeraj''' * for string
Here Dbo is schema and test is tablename and name='neeraj' is condition.