I am trying to access data from a sas7bdat file to do some analysis on it. This is the data file: https://github.com/JackStat/6003Data/blob/master/detroit.sas7bdat I have searched this board for other .sas7bdat file questions and tried to copy their code, but it does not work for me. Here is the code I have: libname detData "\\csbs-cfs1.csbs.utah.edu\home_i\u1052325\Downloads\detroit.sas7bdat"; data inventory; set detData.inventory; run; The log says this: 134 libname detData "\\csbs-cfs1.csbs.utah.edu\home_i\u1052325\Downloads\detroit.sas7bdat"; ERROR: Library DETDATA is not in a valid format for access method RANDOM. ERROR: Error in the LIBNAME statement. 135 data inventory; 136 set detData.inventory; ERROR: Libref DETDATA is not assigned. 137 run; NOTE: The SAS System stopped processing this step because of errors. WARNING: The data set WORK.INVENTORY may be incomplete. When this step was stopped there were 0 observations and 0 variables. WARNING: Data set WORK.INVENTORY 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
... View more