where will go the observations that were deleted by delete
statement?
Answer Posted / avinsas
We just pull the data from the database (Server) and if we
delete the observations using the delete statement, it will
be automatically get deleted from the report but the data
will still remain in the database.
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
what is sas metadata server? : Sas-di
What are the data types that sas contain?
Give an example where SAS fails to convert character value to numeric value automatically?
what is sas data set?
data data1; input dt account; format dt date9.; cards; 1745 1230 1756 1120 1788 1130 1767 1240 ; data data2; input startdt enddt total; format startdt date9. enddt date9.; cards; 1657 1834 12300 1557 1758 16800 1789 1789 12300 1788 1345 12383 1899 1899 13250 ; proc sql; create table data3 as select * from data1 as x left join data2 as y on x.dt>=y.startdt and x.dt<=y.enddt; quit; Here, we are getting cartision product. But,I want left join report consisting of this program. It should not get duplicate values. you can modify the program also.
what is star schema? : Sas-di
How we can call macros with in data step? : sas-macro
What are the statements that are executed only?
how to change the execute of macro
How to sort in descending order?
State the difference between INFORMAT and FORMAT ?
Explain proc sort?
What are the default statistics for means procedure?
Explain the purpose of retain statement.
What is a method to debug and test your SAS program?