1 The SAS System 18:36 Tuesday, April 9, 2024
NOTE: Unable to open SASUSER.REGSTRY. WORK.REGSTRY will be opened instead.
NOTE: All registry changes will be lost at the end of the session.
WARNING: Unable to copy SASUSER registry to WORK registry. Because of this, you will not see registry customizations during this
session.
NOTE: Unable to open SASUSER.PROFILE. WORK.PROFILE will be opened instead.
NOTE: All profile changes will be lost at the end of the session.
NOTE: Copyright (c) 2016 by SAS Institute Inc., Cary, NC, USA.
NOTE: SAS (r) Proprietary Software 9.4 (TS1M6)
Licensed to UNIVERSITY OF MARYLAND - T&R SFA, Site 70210321.
NOTE: This session is executing on the X64_SRV19 platform.
NOTE: Analytical products:
SAS/STAT 15.1
SAS/ETS 15.1
SAS/IML 15.1
SAS/QC 15.1
NOTE: Additional host information:
X64_SRV19 WIN 10.0.20348 Server
NOTE: SAS initialization used:
real time 0.46 seconds
cpu time 0.37 seconds
1 /* this file takes out those who graduated from their highest degree in 2000*/
2 libname revelio "C:\Users\cmlei\Box\box-group-smith-finance-resesarch\revelio_data";
NOTE: Libref REVELIO was successfully assigned as follows:
Engine: V9
Physical Name: C:\Users\cmlei\Box\box-group-smith-finance-resesarch\revelio_data
3 libname hdrg2000 "D:\ralymax_cm\data\cleaned\hdg_2000_panel";
NOTE: Libref HDRG2000 was successfully assigned as follows:
Engine: V9
Physical Name: D:\ralymax_cm\data\cleaned\hdg_2000_panel
4 libname temp "D:\ralymax_cm\temp\hdg_2000_panel";
NOTE: Libref TEMP was successfully assigned as follows:
Engine: V9
Physical Name: D:\ralymax_cm\temp\hdg_2000_panel
5 libname linkedin "D:\ralymax_cm\data\raw\inidvidual_position_raw";
NOTE: Libref LINKEDIN was successfully assigned as follows:
Engine: V9
Physical Name: D:\ralymax_cm\data\raw\inidvidual_position_raw
6
7 * change to the fast drive;
8 data _null_;
9 rc=dlgcdir("C:\ralymax");
10 put rc=;
11 run;
2 The SAS System 18:36 Tuesday, April 9, 2024
NOTE: The current working directory is now "C:\ralymax".
rc=0
NOTE: DATA statement used (Total process time):
real time 0.00 seconds
cpu time 0.01 seconds
12
13 /************** ma group **************/
14 * view vars we have;
15 proc contents data = hdrg2000.edu_uid_hgrd_2000_ma;
16 run;
NOTE: PROCEDURE CONTENTS used (Total process time):
real time 0.13 seconds
cpu time 0.01 seconds
NOTE: The PROCEDURE CONTENTS printed page 1.
17
18 * take out their complete career history;
19 data temp.user_ma;
20 set hdrg2000.edu_uid_hgrd_2000_ma (keep = user_id);
21 run;
NOTE: There were 229103 observations read from the data set HDRG2000.EDU_UID_HGRD_2000_MA.
NOTE: The data set TEMP.USER_MA has 229103 observations and 1 variables.
NOTE: DATA statement used (Total process time):
real time 0.41 seconds
cpu time 0.01 seconds
22
23 proc sort data = temp.user_ma nodupkey dupout = dups;
24 by user_id;
25 run;
NOTE: There were 229103 observations read from the data set TEMP.USER_MA.
NOTE: 1932 observations with duplicate key values were deleted.
NOTE: The data set WORK.DUPS has 1932 observations and 1 variables.
NOTE: The data set TEMP.USER_MA has 227171 observations and 1 variables.
NOTE: PROCEDURE SORT used (Total process time):
real time 0.04 seconds
cpu time 0.06 seconds
This is what shown in log, no error printed, just stop here and not going forward.
I'm running on a server through remote connection from my desktop. Things work fine if I run directly in sas interactive mode, but stuck when i submit multiple codes using batch sequentially
... View more