BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
csetzkorn
Lapis Lazuli | Level 10

Let us say I have a massive tab separated file stored in a network drive visible to SAS. The file contains these columns:

 

 

 

Can I access this file via, for axample PROC SQL, to only populate a SAS dataset based on a subset of this data (e.g. where Id = 1234)?

1 ACCEPTED SOLUTION

Accepted Solutions
Shmuel
Garnet | Level 18

If you use a datastep you can filter data while reading the external file, but if possible

better read the whole file then filter as need using sas tools.

View solution in original post

5 REPLIES 5
Shmuel
Garnet | Level 18

SAS sql will handle SAS dataset, not a TAB separated file.

You need first to import it into sas  using FILENAME ... DLM='09'x;

Use either proc import or a datastep to read the file;

csetzkorn
Lapis Lazuli | Level 10
OK thanks. Can I apply filter here?
ballardw
Super User

I would suggest reading the entire set into SAS. Then you can subset with a WHERE clause in Proc SQL to your hearts content.

 

I do not know the number of times I have had someone tell me we need the "XYZ" values only. And then finish the project and get told "need ABC and XYZ_2" also. If you subset the data too early then you may be rereading the data from scratch many times.

Shmuel
Garnet | Level 18

If you use a datastep you can filter data while reading the external file, but if possible

better read the whole file then filter as need using sas tools.

Kurt_Bremser
Super User

A subsetting if can be used in a data step that reads from a flat file. But I would only contemplate this if the dataset grows to considerable size. Otherwise you're better off by subsetting later.

 

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!

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
  • 5 replies
  • 802 views
  • 0 likes
  • 4 in conversation