Can we replace a dataset into view?

Answer Posted / sriraghubabu

yes, we can replace dataset into view in Proc sql.
example:

proc sql;
create view newemp as
select *
from Employee
group by name;
select * from newemp;
quit;

now the data set is replaced into view..

Is This Answer Correct ?    0 Yes 2 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What do you understand by the term Normal Distribution?

570


What are the parameters of scan function?

618


How to import multiple xls files into sas. Out of those files, how to get different values from a single variable and how to find number of rows per value type? We can do this using group by for one xls file with proc sql. Was wondering how I can achieve this for multiple files at the same time. Any ideas?

2381


Can you suggest us materials for sdtm mapping?

4035


How many data types are there in SAS?

630






What are the best sas programming practices for handling very large datasets? : sas-grid-administration

562


To what type of programms have you used scratch macros?

2133


Explain the special input delimiters used in sas programming.

581


How would you identify a macro variable?

646


How do you specify the number of iterations and specific condition within a single do loop?

615


: and & modifiers.

858


Describe the ways in which you can create a macro variable?

622


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

610


why is sas considered self-documenting? : Sas programming

675


What is the function of Stop statement in a SAS Program?

642