where will go the observations that were deleted by delete
statement?
Answers were Sorted based on User's Feedback
Answer / 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 |
Do you need to rearrange the order of the data for the report?
What is the difference between nodup and nodupkey options?
20 Answers iFlex, Makro, Talwar,
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?
Have you ever linked SAS code? If so, describe the link and any required statements used to either process the code or the step itself.
What is by-group processing?
Describe the types of SAS programming tasks that you performed like Tables? Listings? Graphics? Ad hoc reports? Other?
what is hierarchy flattening? : Sas-di
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.
hi i am nipun can anybody tell me that if a clinical sas programmer write the code and after successfull execution where do they store it. how they submit tables to TL how work is assigned to programmers either both code, log, output to be submitted. can any one tell me the process
What is the registered Key word is sas????
What is the order of application for output data set options, input data set options and SAS statements?
Describe a time when you were really stuck on a problem and how you solved it?