1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49
| 61 DATA S.T1_for_proc_format ;
62 SET S.T_LU_DBL end = eod ;
63 label = put(u_ID_RETeNU ,8.) ;
64 start = U_ID_UR ;
65 end = U_ID_UR;
66 fmtname = "T1_format";
67 type = "n" ;
68 output ;
69 IF eod then do ;
70 start = . ;
71 end = . ;
72 label = "xxx" ;
73 hlo = "o" ; /* --> Condition "other" */
74 output ;
75 end ;
76 run ;
NOTE: 1753 observations copiées de la table S.T_LU_DBL.
NOTE: La table S.T1_FOR_PROC_FORMAT a 1754 observations et 9 variables.
NOTE: L'étape DATA a utilisé (Durée totale du processus) :
temps réel 0.20 secondes
temps processeur 0.03 secondes
77 proc format fmtlib lib=library cntlin=S.T1_for_proc_format;
NOTE: Format T1_FORMAT se trouve déjà dans la bibliothèque.
NOTE: Le format T1_FORMAT a été copié dans LIBRARY.FORMATS.
78 run ;
NOTE: La procédure FORMAT a utilisé (Durée totale du processus) :
temps réel 0.40 secondes
temps processeur 0.06 secondes
NOTE: 1754 observations copiées de la table S.T1_FOR_PROC_FORMAT.
79 DATA S.T9454parC ;
80 SET S.T9454par ;
81 IF put(A2_INT_u_ID_UR, T1_format.) ne "xxx" then A2_INT_u_ID_UR = input(put(A2_INT_u_ID_UR, T1_format.),8.);
82 IF put(QUEST_u_ID_UR, T1_format.) ne "xxx" then QUEST_u_ID_UR = input(put(QUEST_u_ID_UR, T1_format.),8.);
83 IF put(CODE_ID_UR, T1_format.) ne "xxx" then CODE_ID_UR = input(put(CODE_ID_UR, T1_format.),8.);
84 IF put(SIGLE_ID_UR, T1_format.) ne "xxx" then SIGLE_ID_UR = input(put(SIGLE_ID_UR, T1_format.),8.);
85 IF put(USER_ID_UR, T1_format.) ne "xxx" then USER_ID_UR = input(put(USER_ID_UR, T1_format.),8.);
86 run ;
NOTE: 9454 observations copiées de la table S.T9454PAR.
NOTE: La table S.T9454PARC a 9454 observations et 36 variables.
NOTE: L'étape DATA a utilisé (Durée totale du processus) :
temps réel 3.88 secondes
temps processeur 0.26 secondes |
Partager