vote up 1 vote down star

I have this query that spawns the following error:

SELECT * FROM Quota
WHERE LEFT(QtLabel, LEN(QtLabel)-2) IN (
'1032',
'3300',
'9682'
)

Msg 536, Level 16, State 5, Line 1 Invalid length parameter passed to the SUBSTRING function.

Am I doing something wrong? It tends to show up when I use the LEN() function. Might it be a datatype issue?

flag

78% accept rate

5 Answers

vote up 7 vote down check

Is it possible that LEN(QtLabel) <= 2 ?

link|flag
my test code shows that it is excatly this. declare @quota table (qtlabel varchar(10)); insert into @quota values('1'); SELECT * FROM @Quota WHERE LEFT(QtLabel, LEN(QtLabel)-2) IN ('1032','3300','9682') – KM Aug 11 at 15:26
1  
AH, of course. I'm so used to filtering some of the records out but I forgot to do it this time. Silly me. – d03boy Aug 11 at 15:27
vote up 2 vote down

Are you sure that each QtLabel field is longer than 2 characters?

link|flag
vote up 1 vote down

LEFT probably uses SUBSTRING internally. What happens if the length of QtLabel is <= 2?

link|flag
vote up 1 vote down

It's because some QtLabel values don't contain > 2 characters, so you end up trying to do a LEFT() with a negative value as the number to restrict to.

In your scenario, you're assuming all QtLabel values are 6 characters, so uou should do:

SELECT * FROM Quota
WHERE LEN(QtLabel) = 6
AND LEFT(QtLabel, LEN(QtLabel)-2) IN (
'1032',
'3300',
'9682'
)
link|flag
vote up 1 vote down

SELECT LEFT('MyText', -2)

will throw the same error

link|flag

Your Answer

Get an OpenID
or

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