Name statements that function at both compile and execution
time.
Answers were Sorted based on User's Feedback
Answer / radhika
DATA is the statement that function at both compile and
execution time.
| Is This Answer Correct ? | 21 Yes | 3 No |
Answer / suresh
input is the only statement that function at both compile
and execution time
| Is This Answer Correct ? | 8 Yes | 2 No |
Answer / vishh
input is the statement that function at both compile and execution time.
| Is This Answer Correct ? | 2 Yes | 0 No |
Answer / sweety kumari
Input statement functions both at compile and execution time
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / ganesh
keep and drop statements identifies at both compile and
execution time.
| Is This Answer Correct ? | 8 Yes | 15 No |
data data1; input dt account; format dt date9.; cards; 1745 1230 1756 1120 1788 1130 1767 1240 ; data data2; input startdt enddt total; format startdt date9. enddt date9.; cards; 1657 1834 12300 1557 1758 16800 1789 1789 12300 1788 1345 12383 1899 1899 13250 ; proc sql; create table data3 as select * from data1 as x left join data2 as y on x.dt>=y.startdt and x.dt<=y.enddt; quit; Here, we are getting cartision product. But,I want left join report consisting of this program. It should not get duplicate values. you can modify the program also.
How do you delete duplicate observations in sas?
how to add distinctly var variable values ex.. Data a; input var; datalines; 0 1 2 3 -1 -2 -3 ; run; adding all +ve value in one varibale n do the same for -ve too
Name validation tools used in SAS
What is the purpose of the trailing and How would you use them?
how does sas know on which server the piece of code to be executed ? say if a proc olap code is written then how the sas application would detect on which server to execute.
Which is the best place to learn SAS clinicals and Oracle clinical in hyderabad?
if a program has some 1000 or more line and how to know whether the syntax of the particular code is correct without checking it manually
which date function advances a date, time or datetime value by a given interval? : Sas programming
what is star schema? : Sas-di
Assuming {et} is randomly drawn from N(0,1) and e0 = 0, generate 200 observations of xt = et − 0.5e(t−1) and draw a line graph of xt.
I am having a stored process.it needs to route my report to both hthml and Xls.By default SP routes to html.I used the PRINTTO to route the html to Xls.BUt it createsthe file not but no content was written to file(0KB)?how can i do it?