Data Prep Sheet

Action Principale : loadTable

Preparation Code

Script awaiting validation
Copied!
1 
2DATA WORK.CARS_SAMPLE;
3SET sashelp.cars;
4where Make in ('Audi', 'BMW', 'Acura');
5 
6RUN;
7 
8PROC EXPORT
9DATA=WORK.CARS_SAMPLE outfile="%sysfunc(pathname(work))/cars_data.csv" dbms=csv replace;
10 
11RUN;
12 
Actions using this script
  • table loadTable En cours
  • No other action uses this exact script.