is data integration and etl programming is same? : Sas-di
Answer / Vikash Tiwari
Data Integration and ETL (Extract, Transform, Load) are closely related concepts. ETL is a specific methodology used in Data Integration to move and prepare data for analysis. While not all Data Integration processes use ETL, many do, as it provides a structured approach to handling various data sources, transforming the data into a consistent format, and loading it into a target system.
| Is This Answer Correct ? | 0 Yes | 0 No |
Code a PROC SORT on a data set containing State, District and County as the primary variables, along with several numeric variables?
Name types of category in which SAS Informats are placed?
what is the use of proc sql? : Sas programming
what does .. meant in sas macros
What are the default statistics for means procedure?
Describe crosslist option in tables statement?
what the use of proc glm
create macros---you have 365 number of data and you need to merge it throw the macros,,,,,, data file1; input a @@; cards; 1 2 3 4 ; run; data file2; input a @@; cards; 5 6 7 8 ; run; data file3; input a @@; cards; 9 10 11 12 ; run;data file4; input a @@; cards; 13 14 15 16 ; run;
%STPbegin;%STPEND; ERROR: No logical assign for filename _WEBOUT. WARNING: No body file. HTML output will not be created. unable to fix it.plz help
In which case u go for libname and in which case u go for proc sql pass thru facilit diff?
When looking for data contained in a character string of 150 bytes, which function is the best to locate that data: scan, index, or indexc?
Code a PROC SORT on a data set containing State, District and County as the primary variables, along with several numeric variables.