Efficiently convert a SAS dataset into a CSV

后端 未结 4 572
闹比i
闹比i 2020-12-08 07:53

Can anyone tell me what is the fastest way to programmatically convert a SAS dataset into a CSV file. I know I can use a data step and output to a file etc. But is that the

4条回答
  •  [愿得一人]
    2020-12-08 08:43

    something along these lines?

    proc export data=sashelp.class
        outfile='c:\temp\sashelp class.csv'
        dbms=csv
        replace;
    run;
    

提交回复
热议问题