Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


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

How sas treats the dsd delimiters?

0 Answers  


What is the use of PROC gplot?

0 Answers  


if a variable contain dates like "2015/01"---"2015/12" (yymm) ,How to add day to those dates,if them month is jan then 31 if the month is feb then 28 so on ...

0 Answers   Accenture,


What is the difference between nodup and nodupkey options?

20 Answers   iFlex, Makro, Talwar,


what is study design in while working with SAS? what are screening variables in SAS?

0 Answers   MSCR,


what is data integration? : Sas-di

0 Answers  


How we can call macros with in data step? : sas-macro

0 Answers  


Hi, If anyone has base SAS certification dumps, please share.

0 Answers  


if a program has some 1000 or more line and how to know whether the syntax of the particular code is correct without checking it manually

4 Answers   Accenture,


Does anybody has lastest SAS certification dumps,if anybody has please mail me at akshara_SAS@ymail.com Thanks Akshara

55 Answers  


how do i read multiple spaces in datasets? eg: vijaya raghava perumal.I tried with using & but it workss if its vijaya raghava but not for raghava perumal.how to do this?

8 Answers   Wipro, Xansa,


What is the basic syntax style in SAS?

0 Answers  


Categories