DATAステップの現在の実行フェーズを示します。
種類: | 自動マクロ変数(読み込み専用) |
24 data null; 25 x=1; 26 /* Placing the argument in single quote marks delays the */ 27 /* evaluation until after the DATA step has been compiled. */ 28 call execute('%put &sysdatastepphase;'); 29 put x=; 30 run; EXECUTION NOTE: DATA statement used (Total process time): real time 0.04 seconds cpu time 0.01 seconds x=1
1 data null; 2 call symput("phase", "&sysdatastepphase"); 3 run; NOTE: The data set WORK.NULL has 1 observations and 0 variables. NOTE: DATA statement used (Total process time): real time 0.01 seconds cpu time 0.00 seconds 4 5 %put &=phase; PHASE=COMPILATION