Difference between ETL vs. ELT
Difference between ETL vs. ELT
Basics | ETL | ELT |
---|---|---|
Process | Data is transferred to the ETL server and moved back to DB. High network bandwidth required. | Data remains in the DB except for cross Database loads (e.g. source to object). |
Transformation | Transformations are performed in ETL Server. | Transformations are performed (in the source or) in the target. |
Code Usage | Typically used for
| Typically used for
|
Time-Maintenance | It needs highs maintenance as you need to select data to load and transform. | Low maintenance as data is always available. |
Calculations | Overwrites existing column or Need to append the dataset and push to the target platform. | Easily add the calculated column to the existing table. |
Analysis | ![]() | ![]() |
Comments
Post a Comment