1 The SAS System 18:27 Sunday, July 26, 2026 NOTE: Copyright (c) 2002-2012 by SAS Institute Inc., Cary, NC, USA. NOTE: SAS (r) Proprietary Software 9.4 (TS1M4) Licensed to NORTH CAROLINA STATE UNIVERSITY-SFA-T&R, Site 70081220. NOTE: This session is executing on the Linux 5.14.0-284.11.1.el9_2.x86_64 (LIN X64) platform. NOTE: Updated analytical products: SAS/STAT 14.2 SAS/ETS 14.2 SAS/OR 14.2 SAS/IML 14.2 SAS/QC 14.2 NOTE: Additional host information: Linux LIN X64 5.14.0-284.11.1.el9_2.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Apr 12 10:45:03 EDT 2023 x86_64 Red Hat Enterprise Linux release 9.2 (Plow) You are running SAS 9. Some SAS 8 files will be automatically converted by the V9 engine; others are incompatible. Please see http://support.sas.com/rnd/migration/planning/platform/64bit.html PROC MIGRATE will preserve current SAS file attributes and is recommended for converting all your SAS libraries from any SAS 8 release to SAS 9. For details and examples, please see http://support.sas.com/rnd/migration/index.html This message is contained in the SAS news file, and is presented upon initialization. Edit the file "news" in the "misc/base" directory to display site-specific news and information in the program log. The command line option "-nonews" will prevent this display. NOTE: SAS initialization used: real time 0.06 seconds cpu time 0.03 seconds 1 /* 2 Date: 2019-11-04 ERROR: '/share/groupid/username' : No such directory. 3 Purpose: My_program 4 */ 5 6 *Set filerefs and librefs using only relative paths; 7 x "cd /share/groupid/username" 7 ! ; 8 filename lsas "."; 9 libname lsas "."; NOTE: Libref LSAS was successfully assigned as follows: Engine: V9 Physical Name: /gpfs_common/share01/Support/rsenthi/SAS 10 11 ods trace off; 2 The SAS System 18:27 Sunday, July 26, 2026 12 ods listing ; 13 options linesize = 90 NODATE ; 14 15 data lsas.A; 16 call streaminit(123); 17 do i = 1 to 9000000; 18 u = rand("Uniform"); 19 bn = rand('BERNoulli',0.6); 20 bi = rand('BINOmial',0.6,10000); 21 ca = rand("CAUChy"); 22 ga = rand("GAMMA",2,1); 23 po = rand("POISson",4); 24 output; 25 end; 26 run; NOTE: The data set LSAS.A has 9000000 observations and 7 variables. NOTE: DATA statement used (Total process time): real time 4.19 seconds cpu time 3.97 seconds 27 28 29 proc means data=lsas.A mean p90 range; 30 run; NOTE: There were 9000000 observations read from the data set LSAS.A. NOTE: The PROCEDURE MEANS printed page 1. NOTE: PROCEDURE MEANS used (Total process time): real time 25.43 seconds cpu time 56.60 seconds 31 32 %macro comp; 33 %local i; 34 %do i=1 %to 10; 35 proc sort data=lsas.A; 36 by bn bi u; 37 run; 38 39 proc sort data=lsas.A; 40 by i u ca; 41 run; 42 %end; 43 %mend comp; 44 %comp NOTE: There were 9000000 observations read from the data set LSAS.A. NOTE: The data set LSAS.A has 9000000 observations and 7 variables. NOTE: PROCEDURE SORT used (Total process time): real time 3.91 seconds cpu time 7.85 seconds NOTE: There were 9000000 observations read from the data set LSAS.A. 3 The SAS System NOTE: The data set LSAS.A has 9000000 observations and 7 variables. NOTE: PROCEDURE SORT used (Total process time): real time 3.53 seconds cpu time 7.18 seconds NOTE: There were 9000000 observations read from the data set LSAS.A. NOTE: The data set LSAS.A has 9000000 observations and 7 variables. NOTE: PROCEDURE SORT used (Total process time): real time 3.88 seconds cpu time 7.77 seconds NOTE: There were 9000000 observations read from the data set LSAS.A. NOTE: The data set LSAS.A has 9000000 observations and 7 variables. NOTE: PROCEDURE SORT used (Total process time): real time 3.52 seconds cpu time 7.19 seconds NOTE: There were 9000000 observations read from the data set LSAS.A. NOTE: The data set LSAS.A has 9000000 observations and 7 variables. NOTE: PROCEDURE SORT used (Total process time): real time 3.93 seconds cpu time 7.85 seconds NOTE: There were 9000000 observations read from the data set LSAS.A. NOTE: The data set LSAS.A has 9000000 observations and 7 variables. NOTE: PROCEDURE SORT used (Total process time): real time 3.53 seconds cpu time 7.19 seconds NOTE: There were 9000000 observations read from the data set LSAS.A. NOTE: The data set LSAS.A has 9000000 observations and 7 variables. NOTE: PROCEDURE SORT used (Total process time): real time 3.95 seconds cpu time 7.84 seconds NOTE: There were 9000000 observations read from the data set LSAS.A. NOTE: The data set LSAS.A has 9000000 observations and 7 variables. NOTE: PROCEDURE SORT used (Total process time): real time 3.63 seconds cpu time 7.19 seconds NOTE: There were 9000000 observations read from the data set LSAS.A. NOTE: The data set LSAS.A has 9000000 observations and 7 variables. NOTE: PROCEDURE SORT used (Total process time): 4 The SAS System real time 3.87 seconds cpu time 7.76 seconds NOTE: There were 9000000 observations read from the data set LSAS.A. NOTE: The data set LSAS.A has 9000000 observations and 7 variables. NOTE: PROCEDURE SORT used (Total process time): real time 3.46 seconds cpu time 7.06 seconds NOTE: There were 9000000 observations read from the data set LSAS.A. NOTE: The data set LSAS.A has 9000000 observations and 7 variables. NOTE: PROCEDURE SORT used (Total process time): real time 3.93 seconds cpu time 7.90 seconds NOTE: There were 9000000 observations read from the data set LSAS.A. NOTE: The data set LSAS.A has 9000000 observations and 7 variables. NOTE: PROCEDURE SORT used (Total process time): real time 3.49 seconds cpu time 7.10 seconds NOTE: There were 9000000 observations read from the data set LSAS.A. NOTE: The data set LSAS.A has 9000000 observations and 7 variables. NOTE: PROCEDURE SORT used (Total process time): real time 3.92 seconds cpu time 7.90 seconds NOTE: There were 9000000 observations read from the data set LSAS.A. NOTE: The data set LSAS.A has 9000000 observations and 7 variables. NOTE: PROCEDURE SORT used (Total process time): real time 3.50 seconds cpu time 7.12 seconds NOTE: There were 9000000 observations read from the data set LSAS.A. NOTE: The data set LSAS.A has 9000000 observations and 7 variables. NOTE: PROCEDURE SORT used (Total process time): real time 3.95 seconds cpu time 7.94 seconds NOTE: There were 9000000 observations read from the data set LSAS.A. NOTE: The data set LSAS.A has 9000000 observations and 7 variables. NOTE: PROCEDURE SORT used (Total process time): real time 3.48 seconds cpu time 6.97 seconds 5 The SAS System NOTE: There were 9000000 observations read from the data set LSAS.A. NOTE: The data set LSAS.A has 9000000 observations and 7 variables. NOTE: PROCEDURE SORT used (Total process time): real time 3.87 seconds cpu time 7.76 seconds NOTE: There were 9000000 observations read from the data set LSAS.A. NOTE: The data set LSAS.A has 9000000 observations and 7 variables. NOTE: PROCEDURE SORT used (Total process time): real time 3.42 seconds cpu time 6.99 seconds NOTE: There were 9000000 observations read from the data set LSAS.A. NOTE: The data set LSAS.A has 9000000 observations and 7 variables. NOTE: PROCEDURE SORT used (Total process time): real time 4.00 seconds cpu time 7.88 seconds NOTE: There were 9000000 observations read from the data set LSAS.A. NOTE: The data set LSAS.A has 9000000 observations and 7 variables. NOTE: PROCEDURE SORT used (Total process time): real time 3.46 seconds cpu time 7.10 seconds 45 46 proc print data=lsas.A (firstobs=11 obs=21); 47 run; NOTE: There were 11 observations read from the data set LSAS.A. NOTE: The PROCEDURE PRINT printed page 2. NOTE: PROCEDURE PRINT used (Total process time): real time 0.00 seconds cpu time 0.00 seconds 48 ods pdf close; 49 quit; ERROR: Errors printed on page 1. NOTE: SAS Institute Inc., SAS Campus Drive, Cary, NC USA 27513-2414 NOTE: The SAS System used: real time 1:44.05 cpu time 3:30.19