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 |
code the tables statement for a single level frequency?
How do you download a flat file from Mainframe to your local PC using SAS?
what are input dataset and output dataset options?
What is the significance of the ‘OF’ in X=SUM (OF a1-a4, a6, a9);?
what is slowly changing dimension? : Sas-di
what is data integration? : Sas-di
What do you know about sas and what we do? : sas-grid-administration
What are common programming errors committed in sas
If you have a dataset that contains 100 variables, but you need only five of those, what is the code to force SAS to use only those variables?
how does sas handle missing values in functions? : Sas programming
what is sas olap server? : Sas-di
What is a macro routine?