J'aimerai comprendre pourquoi j'ai souvent le message d'erreur suivant.
Histoire de le prevenir.
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 .... 15 GOPTIONS ACCESSIBLE; 16 libname MacroLCT "\\Srv_Analyse_Affaires\Evaluations\DonnéesSAS\Statistiques actuarielles\LCT\MACROS"; NOTE: Libref MACROLCT was successfully assigned as follows: Engine: V9 Physical Name: \\Srv_Analyse_Affaires\Evaluations\DonnéesSAS\Statistiques actuarielles\LCT\MACROS 17 OPTIONS SASMSTORE = MacroLCT MSTORED mprint; NOTE: The SAS System was unable to open the macro library referenced by the SASMSTORE = libref MACROLCT. ERROR: A lock is not available for MACROLCT.SASMACR.CATALOG. ERROR: A dummy macro will be compiled. 18 %macro Extraction_RETRAITE(mois= ,nom_librairie=)/STORE DES='Extraction RETRAITE Phase finale'; 19 20 DATA BASE(DROP=AM_FIN_PER_PRE AM_DEB_PER_PRE 21 mn_pre_MEN_sans_sup mn_men_sans_sup_ndi); 22 SET QUERY_FOR_PRESTAT_0001; ...... 187 %mend; 188 189 OPTIONS MSTORED SASMSTORE = MacroLCT mprint; ERROR: A lock is not available for MACROLCT.SASMACR.CATALOG. NOTE: The SAS System was unable to open the macro library referenced by the SASMSTORE = libref MACROLCT. WARNING: Apparent invocation of macro EXTRACTION_RETRAITE not resolved. 190 %Extraction_RETRAITE (mois= 12,nom_librairie= SORTIE ); _ 180 ERROR 180-322: Statement is not valid or it is used out of proper order.
Partager