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


Please Help Members By Posting Answers For Below Questions

How can you limit the variables written to output dataset in data step?

1067


what cause the "error: connect:" and "error in the libname statement" when there weren't any such problems?

1967


what is the difference between floor and ceil functions in sas? : Sas-administrator

973


Do we follow ADAM in analysis dataset development?How? Usually which version? Why is it necessary?

2199


what is sas business intelligence? : Sas-bi

860


What are the 3 components in sas programming?

962


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.

2052


What is a macro routine?

2383


Explain how you can debug and test your SAS program?

775


Name and describe few sas character functions that are used for data cleaning in brief.

905


Are you sensitive to code walk-throughs peer review or QC review?

2936


What is the maximum length of the macro variable? : sas-macro

876


Describe the function and untility of the most difficult SAS macro that you have written.

1899


Mention common programming errors committed in sas ?

883


what is enterprise guide? What is the use of it? : Sas programming

780