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 does the run statement do? : Sas programming
Explain substr function?
What are the special input delimiters used in SAS?
Explain what is SAS informats?
What is the function of output statement in a SAS Program?
What is a macro routine?
Mention the category in which sas informats are placed?
I have a dataset concat having a variable a b & c. How to rename a b to e & f?
Explain the purpose of retain statement.
Is the physical structure of the data set in the same orientation as the report? Do you need to reshape the data sets? What method should you use to reshape the data–DATA steps,PROC TRANSPOSE,output data set from a procedure?
for what purpose would you use the retain statement? : Sas programming
How would you invoke a macro? : sas-macro
What would be the result of the following SAS function (given that 31 Dec, 2000 is Sunday)?
What is the SAS data set?
Give some examples where proc report’s defaults are same as proc print’s defaults?