Possible Duplicate:
SQL Server 2005 - Export table programatically (run a .sql file to rebuild it)
Generate INSERT statements from a SQL Server Table
I have a table in SQL Server 2005 and want to get a printout out of inserts so I can copy and paste them into my production server (I cannot directly link to production server).
I just want a print out of X number of records from a very large table.
select * from data where tableID > 10100;
The above is the condition I want to use to figure out which records to generate the inserts for.