Ques:- I'am new to SAS, can anybody explain the process of extracting data from source systems,storing in ODS and how data modelling is done.
Right Answer:
To extract data from source systems in SAS, you typically use the SAS/ACCESS interface to connect to various data sources (like databases, flat files, etc.). You can write a DATA step or use PROC SQL to pull the data into SAS.
Once the data is extracted, it is stored in an Operational Data Store (ODS) using a SAS library. You can create a library pointing to a specific location where the ODS will reside.
For data modeling, you can use SAS tools like SAS Data Integration Studio or SAS Enterprise Guide to design your data model. This involves defining the structure of your data, including tables, relationships, and data types, and then creating ETL processes to transform and load the data into the ODS.
To extract data from source systems in SAS, you typically use the SAS/ACCESS interface to connect to various data sources (like databases, flat files, etc.). You can write a DATA step or use PROC SQL to pull the data into SAS.
Once the data is extracted, it is stored in an Operational Data Store (ODS) using a SAS library. You can create a library pointing to a specific location where the ODS will reside.
For data modeling, you can use SAS tools like SAS Data Integration Studio or SAS Enterprise Guide to design your data model. This involves defining the structure of your data, including tables, relationships, and data types, and then creating ETL processes to transform and load the data into the ODS.