Is it possible to generate individual INSERT statements for SQL Server records using just Management Studio or Visual Studio?
You can "generate scripts" to get the data for the entire table in SSMS, but not just a single row or filtered set of rows.
In Visual Studio 2012, if you select the table data in SQL Server Object Explorer, you get a "Script" button, which generates insert statements for the grid results, which is either 200, 1000, or "All" records - but I can't find a "WHERE" filter, like there is in SSMS.
Is there any trick that I'm missing? Either SSMS or VS would be great - ideally I'd be able to filter a specific row or set of rows, then generate INSERT statements specifically for these rows.
There's SSMS Toolpack, RedGate, Toad, and I'm sure a handful of other paid products that can do this, but I'm hoping there's some built-in way.
(This question has been addressed before, but all I can find was prior to 2012, so maybe something has been introduced since then).