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 run-group processing?
Where do the database management systems store data and how do u import them.
what is the use of catalog?
how to generate the test data in sas without input data? : Sas-administrator
What is univariate n where it can be used n how...?
How will you react when, while consulting a SAS documentation manual to get an answer to a problem, someone says hey, I thought you were supposed to know all that stuff already, and not have to look it up in a book?
How would you code a merge that will keep only the observations that have matches from both sets.
5 Answers Accenture, Bank Of America,
how does sas handle missing values in functions? : Sas programming
what is in stream data in SAS?
what is the limit of the number of the rows and columns available in the worksheet? : Sas-bi
What is criteria for adverse events and treatment-emergent adverse events?
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.