Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

String Concatenation is too Long

Status
Not open for further replies.

tokerago13

Programmer
Jan 10, 2002
35
GB
Hi,
I'm extracting data from a temporary table that has been updated and inserted into using pl/sql. The columns are being concatenated as the data is needed as a csv file.The error I get is:
ERROR at line 1:
ORA-01489: result of string concatenation is too long.
Any ideas on how I can bypass this error message?
Thanks.
Tony
 
You can't "bypass" the error message. You will have to find out which column is causing the problem and apply a function such as substr to it to prevent the error.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top