how can u extract,transform and loading?
Answer Posted / basha
DATA IS EXTRACTED FROM DATABASE(ANY RELATIONAL DATABASE)
AND TRANSFORM THE DATA IN TO SAS BY USING GLOBAL VARIABLES
IN SAS/ETL I.E DBMS CONNECTIONS,LIBRARIES(SOURCE) AND ODD
(OPRATIONAL DATA DEFINITION GROUP) AND PERFORMING REQUIRED
MATHEMATICAL OPERATIONS IN BETWEEN SOURCE TABLES TO THE
FACT TABLE TRANSFORM THE DATA AGAIN LOADING THE DATA INTO
DATABASE BY USING TARGET LIBRARIES
Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
Explain the use of proc print and proc contents?
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.
is data integration and etl programming is same? : Sas-di
how can you import .csv file in to sas? : Sas programming
why a stop statement is needed for the point= option on a set statement?
Mention common programming errors committed in sas ?
How to sort in descending order?
Can you execute macro within another macro? If so, how would sas know where the current macro ended and the new one began? : sas-macro
what is the use of sas management console? : Sas-di
what is the different between functions and procs that calculate the same simple descriptive statistics? : Sas programming
What are pdv and it functions?
Do you know the features of sas?
How do you control the number of observations and/or variables read or written?
What is the good sas programming practices for processing large data sets?
what is metadata? : Sas-bi