fork download
  1. PROC IMPORT OUT= WORK.data2
  2. DATAFILE= "\\xx\xxx\data2.csv"
  3. DBMS=CSV REPLACE;
  4. delimiter=",";
  5. GETNAMES=no;
  6. DATAROW=1;
  7. GUESSINGROWS=1000 ;
  8. RUN;
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Standard input is empty
compilation info
Main.java:1: error: class, interface, or enum expected
PROC IMPORT OUT= WORK.data2
^
Main.java:2: error: illegal escape character
            DATAFILE= "\\xx\xxx\data2.csv"
                            ^
Main.java:2: error: illegal escape character
            DATAFILE= "\\xx\xxx\data2.csv"
                                ^
Main.java:4: error: class, interface, or enum expected
      delimiter=",";
      ^
Main.java:5: error: class, interface, or enum expected
     GETNAMES=no;
     ^
Main.java:6: error: class, interface, or enum expected
     DATAROW=1;
     ^
Main.java:7: error: class, interface, or enum expected
     GUESSINGROWS=1000 ;
     ^
Main.java:8: error: class, interface, or enum expected
RUN;
^
8 errors
stdout
Standard output is empty