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

I have read a lot about DATA steps and how the role of the PDV. However, when the data gets to the PROC step. What happens? It seems like there is not as much literature on this but maybe I am wrong. 

1 ACCEPTED SOLUTION

Accepted Solutions
Kurt_Bremser
Super User

While a data step is always compiled from the code, procedures are pre-compiled modules that are fed with parameters according to your coding. While data step is a "turing-complete" language, procedures have a fixed limited set of capabilities, and therefore there is no need of an in-depth description of the workings.

View solution in original post

2 REPLIES 2
Kurt_Bremser
Super User

While a data step is always compiled from the code, procedures are pre-compiled modules that are fed with parameters according to your coding. While data step is a "turing-complete" language, procedures have a fixed limited set of capabilities, and therefore there is no need of an in-depth description of the workings.

Rick_SAS
SAS Super FREQ

Do you have a specific question about a specific procedure?

 

In general, the procedure reads one observation at a time from a SAS data set. Before the procedure sees any data, the data are filtered by any data set options, such as DROP, KEEP, RENAME, and WHERE clauses. Thus, the procedure sees only the filtered data.

 

hackathon24-white-horiz.png

The 2025 SAS Hackathon Kicks Off on June 11!

Watch the live Hackathon Kickoff to get all the essential information about the SAS Hackathon—including how to join, how to participate, and expert tips for success.

YouTube LinkedIn

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
  • 1147 views
  • 1 like
  • 3 in conversation