Madhivanan Posted 2 Months ago through
Blogs
BCP is one of the fastest methods to export data to various formats like csv,txt,etc and doing this in a command mode is faster than doing it via SSMS.
Let us create this simple tablecreate table test(iud int, name varchar(50))
insert into test(id,name...