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 SAS?
What is the maximum length of the macro variable? : sas-macro
What are the uses of sas?
WHAT IS DEBUGGING? HOW TO TEST THE DEBUGGING IN SAS?
How do you add a number to a macro variable?
What are the different types of sas functions?
Mention what is SAS data set?
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
how to remove the duplicates by proc sql?
How to read the file names of a text files from a shared drive using SAS?
what is the difference between infile and input? : Sas-administrator
hi i date is 05sep2005; i want the oupput like 05sep2005:00:00:00 ; how it wil come?