Why do we use QUIT commmand for proc datasets and proc sql ???

Answers were Sorted based on User's Feedback



Why do we use QUIT commmand for proc datasets and proc sql ???..

Answer / n katepalli

The question was why were those commands used.
To my knowledge, proc sql and datasets are interactive
procedures i.e quit command is used after them i.e telling
sas not to expect another one of them .
where as proc print,sort are non - interactive procedures.

Is This Answer Correct ?    15 Yes 0 No

Why do we use QUIT commmand for proc datasets and proc sql ???..

Answer / rohit bedi

Proc dataset is one of the procedures which allow run group processing which means that if we write only run after proc dataset, it doesn't get terminated. It continues to run in the background. So we mention quit to terminate proc dataset.

Proc sql also gets terminated only when it encounters a step boundary such as quit, data or another proc statement. That is why you see 'Proc SQL Running' in the editor window top bar when proc sql is used without quit statement.

It is not mandatory to mention quit after proc dataset or proc sql but is recommended as a best practice if it is not required to keep the procedures running as it frees up the memory.

Is This Answer Correct ?    0 Yes 0 No

Why do we use QUIT commmand for proc datasets and proc sql ???..

Answer / charu tiwari

QUIT command is used for both proc datasets,proc sql.

Proc SQL
Select
from
Quit;

Proc datasets
proc datasets lib=db;
quit;
run;

Is This Answer Correct ?    2 Yes 15 No

Post New Answer

More SAS Interview Questions

What is the maximum and minimum length of macro variable

0 Answers  


i have one dataset data l; input name: $ 25; cards; manoj is a good boy to krishna krishna is a god boy to malli malli is good boy to ramana ques: here i want "manoj" observations nubers

3 Answers   SAS,


What is difference between N and n????

2 Answers   Sciformix,


What do you know about sas and what we do? : sas-grid-administration

0 Answers  


what do the mod and int function do? What do the pad and dim functions do? : Sas programming

0 Answers  






What is the pound sign used for in the data_null_ ?

1 Answers  


Explain the difference between nodup and nodupkey options?

0 Answers  


How would you combine 3 or more tables with different structures?

7 Answers  


Do you use PROC REPORT or PROC TABULATE? Which do you prefer? Explain.

3 Answers  


what is the difference between infile and input? : Sas-administrator

0 Answers  


Explain the message ‘MERGE HAS ONE OR MORE DATASETS WITH REPEATS OF BY VARIABLE’.

2 Answers  


How many tiers in sas architecture?

2 Answers  


Categories