Concat lenght
Posted by: Rochi Febo Dommarco
Date: October 01, 2007 08:52AM

Hi all,

I am having problems with the concat function.
This is the query:

SELECT
CONCAT('<row><ReqId>', t1.ReqId, '</ReqId>',
'<ReqName>', t1.ReqName, '</ReqName>',
'<ReqVersionId>', ReqVersionId, '</ReqVersionId>',
'<Type>', t1.Type, '</Type>',
'<Author>', Author, '</Author>',
'<Detail>', Detail, '</Detail>',
'<Status>', Status, '</Status>',
'<DateCreated>', DateCreated, '</DateCreated>',
'<LastUpdated>', t1.LastUpdated, '</LastUpdated>',
'<AreaCovered>', t1.AreaCovered, '</AreaCovered>',
'<Priority>', t1.Priority, '</Priority>',
'<Level>',h.Level, '</Level>',
'<IsLeaf>', h.IsLeaf, '</IsLeaf></row>')
FROM requirement ...

and here the result:

CONCAT('<row><ReqId>', t1.ReqId, '</ReqId>',
'<ReqName>', t1.ReqName, '</ReqName>',
'<ReqVersionId>', ReqVersionId, '</ReqVersionId>',
'<Type>', t1.Type, '</Type>',
'<Author>', Author, '</Author>',
'<Detail>', Detail, '</Detail>',
'<Status>', Stat
NULL
NULL
...

It seems that there is a maximum lenght fot the arguments list of concat.

Is it true? How I can override this limitation?

Thanks in advance for any help you will provide.

Best regards

Options: ReplyQuote


Subject
Views
Written By
Posted
Concat lenght
4314
October 01, 2007 08:52AM


Sorry, you can't reply to this topic. It has been closed.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.