Viewing 2 posts - 1 through 2 (of 2 total)
My SQL Server Management Studio is not saving files in the Backup folder....I have other boxes where it works but not on my laptop. Trying to find an option where...
December 3, 2010 at 1:09 pm
#1258623
This should do what you need:
DECLARE @Result CHAR(8000)
SET @Result = ''
SELECT @Result = rtrim(@Result) + ' ' + ltrim(str(a_id)) + ' ' + a_add
+ ' ' + a1_add +...
June 8, 2010 at 8:48 am
#1177510