Created
January 5, 2018 09:27
-
-
Save nordineb/2cfd4327e67b588f5a4cf8d28311db8b to your computer and use it in GitHub Desktop.
Import-Export Data With Management Studio
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
BULK INSERT MyTable | |
FROM 'c:\dump.txt' | |
WITH | |
( | |
FIELDTERMINATOR = '\t', | |
ROWTERMINATOR = '\n', | |
FIRSTROW = 1 | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Select the data to export
Export the data to a text file