Skip to content

Instantly share code, notes, and snippets.

@ruslander
Created September 4, 2012 14:31
Show Gist options
  • Save ruslander/3621684 to your computer and use it in GitHub Desktop.
Save ruslander/3621684 to your computer and use it in GitHub Desktop.
BCP dump table to file and load table from file
Dump
BCP PRO_CITIFXRPTDB01.dbo.network_metrics OUT c:\network_metrics.txt -T -c
Load
BCP PRO_CITIFXRPTDB01.dbo.network_metrics IN C:\reporting\network_metrics.txt -T -c
More details here
http://sqlwithmanoj.wordpress.com/tag/bcp-queryout/
http://msdn.microsoft.com/en-us/library/ms162802.aspx
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment