How does the internal authentication work in sas? : sas-grid-administration
No Answer is Posted For this Question
Be the First to Post Answer
what is the basic structure sas administrator? : Sas-administrator
how many data types in sas? : Sas-administrator
What do the sas log messages “numeric values have been converted to character” mean? What are the implications?
What are Dashboard reports?And significance of these in analysis?
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.
In the following DATA step, what is needed for ‘fraction’ to print to the log? data _null_; x=1/3; if x=.3333 then put ‘fraction’; run;
Briefly describe 5 ways to do a "table lookup" in sas.
what do the sas log messages "numeric values have been converted to character" mean? : Sas programming
What are the limitations for memory allocation for SAS variables
I need to find the numeric field which contains blank in between..Ex:123 456...there is blank in between the 123 456..I need to know if there is any SAS function to find a field.. Please suggest...
There is a field containing a date. It needs to be displayed in the format "ddmonyy" if it's before 1975, "dd mon ccyy" if it's after 1985, and as 'Disco Years' if it's between 1975 and 1985. How would you accomplish this in data step code? Using only PROC FORMAT
what are input dataset and output dataset options? : Sas programming