Hi community, I'm running two sas codes for importing .csv file from web (below the two codes) but one is good, while the other returns an error although it is very similar (really only the .csv file and relative url is different). Is there someone is avaliable to help me and explain me the reason, please. Many thanks in advance for any suggestion. Best, Davide /*I state the libname*/ libname ESERCIZI "/home/u62978465/sasuser.v94"; and then I run the code for importing the .csv: This code works: filename csvFile url "https://raw.githubusercontent.com/PacktPublishing/Mastering-SAS-Programming-for-Data-Warehousing/master/Chapter%202/Data/Chap2_1_CSV.csv" termstr=crlf; proc import datafile=csvFile out=esercizi.foo replace dbms=csv; run; This code does not work (just the .csv file and relative url path are changed in relation to the first code) filename csvFile url "https://raw.githubusercontent.com/DavideGuido/SASrep/main/ab2.csv" termstr=crlf; proc import datafile=csvFile out=esercizi.foo_git replace dbms=csv; run; The log error is this: NOTE: Unable to open parameter catalog: SASUSER.PARMS.PARMS.SLIST in update mode. Temporary parameter values will be saved to WORK.PARMS.PARMS.SLIST. Unable to sample external file, no data in first 5 records. ERROR: Import unsuccessful. See SAS Log for details.
... View more