i am running the following query
SELECT ora_database_name AS SERVER_NAME,'CNTODSSTG' AS DB_NAME,p.owner,p.object_name,s.text
FROM all_procedures p,all_source s
WHERE p.owner<>'SYS' AND p.owner<>'SYSTEM' AND s.TYPE='PROCEDURE'
AND p.object_name=s.name
GROUP BY p.owner,p.object_name,s.text
s.text is the coding inside the procedure. But it is coming in different lines I need to get it in one column Let me know how to modify above query to get required result