vote up 6 vote down star
1

As compared to say: REPLICATE(@padchar, @len - LEN(@str)) + @str

flag

59% accept rate

10 Answers

vote up 11 vote down check

This is simply an inefficient use of SQL, no matter how you do it.

perhaps something like

right('XXXXXXXXXXXX'+ @str, @n)

where X is your padding character and @n is the number of characters in the resulting string (assuming you need the padding because you are dealing with a fixed length).

But as I said you should really avoid doing this in your database.

link|flag
vote up 0 vote down

How about this:

replace((space(3 - len(MyField))

3 is the number of zeros to pad

link|flag
vote up 4 vote down

Several people gave versions of this: right('XXXXXXXXXXXX'+ @str, @n)

be careful with that because it will truncate your actual data if it is longer than n.

link|flag
vote up 1 vote down

probably overkill, I often use this UDF:

CREATE FUNCTION [dbo].[f_pad_before](@string VARCHAR(255), @desired_length INTEGER, @pad_character CHAR(1))
RETURNS VARCHAR(255) AS  
BEGIN

-- Prefix the required number of spaces to bulk up the string and then replace the spaces with the desired character
 RETURN ltrim(rtrim(
        CASE
          WHEN LEN(@string) < @desired_length
            THEN REPLACE(SPACE(@desired_length - LEN(@string)), ' ', @pad_character) + @string
          ELSE @string
        END
        ))
END

So that you can do things like:

select dbo.f_pad_before('aaa', 10, '_')
link|flag
This is actually used in a udf which has to do a few other things to conform some data. – Cade Roux Sep 23 '08 at 16:09
vote up 1 vote down

In SQL Server 2005 and later you could create a CLR function to do this.

link|flag
vote up 1 vote down
select right(replicate(@padchar, @len) + @str, @len)
link|flag
vote up 1 vote down

Ew I wouldn't dirty my data like that. Perform the string manipulation in code instead.

link|flag
vote up 2 vote down
@padstr = REPLICATE(@padchar, @len) -- this can be cached, done only once

SELECT RIGHT(@padstr + @str, @len)
link|flag
vote up 1 vote down

I'm not sure that the method that you give is really inefficient, but an alternate way, as long as it doesn't have to be flexible in the length or padding character, would be (assuming that you want to pad it with "0" to 10 characters:

DECLARE @pad_characters VARCHAR(10)

SET @pad_characters = '0000000000'

SELECT RIGHT(@pad_characters + @str, 10)

link|flag
vote up 2 vote down

There is no more efficient way than that.
Really, it's not too bad - you're able to tell it exactly how much space to add.

link|flag

Your Answer

Get an OpenID
or

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