Please start any new threads on our new site at https://forums.sqlteam.com. We've got lots of great SQL Server experts to answer whatever question you can come up with.

 All Forums
 SQL Server 2000 Forums
 Import/Export (DTS) and Replication (2000)
 transoframtion/export/import/load/extract

Author  Topic 

sunsanvin
Master Smack Fu Yak Hacker

1274 Posts

Posted - 2006-09-19 : 03:02:46
hi experts,

i'm not able to understand the difference between import/export and transformation.

i worked on import and export. then what is this transformation? how to work with this?
and one more thing what about ETL tools? E- extract, T- transformation and L- Load. i know up to this.how to start with these?


please provide me guidence.i was allotted to work on DTS.i've to take care of everything.


thanks for all valuble suggesions

SwePeso
Patron Saint of Lost Yaks

30421 Posts

Posted - 2006-09-19 : 03:20:10
Extract (import or export, depends which side that does the job) is a method to be aware of information that resides outside of database.
The information can be used to update current information or add new information to the database. In some cases, the outside information can be used to delete information in the database.

In some cases, Transformation has to be done. This happens when the datatypes for the columns/fields does not match. Say you have CustomerID declared as INT in your database, but is declared VARCHAR in the outside information. Then you do a transform. Sometimes transformation is a bigger task, if the outside information is not normalized, but your database is.

Loading is the final step, when using the outside data and merging it to the database.


Peter Larsson
Helsingborg, Sweden
Go to Top of Page

eyechart
Master Smack Fu Yak Hacker

3575 Posts

Posted - 2006-09-19 : 03:24:14
transform means to change. You may need to massage the data a little during an ETL operation before you load it into the final destination.

maybe you need to alter the date format so SQL Server accepts it, or you need to concatenate two columns into one before the data load. Anyway, this kind fo thing is referred to as transforming the data. hence the 'T' in ETL.


more information is in BOL. Here is another good article that gives you some basics and other references to read for more info http://en.wikipedia.org/wiki/Extract,_transform,_load



-ec
Go to Top of Page

sunsanvin
Master Smack Fu Yak Hacker

1274 Posts

Posted - 2006-09-19 : 05:55:29
Thank you Mr. Peso and Mr eyechart for your good support
Go to Top of Page

SwePeso
Patron Saint of Lost Yaks

30421 Posts

Posted - 2006-09-19 : 05:57:14
You're welcome. Good luck!


Peter Larsson
Helsingborg, Sweden
Go to Top of Page
   

- Advertisement -