Please can someone tell me how I can easily export data from a SQL Server 2012 database? I have been trying for a while now and have read several articles but I either do not understand them or they are not what I am looking for.
I want to export ONLY the data itself to a single .sql
file, is this possible and if so can somebody please tell me how I can do this?
I expect the code to be generated as insert
statements eg.
insert into employee(id, name, address)
values('1', 'Yao Ming', 'No.2 NBA Street');