Do you know the features of sas?
No Answer is Posted For this Question
Be the First to Post Answer
what is broad cast agent? : Sas-bi
What are the uses of sas?
how do you debug and test your sas programs? : Sas programming
how does sas handle missing values in a merge? : Sas programming
If you have a dataset that contains 100 variables, but you need only five of those, what is the code to force SAS to use only those variables?
What statement do you code to write the record to the file?
How do you write a test plan?
explain the function of substr in sas? : Sas-administrator
How will you assign all the variables of an dataset into a macro variable separated by a space? For example if a dataset has variables A,B,C. Assign them to a macro variable X as X=A B C
How to include or exclude specific variables in a data set?
if you have 365 no of data set and each one having different variable from each other. how will you read by creating macros and create a single data set.
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;