Consider two scenarios of sales
contains over 10M records, 50 bytes for one record:
SCENARIO ONE:
data STORE.sale;
set work.sale;
run;
proc copy in = work out = STORE;
select sale;
run;
SCENARIO TWO:
data STORE.sale;
set FACTORY.sale;
run;
proc copy in = FACTORY out = STORE;
select sale;
run;
In these two scenarios, is there a reason to choose one way over another?