how to generate report for 0 observation dataset?
Answers were Sorted based on User's Feedback
Answer / gaurav sharma
You can generate such report by using 'Like' Clause in Proc SQL.
This will create a dataset of structure similar to one you will ask for, but with zero observations.
| Is This Answer Correct ? | 4 Yes | 0 No |
Answer / suman pinnika
data _null_;
input name$ age sex$;
delete;
run;
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / sakthi
data Employ;
length Eid 4 des $15 salary 7;
delete;
run;
| Is This Answer Correct ? | 1 Yes | 0 No |
what type of reports you are generating in your company...???
2 Answers GSK GlaxoSmithKline,
how do i read multiple spaces in datasets? eg: vijaya raghava perumal.I tried with using & but it workss if its vijaya raghava but not for raghava perumal.how to do this?
Mention the category in which sas informats are placed?
Explain how you can debug and test your SAS program?
In the flow of DATA step processing, what is the first action in a typical DATA Step?
describe about physical data integration? : Sas-di
is there any difference between proc summary and proc means?
Describe a time when you were really stuck on a problem and how you solved it?
You need to create an In List that it is to be later used in a Where Clause that includes all the Regions that begin with the letter A from the sashelp.shoes table. Using PROC SQL with an into clause create the following string from the sashelp.shoes table using the variable region “AFRICA”,”ASIA”,…..
How would you code a merge that will write the matches of both to one data set, the non-matches from the left-most data set to a second data set, and the non-matches of the right-most data set to a third data set.
hi i am nipun can anybody tell me that if a clinical sas programmer write the code and after successfull execution where do they store it. how they submit tables to TL how work is assigned to programmers either both code, log, output to be submitted. can any one tell me the process
Explain the special input delimiters used in sas programming.