Where do the database management systems store data and how do
u import them.
Answer Posted / rajkumar
Most of the people are store their data in Oracle , SQL
Server.
We have to import the data by using import procedure.
Proc import datafile = <file path> out = <dataset name>
dbms = <identifier> replace;
<data-source-statement(s)>;
run;
Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
How can you limit the variables written to output dataset in data step?
what cause the "error: connect:" and "error in the libname statement" when there weren't any such problems?
what is the difference between floor and ceil functions in sas? : Sas-administrator
Do we follow ADAM in analysis dataset development?How? Usually which version? Why is it necessary?
what is sas business intelligence? : Sas-bi
What are the 3 components in sas programming?
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.
What is a macro routine?
Explain how you can debug and test your SAS program?
Name and describe few sas character functions that are used for data cleaning in brief.
Are you sensitive to code walk-throughs peer review or QC review?
What is the maximum length of the macro variable? : sas-macro
Describe the function and untility of the most difficult SAS macro that you have written.
Mention common programming errors committed in sas ?
what is enterprise guide? What is the use of it? : Sas programming