bonsoir,
Dans l'importation de ma base de données où j'ai plusieurs variables y compris des variables format date, sas m'affiche que y'a une erreur
voilà le code que j'ai essayé, apparemment j'ai un problème dans les variables date
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
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35 DATA pfe.test2; INFILE 'C:\Users\yosra\Desktop\PFE\données\012013\022013\DMS0020_022013.txt' lrecl=2000 truncover firstobs=1; INPUT @1 AccountNumber $ 26. SOLDMYCAL 44-60 branch $ 84-94 paymentype 95 soldemy 108-125 description $ 126-160 racine $ 166-171 classification $ 181-215 asofdate 228-237 loanoff $ 241-245 interestrate 266-281 .2 banknum $ 283-290 tauxdevase 297-303 prevrepricedate 308-318 maturitydate 356-366 nxtrpmdate 368-378 originalbalance 380-397 lifetimecieling 398-400 datededepart 401-411 montantderetrait 413-429 daysinmonth 488-490 producttype $ 491-496 rateflag $ 510 repricespead 511-524 repriceidx $ 527-529 accuredinterestnonech 615-633 rembouranticip 633-648; format asofdate yymmdd10. datededepart yymmdd10. nxtrpmdate yymmdd10. maturitydate yymmdd10. prevrepricedate yymmdd10.; run;
Partager