What are types of transport files?
Answers were Sorted based on User's Feedback
Answer / solasa
xpt files.,
pdf,html
These are some of the transport files
| Is This Answer Correct ? | 13 Yes | 2 No |
how many types of prompts are there? : Sas-bi
what is Global Symbol table and Local symbol table?
How to test the debugging in sas?
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 sas admin differentiate between roles and capabilities? : sas-grid-administration
What are the table names in oracle database...?
What is Transaction...? And what are Comment, Roll back n Save point..?
What are the statements that are executed only?
what is the SAS/ACCESS and SAS/CONNECT?
9 Answers Accenture, iFlex, TCS,
If a variable contains letters or special characters, can it be numeric data type?
Explain input and put function?
Can you use a macro within another macro? If so how would SAS know where the current acro ended and the new one began?