What is the difference between bulk copy (bcp) and bulk insert?
Is there a switch to export all of the data in all of tables in a database for bcp?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
BULK INSERTis a Transact-SQL statement.bcp.exe uses BULK INSERT to do its job. It’s the same relation that the one between sqlcmd.exe (a tool) and SELECT (a statement).
There is no ‘switch’ to export all tables in a database. There is however an export and import wizard which is based on SSIS, not on bcp.