I am using the below code in SP, SQL Server 2005

declare @path varchar(500)
set @path = 'E:\Support\test.csv';
print @path
 Create table #mytable( 
name varchar(max), class varchar(max), roll varchar(max)
)

BULK INSERT #mytable FROM @path 
WITH
(
FIELDTERMINATOR = ',',
ROWTERMINATOR = '\n'
);
Go
select * from #mytable

drop table #mytable

But it is throwing the following error :

Msg 102, Level 15, State 1, Line 8
Incorrect syntax near '@path'.
Msg 319, Level 15, State 1, Line 9
Incorrect syntax near the keyword 'with'. 
If this statement is a common table expression or an xmlnamespaces clause, 
the previous statement must be terminated with a semicolon.
Msg 208, Level 16, State 0, Line 1
Invalid object name '#mytable'.

Could anybody help me.

link|improve this question

0% accept rate
feedback

2 Answers

I had certain requirement to export insert data from CSV file to SharePoint. Have a look at Import CSV File Into SQL Server Using Bulk Insert .

What I did is just change your list separator value from RegionalSetting to any other like "$", this way you can overcome ',' inside any column value. Once you change this to "$" each column will be separated by '$'.

After that If you are certain that you have you field as int, just take your column as varchar while you do bulk insert. Once data is there than you can change your column to integer.

Hope I am clear with your requirement, let me know if you find any issue.

link|improve this answer
feedback

You can't do the following

BULK INSERT #mytable FROM @path 

if you are expecting this to translate to

BULK INSERT #mytable FROM 'E:\Support\test.csv'

It's not the file name that's in the varchar, SQL sees it @Path as the data and not a string containing the path.

If you need to use a variable for the path, you will need to use some dynamic SQL which roughly translates to (excuse syntax errors)

DECLARE @SQL varchar(max)
SET @SQL = 'BULK INSERT #mytable FROM '+ @path + ' 
--Add the rest of your code here

EXEC (@SQL)

If your variable is never going to change though I'd just go ahead and stick the string into the statement itself.

Hope that helps.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.