BULK INSERT your_table
from 'absolute/path/to/your/file'
WITH
(
FIELDTERMINATOR = ',',
ROWTERMINATOR = '\n'
)
Obviously, you could also use different terminators, but all you need to do is to alter the specified parameter.
...or how to be heavyweight and agile at the same time
BULK INSERT your_table
from 'absolute/path/to/your/file'
WITH
(
FIELDTERMINATOR = ',',
ROWTERMINATOR = '\n'
)
No comments:
Post a Comment