Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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 '+'.
share|improve this question
5  
The errors are pretty clear on what you need to look at. – adhocgeek Feb 26 at 10:20
2  
Advices on your code: 1) build your parameter before the execution of the procedure in a local variable; 2) prefix your procedure with the schema name (dbo.) 3) when concatenating strings with integers convert the latter to string; 4) consider SSIS package if you need to do lots of file import and processing. – Marian Feb 26 at 10:25

migrated from dba.stackexchange.com Feb 26 at 10:45

1 Answer

up vote 3 down vote accepted

You need to convert or cast @i (int) to varchar for string concatenation. Also note the syntax of Convert as you have used cast syntax to convert.

declare @i int = 0, @path varchar(500)

while(@i<85)
begin

    --You can simplify (or remove if condition) using right() function as below

    --Assign @path here before calling stored procedure
    select @i = @i + 1, 
           @path = 'C:\dosya\X_20130208_' + right(100 + @i, 2) + '.txt'

    --Execute stored procedure here
    exec TESTSP @path

end
share|improve this answer
select 'C:\dosya\X_20130208_0'+right('0'+convert(varchar(10),@i),2)+'.txt' exec MRTG_FILE_COLLECT 'C:\dosya\X_20130208_0'+right('0'+convert(varchar(10),@i),2)+'.txt' problem after EXEC – programmerist Feb 26 at 11:48
What do you mean? not clear. – Kaf Feb 26 at 11:51
exec TESTSP 'C:\dosya\X_20130208_0'+right('0'+convert(varchar(10),@i),2)+'.txt' problem is that. – programmerist Feb 26 at 11:52
1  
@i=@i+1; needs to be SET @i = @i + 1; or SET @i += 1;. Also I don't think you can build the expression when calling the stored procedure... – Aaron Bertrand Feb 26 at 13:16
1  
@Kaf I don't think so. Did you try it? EXEC sp_spaceused 'foo'+'bar'; yields Msg 102, Level 15, State 1, Line 1 Incorrect syntax near '+'. – Aaron Bertrand Feb 26 at 13:24
show 9 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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