Here is the code I use LIBNAME LASRLIB "Adhoc LASR LIB" TAG=ADHLASR PORT=10041 HOST="MySASServerHost.com"; data tablemem; set lasrlib._T_TABLEMEMORY; run; proc sort data=tablemem nodupkey; by Tablename; run; proc print data=tablemem; title "LASR Server Tables"; var Tablename; run; here is the property of my library Here is the result 1 The SAS System 10:00 Monday, February 5, 2018 1 %_eg_hidenotesandsource; 5 %_eg_hidenotesandsource; 30 31 LIBNAME LASRLIB "Adhoc LASR LIB" TAG=ADHLASR PORT=10041 HOST="MySASServerHost.com"; ___ 22 ERROR 22-7: Invalid option name TAG. 31 ! LIBNAME LASRLIB "Adhoc LASR LIB" TAG=ADHLASR PORT=10041 HOST="MySASServerHost.com"; ____ 22 ERROR 22-7: Invalid option name PORT. 31 ! LIBNAME LASRLIB "Adhoc LASR LIB" TAG=ADHLASR PORT=10041 HOST="MySASServerHost.com"; ____ 22 ERROR: Libref LASRLIB is not assigned. ERROR: Error in the LIBNAME statement. ERROR 22-7: Invalid option name HOST. 32 33 data tablemem; 34 set lasrlib._T_TABLEMEMORY; ERROR: Libref LASRLIB is not assigned. 35 run; NOTE: The SAS System stopped processing this step because of errors. WARNING: The data set WORK.TABLEMEM may be incomplete. When this step was stopped there were 0 observations and 0 variables. WARNING: Data set WORK.TABLEMEM was not replaced because this step was stopped. NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.00 seconds 36 37 proc sort data=tablemem nodupkey; 38 by Tablename; ERROR: Variable TABLENAME not found. 39 run; NOTE: The SAS System stopped processing this step because of errors. NOTE: PROCEDURE SORT used (Total process time): real time 0.00 seconds cpu time 0.00 seconds 40 41 proc print data=tablemem; 42 title "LASR Server Tables"; ERROR: Variable TABLENAME not found. 43 var Tablename; 44 run; NOTE: The SAS System stopped processing this step because of errors. NOTE: PROCEDURE PRINT used (Total process time): real time 0.00 seconds 2 The SAS System 10:00 Monday, February 5, 2018 cpu time 0.00 seconds 45 46 %_eg_hidenotesandsource; 61 62 63 %_eg_hidenotesandsource; 66
... View more