BookmarkSubscribeRSS Feed
Mukti
Calcite | Level 5

The is in response to the Activity (Lesson 2) for Importing Data into SAS

 

I ran the following code with success (no errors, no warnings):

proc import REPLACE datafile="s:/workshop/EPG1V2/data/storm_damage.tab"
dbms=tab out=storm_damage_tab;
run;

 

The given answer in the Activity is:

proc import datafile="s:/workshop/EPG1V2/data/storm_damage.tab"
dbms=tab out=storm_damage_tab REPLACE;
run;

 

I ran the code both ways & the results look the same. Can someone please elaborate on this? Does it matter which way the code is written? Thanks.

1 REPLY 1
Tom
Super User Tom
Super User

The order of the options on the PROC IMPORT statement (and most statements that allow options) does not matter.

Since both answer are using the same options both are correct.  Any other permutation of the ordering of those options would also work.

 

 

SAS Innovate 2025: Save the Date

 SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!

Save the date!

LIBNAME 101

Follow along as SAS technical trainer Dominique Weatherspoon expertly answers all your questions about SAS Libraries.

Find more tutorials on the SAS Users YouTube channel.

Discussion stats
  • 1 reply
  • 1067 views
  • 1 like
  • 2 in conversation