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
what can you learn from the sas log when debugging? : Sas programming
How can you create a macro variable with in data step? : sas-macro
what is proc Index? and what is proc document?
how to read the variables in sas? : Sas-administrator
what is factor analysis? : Sas-administrator
Mention the category in which sas informats are placed?
Explain proc univariate?
What do the mod and int function do? : Sas programming
What are the difference between ceil and floor functions in sas?
If you use a symput in a data step, when and where can you use the macro variable? : sas-macro
What are symget and symput? : sas-macro
What are the different operating system platforms in which we can use sas? : sas-grid-administration
What is the maximum and minimum length of macro variable
what is treatment emergent events and treatment emregent adverse event
How do dates work in SAS data?