[ORACLE 9i] : Commentaire avec <RetourChariot>
Bonjour
Je fais un sql*plus du type
Code:
1 2 3 4 5 6 7 8 9 10 11 12 13 14
|
define param1 = &1
define param2 = &2
spool Service¶m2..csv
COLUMN ResultatRequete FORMAT A4000
select C.ID_COURRIER || ';' ||
A.ID_ACTIVITE || ';' ||
NVL(C.COMMENTAIRE,' ') as ResultatRequete
from bac_activite A ,
bac_courrier C
where A.ID_ACTIVITE = C.ID_ACTIVITE
and C.ID_SERVICE = ¶m1
Order by C.DATE_RECEPTION DESC, L.LIBELLE |
Le problème est que s'il y a des retour charriot dans le commenatire, le fichier csv s'en retrouve altéré.
Comment puis-je résoudre ce problème SVP.
Merci