explain about data integrator metadata reports? : Sas-di
No Answer is Posted For this Question
Be the First to Post Answer
WHAT IS SAS WEB SERVICE and what are the steps to create an xml service ?
6) Explain about below automatic variables a) _N_ b) _ERROR_ c) _CHAR_ d) _NUMERIC_ e) _ALL_ f) FIRST.BY VARIABLE g) LAST.BY VARIABLE h) _NAME_ i) _TYPE_ j) _FREQ_ k) _STAT_ l) _BREAK
The Lion King is hosting an animal conference. All the animals in the world attend except one. Which animal does not attend?
What are the differences between sum function and using “+” operator?
What are symbol tables?Differemce between Local N Global Symbol tables.....
What is SAS? What are the functions does it performs?
How would you remove a format that has been permanently associated with a variables?
how do you derive descriptive statistics?
1 Answers Accenture, Quintiles,
If you have a data set that contains 100 variables, but you need only five of those, what is the code to force SAS to use only those variable?
what is the use of LRECL option.
We have a string like this "kannafromsalembut" ,from this i want to get only "fromsal" (but one condition with out using substring function)here we can not use scan because in the given string there is no delimeter? so give ans without out using substring ?
data voter; input Age Party : $1. (Ques1-Ques4)($1. + 1); datalines; 23 D 1 1 2 2 45 R 5 5 4 1 67 D 2 4 3 3 39 R 4 4 4 4 19 D 2 1 2 1 75 D 3 3 2 3 57 R 4 3 4 4 ; Idont understand what the (Ques1-Ques4)($1. + 1) means. I have seen (Ques1-Ques4)(4*$1.), but what is (Ques1-Ques4)($1. + 1)? Appreciate all help Thanks