how can u create zero observation dataset?
Answers were Sorted based on User's Feedback
Answer / chandra sekar
Use the following step
data test;
delete;
run;
Is This Answer Correct ? | 15 Yes | 3 No |
creating a data set by using the like clause.
ex: proc sql;
create table latha.emp like oracle.emp;
quit;
in this the like clause triggers the existing table
structure to be copied to the new table.using this method
result in the creation of an empty table.
Is This Answer Correct ? | 10 Yes | 2 No |
Answer / nagendra
data class;
set sashelp.class;
if _n_ >= Then delete;
run;
Is This Answer Correct ? | 0 Yes | 0 No |
Answer / vishnu
for example
data vishnu;
length name $ age ;
run;
proc print data=vishnu;
run;
Is This Answer Correct ? | 7 Yes | 11 No |
what is the difference between informat$8. $char8.
what kind of variables are collected in AE dataset?
3 Answers Accenture, Quintiles, SAS,
what other sas products have you used and consider yourself proficient in using? : Sas programming
How do you control the number of observations and/or variables read or written? Approximately what date is represented by the SAS date value of 730?
what is the use of proc sql? : Sas programming
I am preparing SAS Certified Advanced Programmer for SAS 9 in 2014. If anybody has the latest dumps for this exam, please mail me at dhiman.mukherjee@gmail.com
Can you suggest us materials for sdtm mapping?
what is proc Index? and what is proc document?
How would you code the criteria to restrict the output to be produced?
If you were told to create many records from one record, show how you would do this using array and with proc transpose?
Code a PROC SORT on a data set containing State, District and County as the primary variables, along with several numeric variables.
Difference between informat and format?