06-25-2018 09:33 AM
This is a common integration patterns that customers tend to use as they are moving from on-prem to cloud.
The following videos describe this integration pattern and the attached reference implementation pipelines help you get a head start on the implementation.
Part 1
Part 2
The pipeline moves all the tables from an Oracle database to Redshift. The pipelines are designed to use our best practices like parameterization of all aspects of the pipeline (eg. account names , db names, table names). All are dynamic and controlled via pipeline parameters.
Source: Oracle Tables
Target: Redshift Tables
Snaps used:
*This is a Snap developed by the SnapLogic Professional Services team.
Pattern 1 - Step 1.0 - Oracle to Redshift Parent_2018_06_25.slp (9.4 KB)
Pattern 1 - Step 1.1 - Oracle to Redshift No Shredding_2018_06_25.slp (20.9 KB)
Pattern 1 - Step 1.2 - Oracle to Redshift Shred_2018_06_25.slp (7.7 KB)
12-12-2018 05:10 PM
Shading is not the issue.
The issue is that there are data type mismatches between MSSQL and Snowflake. Which implies we need a mapper. But mappers are not generic so the pattern breaks down.
Try the pattern with MS and Snowflake. Also use Bit fields. I suspect date field I miss you as well.
Thanks,
Sonny
“This communication (including all attachments) is intended solely for the use of the person(s) to whom it is addressed and should be treated as a confidential AAA communication. If you are not the intended recipient, any use, distribution, printing, or copying of this email is strictly prohibited. If you received this email in error, please immediately delete it from your system and notify the originator. Your cooperation is appreciated.”
12-13-2018 11:09 AM
here is a DB datatype cross reference I build which could be handy. Have you already done some experiment or are you suspecting it will be an issue?
12-13-2018 11:41 AM
Yes there is a data type issue. I’ve seen it with BIT vs Boolean and I made that work. But I also suspect that some others have a similar issue (datetime , timestamp ntz, etc).
I’m not clear on why the reference architecture works.
12-20-2018 10:34 AM
Thanks for the input. I’m not really concerned about sharding (at the moment) but it’s the bulk loader and data types that concern me. The reference architecture connects the bulk loader directly to the MSSQL Select but the data types won’t convert properly (BIT to BOOLEAN, etc)
Can you explain why it work in Oracle to Redshift. Maybe that will help me fix /understand the MSSQL to Snowflake approach.