http://www.simple-talk.com/sql/database-administration/working-with-the-bcp-command-line-utility/
Export:
bcp testdb.dbo.TBL_BOOKINGS out C:\sqlbackup\test8.txt -S ipadress/servername -U sa -P password -n
Import:
bcp testdb.dbo.TBL_BOOKINGS in C:\sqlbackup\test8.txt -S ipadress/servername -U sa -P password -n
Export:
bcp testdb.dbo.TBL_BOOKINGS out C:\sqlbackup\test8.txt -S ipadress/servername -U sa -P password -n
Import:
bcp testdb.dbo.TBL_BOOKINGS in C:\sqlbackup\test8.txt -S ipadress/servername -U sa -P password -n
Comments
Post a Comment