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

explain about various caches available in data integrator? : Sas-di

0 Answers  


How will you assign all the variables of an dataset into a macro variable separated by a space? For example if a dataset has variables A,B,C. Assign them to a macro variable X as X=A B C

3 Answers   Accenture, Oracle,


What is the registered Key word is sas????

2 Answers   TCS,


In the following DATA step, what is needed for ‘fraction’ to print to the log? data _null_; x=1/3; if x=.3333 then put ‘fraction’; run;

1 Answers  


Tell me about % include and % eval? : sas-macro

0 Answers  


If you have a data set that contains 100 variables, but you need only five of those, what is the code to force SAS to use only those variable?

10 Answers   Accenture,


How to convert HTML file into SAS dataset?

0 Answers  


What is shift table? have you ever created shift that?

2 Answers   Accenture, Clinical Research, Quintiles,


for whom is sas data integration studio designed? : Sas-di

0 Answers  


What is the difference between order and group variable in proc report?

0 Answers  


what is pdv? how it is related to input buffer in sas?

5 Answers   HSBC, Satyam,


What statement do you code to tell SAS that it is to write to an external file?

5 Answers  


Categories