The following scripts work perfectly. Hope this is helpful. filename pop_raw temp; proc http url="https://data.lacity.org/api/views/nxs9-385f/rows.csv?accessType=DOWNLOAD" method="GET" out=pop_raw; run; proc import datafile=pop_raw dbms=csv replace out=pop; guessingrows=max; run;
... View more