What is the difference between a PROC step and a DATA step?

Answers were Sorted based on User's Feedback



What is the difference between a PROC step and a DATA step?..

Answer / kiran datir

The DATA Step is a true workhorse. It allows you to create multiple datasets in one swift step. PROC step requires several SELECT clauses to create multiple datasets.

Is This Answer Correct ?    1 Yes 0 No

What is the difference between a PROC step and a DATA step?..

Answer / ju_rk

DATA step is a sequential process (one at a time for each observation), whereas the SQL procedure is a simultaneous process for all the observations.

Is This Answer Correct ?    0 Yes 0 No

What is the difference between a PROC step and a DATA step?..

Answer / vj

Data Step processes data ROW-wise.
Proc Step processes data COLUMN-wise.

Is This Answer Correct ?    0 Yes 3 No

What is the difference between a PROC step and a DATA step?..

Answer / surekha

pankaj's answer is completely true
@pankaj have u taken any training course of SAS

Is This Answer Correct ?    1 Yes 7 No

Post New Answer

More SAS Interview Questions

What happens in the following code, if u type 8 instead of *? proc sql noprint; create table abc as select 8 from lib.abc; quit;

3 Answers  


Mention the difference between ceil and floor functions in sas?

0 Answers  


What is slibref?

0 Answers  


Can we create datasets by proc step ? (Proc contents, Means)?

2 Answers  


How do you debug and test your SAS programs?

0 Answers   Quintiles,






What do you know about sas data set?

0 Answers  


What techniques and/or PROCs do you use for tables?

4 Answers   Oracle,


what is the effect of the options statement errors=1? : Sas programming

0 Answers  


Explain the difference between nodup and nodupkey options?

0 Answers  


What are the criticality that you have faced during your project in SAS?

2 Answers  


whenever we using the merging through data set merging ,we can get note in log like this "MERGE STATEMENT HAS MORE THAN ONE ONE DATASET BY REPEATED BY VAIABLES" but the output has come in good manner,whenever in in sql(full join) we can get cartion product.so How do overcome this problem in sql?

1 Answers   Accenture,


I have 50 variables in one data set, In reports i want to generate every 10 variables in one page how we will write code in proc report.

4 Answers  


Categories