Thanks for the reply. I should have added this the first post:
This is my code. What do I need to change to make it append
Code:
BULK
INSERT dbo.Leads
FROM 'c:\leads.csv'
WITH
(
FIELDTERMINATOR = ',',
ROWTERMINATOR = '\n'
)
GO
--Check the content of the table.
SELECT *
FROM dbo.Leads
GO
--Drop the table to clean up database.
SELECT *
FROM dbo.Leads
GO
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.