1.

How Can You Create Zero Observation Dataset?

Answer»

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.
In the editor window we WRITE%include 'path of the sas file';run;if it is with non-windowing environment no need to give run STATEMENT.

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.
In the editor window we write%include 'path of the sas file';run;if it is with non-windowing environment no need to give run statement.



Discussion

No Comment Found