ContributionsMost RecentMost LikesSolutionsRe: Getting Script error when trying to access pipeline Hi Brian, thanks for sharing your case and how it’s resolved. If it happens again, best let Support have a look and see what the cause is as for the ones I saw, hitting esc was all that needed. Re: SSH and Password Hi all, Turns out this feature is already released in the product. Please have a look at https://docs-snaplogic.atlassian.net/wiki/spaces/SD/pages/1887109219/Two-Factor+Auth+Account Re: Calling a Redshift Stored procedure in Snaplogic Hi Anubhav, I had tested calling a simple stored proc using Oracle Execute snap, it worked. So I’d think you could try Redshift Execute as well. It may fail when there is a result set returned. Also please check out the sample pipelines for Redshift Multi Execute snap which allows you to execute multiple Redshift SQL statements sequentially inside of a single BEGIN and END transaction for each input document. If none of the above meets your needs, I think you could try having the ELT snaps build the same code for you. When you run the ELT pipeline, you will see it generates the code and sends that code to the db. I’d suggest asking your CSM to enable the snap in your dev org and try it out. What do you think? Re: How to make a generic pipeline Oracle => SQL Server Good idea! Replace the Timestamp in the ddl returned to DateTime on a mapper. Re: Calling a Redshift Stored procedure in Snaplogic Hi Anubhav, Have you tried our ELT snappack? Here is a demo. Re: How to make a generic pipeline Oracle => SQL Server Awesome. For the Timestamp issue, I found the answer in SQLServer Insert snap doc. It called out: TIMESTAMP datatype in SQL Server is not supported. According to the Microsoft official document, "The timestamp syntax is deprecated. Re: How to make a generic pipeline Oracle => SQL Server You are welcome, Christophe. On the Select snap>Views>add a 2nd output view and connect it with the 2nd input view of the Insert snap. That will create the target table using source datatypes. I haven’t tested SqlServer but it should work. The Execute snap does not expose source ddl as an output. In that case, you could try a Structure or Mapper snap prior to the insert (mapping just one column passing the rest) but you may need to check the data types you got in the target. That’s my 2 cents and I hope more people will share their experiences. Re: How to make a generic pipeline Oracle => SQL Server Hi Christophe, have you tried the Create table if not present option on the Insert snap? The patterns catalog has an example of going from SqlServer to Snowflake Re: Create table with datatypes from source but ONLY selected columns Hi Chris, have you tried using the Output Fields option on the select snap? Here is the sample pipeline in the doc. Re: File Writer - Append to Excel Hi Scott and @Supratim I’d think our Diff snap would also work. Here is the sample pipeline. What do you think?