how can you put a "trace" in your program? : Sas programming
No Answer is Posted For this Question
Be the First to Post Answer
describe about physical data integration? : Sas-di
What happens in the following code, if u type 8 instead of *? proc sql noprint; create table abc as select 8 from lib.abc; quit;
Compare sas with other data analytics tools.
1.How to draw pivot tables in Excel by using SAS and in which version we can use VB script for to draw pivot tables in Excel? Answer with example data. 2.What are the advantages of _NULL_ in Data steps? Can we use _NULL_ in Proc steps also? 3. How to call the macro variable into Data Steps? 4. Can we draw pivot tables in Excel using Proc SQL? Please post answers for the above questions with suitable examples, and how to use VB script for Excel using SAS.
how can you sort the dataset having millions of OBS(instead of sort procedure?
What are types of transport files?
2 Answers PRA Health Sciences, Quintiles,
What was the last computer book you purchased? Why?
what is Enterprise Guide?what is the use of it?
What is the difference Using & and && in the macro variables
Are you familiar with special input delimiters How are they used?
What Proc glm does?
you have a data set like this. data qqq; input name $ total; cards; qq 22 ww 33 qq 22 ee 44 rr 33 ww 44 ; run; and you want output like this......... name total qq 22 ww 44 Do it by data set step.