|
Hi Mark,
I would like for you to do a couple of test for me:
1)
Check your BCP version.
Start a command windows and type in “bcp /v”.
You should see version 10.50.1600.1 or later.
2)
Run the BCP command that was output by SQLAzureMW (in the command window):
bcp.exe "[PilotQuiz].[dbo].[webpages_UsersInRoles]" out "c:\SQLAzureMW\BCPData\dbo.webpages_UsersInRoles.dat" -E -n -S (localdb)\v11.0 –T
You should get the same error as before I just want to verify that you get the same error.
3)
Modify the bcp command to look like this and then run:
bcp.exe "[PilotQuiz].[dbo].[webpages_UsersInRoles]" out "c:\SQLAzureMW\BCPData\dbo.webpages_UsersInRoles.dat" -E -n –S “(localdb)\v11.0”
–T
You will notice that the difference in bcp command from #2 to #3 is that I put quotes around the server name.
If that works for you, please let me know and I will modify the code to put the server name in quotes.
4)
If #3 above does not work, try a couple simple variations and see if you can get it to work and let me know if anything works.
Regards,
George
|