If this is your first visit, be sure to check out the FAQ by clicking the link above.
You may have to register before you can post: click the register link above to proceed.
To start viewing messages, select the forum that you want to visit from the selection below.
I have 3 columns as varchar(255). All the three columns are completly filled. When I write the following concatinated select query, it gives only 255 char output.
select rtrim(col1)+rtrim(col2)+rtrim(col3) from tmp
Do you guys know why is that?. Is this sybase (SQL) restriction that length of each output column is max 255?
You may also want to check whatever you are using to retrieve the data. In others words if you are using a tool such as WinSQL or SQL Advantage they may limit the information returned. If it is within some code check the length of the variable that retrieve's the data etc.