how can u create zero observation dataset?
Answer Posted / srilatha
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 |
Post New Answer View All Answers
what are the best practices to process the large data sets in sas programming? : Sas-administrator
What are the default statistics that proc means produce?
Describe what are the different levels of administrative users in sas? : sas-grid-administration
What are the implications?
Mention what are the data types does SAS contain?
what are the new features included in the new version of sas i.e., Sas 9.1.3? : Sas programming
why is sas considered self-documenting? : Sas programming
how does sas handle missing values in procs? : Sas programming
How do you use the do loop if you don’t know how many times you should execute the do loop?
Explain what is data step?
How to test the debugging in sas?
I have 3 years of work experience at a startup and recently got certified in Data Science with SAS. I need to know how to get into the analytics industry
How do you delete duplicate observations in sas?
What would be the result of the following SAS function (given that 31 Dec, 2000 is Sunday)?
how would you create a data set with 1 observation and 30 variables from a data set with 30 observations and 1 variable? : Sas programming