vBulletin Search Engine Optimization
| |||||||
| Register | FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| ||||
| Hello, Using SQL SERVER 2000 I have 4 columns with varchar(80) each that I want to concatenate. When I look at the result, it only gives me 256 characters. What am I missing on my code? Select Cust_Number, Info = convert(varchar(1000),rtrim(line1) + char(13)+rtrim(Line2) + char(13)+ rtrim(line3) + char(13)+ rtrim(line4)) >From tableOne Go Thank you for your input. Edgar |
| |||
| Edgar (edgarjtan@yahoo.com) writes: > Using SQL SERVER 2000 > > I have 4 columns with varchar(80) each that I want to concatenate. > When I look at the result, it only gives me 256 characters. What am I > missing on my code? > > Select Cust_Number, Info = convert(varchar(1000),rtrim(line1) + > char(13)+rtrim(Line2) + char(13)+ rtrim(line3) + char(13)+ > rtrim(line4)) >>From tableOne > Go Probably nothing. If you are using Query Analyzer, look under Tools->Options->Results->Maximum Characters per Column. -- Erland Sommarskog, SQL Server MVP, esquel@sommarskog.se Books Online for SQL Server 2005 at http://www.microsoft.com/technet/pro...ads/books.mspx Books Online for SQL Server 2000 at http://www.microsoft.com/sql/prodinf...ons/books.mspx |
| |||
| On 23 May 2006 21:09:32 -0700, Edgar wrote: >Hello, > >Using SQL SERVER 2000 > >I have 4 columns with varchar(80) each that I want to concatenate. >When I look at the result, it only gives me 256 characters. What am I >missing on my code? > >Select Cust_Number, Info = convert(varchar(1000),rtrim(line1) + >char(13)+rtrim(Line2) + char(13)+ rtrim(line3) + char(13)+ >rtrim(line4)) >>From tableOne >Go > >Thank you for your input. > >Edgar Hi Edgar, Query Analyzer is displaying only part of the results. Click "Tools" / "Options" and activate the "Results" tab. Increase the "Maximum characters per column" to at least 320. Now rerun the query. -- Hugo Kornelis, SQL Server MVP |
| Thread Tools | |
| Display Modes | |
|
|