开发者

Bulk Insert with filename parameter [duplicate]

开发者 https://www.devze.com 2023-04-02 18:09 出处:网络
This question already has answers here: How to cast variables in T-SQL for开发者_运维技巧 bulk insert?
This question already has answers here: How to cast variables in T-SQL for开发者_运维技巧 bulk insert? (6 answers) Closed 9 years ago.

I need to load a couple of thousands of data files into SQL Server table. So I write a stored procedure that receives just one parameter - file name. But.. The following doesn't work.. The "compiler" complains on @FileName parameter.. It wants just plain string.. like 'file.txt'. Thanks in advance.

Ilan.

BULK INSERT TblValues
FROM @FileName
WITH 
(
FIELDTERMINATOR =',',
ROWTERMINATOR ='\n'
)


The syntax for BULK INSERT statement is :

BULK INSERT 
   [ database_name. [ schema_name ] . | schema_name. ] [ table_name | view_name ] 
      FROM 'data_file' 
     [ WITH 

So, the file name must be a string constant. To solve the problem please use dynamic SQL:

DECLARE @sql NVARCHAR(4000) = 'BULK INSERT TblValues FROM ''' + @FileName + ''' WITH ( FIELDTERMINATOR ='','', ROWTERMINATOR =''\n'' )';
EXEC(@sql);
0

精彩评论

暂无评论...
验证码 换一张
取 消