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
Describe the ways in which you can create macro variables? : sas-macro
How do you convert basic cube to transaction cube and transaction cube to basic cube?
How we can create SAS USER DEFINED CODE?
what is the difference between floor and ceil functions in sas? : Sas-administrator
Of all your work, where have you been the most successful?
How would you code a merge that will write the matches of both to one data set, the non-matches from the left-most data?
how to debug and test the sas program? : Sas-administrator
What are the differences between proc means and proc summary?
What is the basic structure of the SAS base program?
what is sas metadata repository? : Sas-bi
what is star schema? : Sas-di
what is the use of proc sql? : Sas programming
what is enterprise guide? What is the use of it? : Sas programming
what is slowly changing dimension? : Sas-di
what is null hypothesis? why do you consider that?