up vote 3 down vote favorite
share [g+] share [fb]

In SQL server 2005 this query

select len(cast('the quick brown fox jumped over the lazy dog' as varchar))

returns 30 as length while the supplied string has more characters. This seems to be the default. Why 30, and not 32 or any other power of 2?

link|improve this question

Holy crap--I didn't know CAST would truncate like this. I always assumed that the returning varchar would be sized to fit what CAST was stuffing into it. I have some code to check up on...bbl – Michael Haren Dec 11 '08 at 13:54
1  
if the default were 42, would you be asking the same question? – hop Dec 11 '08 at 14:06
@hop, no. 42 would in fact make more sense than 30. What kind of number is 30?? – edosoft Dec 12 '08 at 12:31
4  
@Edoode: 30 is the point at which everything is downhill... – Chris Lively Apr 22 '09 at 19:23
feedback

2 Answers

up vote 6 down vote accepted

Why don't you specify the varchar length? ie:

select cast('the quick brown fox jumped over the lazy dog' as varchar(45))

As far as why 30, thats the default length in SQL server for that type

Edit: Moved this up from my comment:

wanted to double check the default length statement...here it specifies it on MSDN http://msdn.microsoft.com/en-us/library/ms176089.aspx first sentence under "Remarks"

link|improve this answer
+1. Why wouldn't you set the length? Not setting it is asking for trouble. – Bert Evans Dec 11 '08 at 17:19
It was a quick and dirty query, so that why I didn't specify. Thanks for pointing me to the docs though where it is mentioned though. – edosoft Dec 12 '08 at 10:49
You are lucky you used it there, if you had specified a parameter as varchar with no length then you would have gotten a 1 character varchar. Always alwys specify a length when casting to varchar or creating a varaiable that is varchar or nvarchar. – HLGEM Nov 7 '11 at 19:05
feedback

I don't know why they chose 30, but it was the same in Sybase SQL Server, which Microsoft's SQL Server was developed from. It seems to be a peculiarity of those RDBMSs as it's not in the SQL standards, and other servers differ in their behaviour.

link|improve this answer
1  
According to the SQL standard, a cast to VARCHAR with no length should be a cast to VARCHAR(1). That's not useful - so you should always provide a length. There's a case that 30 is a better default than 1; I'd even agree. But why 30 instead of 25, 32, 40, 64, ... aaah; that way lies madness! – Jonathan Leffler Dec 11 '08 at 13:43
feedback

Your Answer

 
or
required, but never shown

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