Bonjour à tous,
je souhaite réduire la taille de mon export mais je ne sais pas comment faire.

voici mon script

Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
SET space 0        ; 
SET linesize 3000  ;
SET trimspool ON   ;
SET pagesize 0     ;
SET colsep ';'	;
SET echo off       ;
SET feed off     ; 
SET trimout off    ;
SET heading off    ;
SET feedback off   ;
SET termout off    ;
SET verify off     ;
spool export.txt;
SELECT * FROM clisers_old;
spool off   ;
quit;
j'ai mis des separateurs pour delimiter mes colonnes et pouvoir supprimer les champs vides mais je ne connais pas la commande.

Y a-t-il une ame charitable?