This website uses Cookies. Click Accept to agree to our website's cookie use as described in our Privacy Policy. Click Preferences to customize your cookie settings.
I have a parent child pipeline hierarchy that is 4-5 level deep. In other words, parent pipeline (p1) calls a child pipeline (c1). c1 in turn invokes its child pipeline (c2). c2 then invoked its child pipeline c3 etc…etc…
p1 → c1 → c2 → c3 → c4
I wou...
We are a SaaS product company. We use SnapLogic as the iPaaS integration platform in our product. We have built pipelines to onboard data from our customer’s source systems (erp, google drive, sftp etc.) and bring it into products data lake.
Currentl...
I need a way to edit an account programatically using API. In our case, the end-user uses our application to enter the credentials for a data source (e.g. google drive, SFTP etc). I would then like to edit the corresponding account in Snaplogic with ...
I am trying to use a Postgres Bulk Load snap. But my table has a serial column (viz. id). I tried a couple of things but the postgres bulk load snap fails due to various errors as my input data does not have id column. I was expecting that the snap w...
I need to load tables in postgres db. I receive the data as csv files (one each for each table). Some of the tables are master data tables and the other are transaction data tables. The transaction data tables have foreign key relationship with the m...
Hi @dmiller , I went through the video but could not find any useful information w.r.t. how to provide an ‘embedded’ user experience when using SnapLogic as part of our SaaS product.
Thanks Pero for your helpful suggestions.
It should not be required to add the serial column data in the input document.
I was able to fix this problem by doing the following…
specified the list of columns (excluding the serial id column) in the Colu...
Thanks for the response, Pero.
However, this solution would cause duplicate entries getting inserted into the id column (serial column) in the table for multiple runs of the pipeline. Postgres /Copy command allows you to do this by not including such...