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
Compare sas with other data analytics tools.
Explain how merging helps to combine data sets.
what do the sas log messages "numeric values have been converted to character" mean? : Sas programming
What are the table names in oracle database...?
What are the differences between proc means and proc summary?
What function CATX syntax does?
what is the difference between infile and input? : Sas-administrator
explain about sas business intelligence? : Sas-bi
Can you execute macro within another macro? : sas-macro
What are the advantages of using sas?
how many types of prompts are there? : Sas-bi
How would you identify a macro variable?
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 was the last computer book you purchased? Why?
How do you control the number of observations and/or variables read or written? Approximately what date is represented by the SAS date value of 730?