Firstly, I am new to SQL so be gentle.
I have 700,000 records of search data to upload to my database split into tilde '~' delimited files (5000 records per file), I used the ~ due to comma's in the text, I have a connection to my online database using SQL Server Management Express (2005).
I have a script that will upload to the table, but no permission to BULK upload.
BULK
INSERT Search_Date
FROM 'C:\Temp\20080414.txt'
WITH
(
FIELDTERMINATOR = '~',
ROWTERMINATOR = '\n'
)
GO
How do I GRANT BULK permissions, it is not on the user properties.
Or is there a better quicker way of populating this table?
Any replies in Idiot proof steps please.
David


Reply With Quote
Bookmarks