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


Please Help Members By Posting Answers For Below Questions

Approximately what date is represented by the SAS date value of 730?

750


how would you create multiple observations from a single observation? : Sas programming

572


Give an example where SAS fails to convert character value to numeric value automatically?

608


Explain the special input delimiters used in sas programming.

588


What are common programming errors committed in sas

674






Give e an example of..

1848


what is hierarchy flattening? : Sas-di

622


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.

1803


for what purpose would you use the retain statement? : Sas programming

589


Explain why double trailing @@ is used in input statement?

577


What do the PUT and INPUT functions do?

783


how do you pull data from equifax?tell me the process?

1382


Explain the difference between using drop = data set option in set and data statement?

687


What do you understand by the term Normal Distribution?

570


What are the 3 components in sas programming?

729