Reputation: 568
I'm beginner in sql server,want to write simple bcp command in command prompt to copy table data into the text file , i write this:
bcp myTABLE out f:\example.txt -S DESKTOP-A5CFJSH\MSSQLSERVER1 -T
and my table path in sql server is this:
how can i solve that?thanks.
Upvotes: 0
Views: 983
Reputation: 24114
You should use bcp myTestReport.dbo.myTABLE out f:\example.txt -S DESKTOP-A5CFJSH\MSSQLSERVER1 -T
instead.
Upvotes: 1