I have a huge amount of data from one server's different databases and tables to be transferred into another server's different databases and tables. I've created a stored procedure and my C# application doing is just passing a parameter into my stored procedure.
Lately, I discovered the SQL Bulk which is used by many programmers for transferring huge amount of data.
So which of this two is the best practice to do for transferring huge amount of data and why?
Personally, rather than go through bulk copy, if the data is of a reasonable size I'd do the following:
Of course, if this is something you need to do more than once, that's likely not optimal. For a one-off, though, it should do the trick without having to fiddle with other methods.