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

sas-innovate-2024.png

Available on demand!

Missed SAS Innovate Las Vegas? Watch all the action for free! View the keynotes, general sessions and 22 breakouts on demand.

 

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.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

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