 
  Data Structure Data Structure
 Networking Networking
 RDBMS RDBMS
 Operating System Operating System
 Java Java
 MS Excel MS Excel
 iOS iOS
 HTML HTML
 CSS CSS
 Android Android
 Python Python
 C Programming C Programming
 C++ C++
 C# C#
 MongoDB MongoDB
 MySQL MySQL
 Javascript Javascript
 PHP PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Difference between ETL and ELT in SQL Server
ETL stands for Extract, Transform and Load. ETL tool is used to extract data from the source RDBMS database and transform extracted data such as applying business logic and calculation,etc. and then load data into the target data warehouse. In ETL tool, transformation of the data performed at the ETL server. It is used for low amount data.
ELT stands for Extract, Load and Transform. ELT tool is also used to extract data from source database and then load data into target database without transformation. In ELT, transformation of data is performed at the target database. In general, in an ELT implementation, all records from the sources are loaded into the data warehouse as part of the extract and loading process. This, linked with the isolation of the transformation phase, means that future requirements can easily be incorporated into the data warehouse architecture.It is used for high amount of data.
| Sr. No. | Key | ETL | ELT | 
|---|---|---|---|
| 1 | Basic | Data is moved to ETL server for transformation and then moved back to source database | Data transformation happened at the target database | 
| 3 | Data redundancy | ETL model used for on-premises, relational and structured data. | Used in scalable cloud infrastructure which supports structured, unstructured data sources. | 
| 4 | Response time | Response time is dependent on the size of the data. | Response time doesn’t depend on the size of data. | 
| 5 | Unstructured Database | Only support relational database | It also support Unstructured database | 
