BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
Swapnas
Calcite | Level 5

hi,

I am using below code when reading external data through infile statement

data hh;
infile "/folders/myfolders/data/stud_newdata.txt";
input id $ Name $ Subject $ Speciality $ marks;
where speciality='BBA';
run;

i see below error while executing

ERROR: No input data sets available for WHERE statement.

 

does this mean i should not use WHERE statement when using INFILE statement in dataset?

 

i have worked with WHERE dataset option in the same datastep, it is working but not WHERE statement

 

please let me know if i should not used WHERE statement when reading data through INFILE statement

1 ACCEPTED SOLUTION

Accepted Solutions
Kurt_Bremser
Super User

where= dataset options or where statements are applied to incoming datasets only. When reading from external files, use a subsetting if:

data hh;
infile "/folders/myfolders/data/stud_newdata.txt";
input id $ Name $ Subject $ Speciality $ marks;
if speciality='BBA';
run;

 

View solution in original post

2 REPLIES 2
Kurt_Bremser
Super User

where= dataset options or where statements are applied to incoming datasets only. When reading from external files, use a subsetting if:

data hh;
infile "/folders/myfolders/data/stud_newdata.txt";
input id $ Name $ Subject $ Speciality $ marks;
if speciality='BBA';
run;

 

Jagadishkatam
Amethyst | Level 16
could you please try using the

If statement instead of where statement since we are reading the data from external file.
Thanks,
Jag

hackathon24-white-horiz.png

2025 SAS Hackathon: There is still time!

Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!

Register Now

How to Concatenate Values

Learn how use the CAT functions in SAS to join values from multiple variables into a single value.

Find more tutorials on the SAS Users YouTube channel.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 2 replies
  • 886 views
  • 0 likes
  • 3 in conversation