How would you keep from overlaying the a SAS set with its
sorted version?

Answers were Sorted based on User's Feedback



How would you keep from overlaying the a SAS set with its sorted version?..

Answer / tangyoulei

proc sort data=*** out=###;
by;
run;

Is This Answer Correct ?    5 Yes 0 No

How would you keep from overlaying the a SAS set with its sorted version?..

Answer / hsong001

I agree that we can use the out= options in proc sort to
create a new data set for the sorted version. However,
sometimes we just forgot it. To prevent overwritten the
original data set that in a permanent library, we can specify:
options noreplace;
This will prevent accidentally overlaying the original data
set in case out= option is not specified.

Is This Answer Correct ?    2 Yes 0 No

How would you keep from overlaying the a SAS set with its sorted version?..

Answer / siri

keep a new dataset name to the sorted version.

Is This Answer Correct ?    1 Yes 0 No

How would you keep from overlaying the a SAS set with its sorted version?..

Answer / ganesh

first create the dataset by giving some name after that
sort the data by specifying out option by giving new
dataset name. The dataset can be sorter either ascending or
descending by default it going to be an ascending.

Data god;
input name no sal;
datalines;
ab 12 3500
bc 13 4500
;
run;
proc sort data=god out=man;
by name;
run;

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More SAS Interview Questions

Did you used proc test? when?

0 Answers   Accenture, Quintiles,


Describe the ways in which you can create macro variables? : sas-macro

0 Answers  


Mention the category in which sas informats are placed?

0 Answers  


For what purpose would you use the RETAIN statement?

0 Answers   Quintiles,


What is the difference between input and infile statement?

0 Answers  






How would you identify a macro variable?

0 Answers  


What is SAS?

0 Answers  


Describe a time when you were really stuck on a problem and how you solved it?

0 Answers   Oracle,


what is the function of catx syntax? : Sas-administrator

0 Answers  


How would you determine the number of missing or nonmissing values in computations?

0 Answers  


Hi Friends, My name is Priya,am new to this Forum. am looking for SAS Platform Administration Interview Questions.I searched every where but I couldn't find any where.please can anyone help me with the FAQ's. It would be a great favor to me if you can email the Interview Questions to priyafeb84@gmail.com

0 Answers  


describe how to adjust the performance of data integrator? : Sas-di

0 Answers  


Categories