I would like to read rows from txt files and make some processing in the procedure TESTSP. But I do have some error. How should I rewrite my queries? Best regards.
Code:
DECLARE @i int
set @i =0
WHILE(@i<85)
begin
@i=@i+1;
if(@i<10)
begin
exec TESTSP'C:\dosya\X_20130208_0'+@i+'.txt'
end
else
begin
exec TESTSP 'C:\dosya\X_20130208_'+convert(@i as varchar(2))+'.txt'
end
end
Errors:
Msg 102, Level 15, State 1, Line 5
Incorrect syntax near '@i'.
Msg 102, Level 15, State 1, Line 8
Incorrect syntax near '+'.
Msg 102, Level 15, State 1, Line 12
Incorrect syntax near '+'.