Skip to main content
Announcements
Accelerate Your Success: Fuel your data and AI journey with the right services, delivered by our experts. Learn More
cancel
Showing results for 
Search instead for 
Did you mean: 
yoxler
Contributor III
Contributor III

Replicate database table along with table definition

We want to replace an old load logic in our data warehouse.

 

Current logic loads all data into staging in the data warehous along with new table definition. So if a column increases or a data type changes that is automatically fixed in the staging area. 

 

The load come from an Oracle and the destination is a MSSQL Server. 

 

is it possible to pick upp the table definition from Oracle and create a table in MSSQL? Once that is done the load can start.

 

Thanks

Andreas

Labels (2)
2 Replies
akumar2301
Specialist II
Specialist II

For dynamic load transfer you could use dynamic schema

 

e.g. 

http://jilanisyed786.blogspot.com/2017/10/dynamic-schema-load-in-talend.html

 

In Oracle you have table called user_tab_cols which has basic table definition. You could use to read these and create table statement for your sql server 

 

 

yoxler
Contributor III
Contributor III
Author

Thanks!

 

Will try it out next week and see if I can make it work.

 

Regards

Andreas