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: Register Now

Registration is now open for SAS Innovate 2025 , our biggest and most exciting global event of the year! Join us in Orlando, FL, May 6-9.
Sign up by Dec. 31 to get the 2024 rate of just $495.
Register now!

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
  • 1128 views
  • 1 like
  • 2 in conversation