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 |
Name types of category in which SAS Informats are placed?
how can u convert this 25-jul-2010 from numeric to charcter?
What are the statements that are executed only?
What is the order of evaluation of the comparison operators: + - * /** ()?
what are input dataset and output dataset options? : Sas programming
What would you change about your job?
what does .. meant in sas macros
how can you sort the dataset having millions of OBS(instead of sort procedure?
what are several options for creating reports in web report studio? : Sas-bi
what is portability of sas programmes?
What are the different versions of sas that you have used until now? : sas-grid-administration
What is the basic structure of the SAS base program?