ContributionsMost RecentMost LikesSolutionsLoading huge volume of data into Target Systems Hi, I want to load a huge amount of data from Snowflake to SQL server and I want to load it in batches, so that it will not fail because of any SnapLogic memory issue or resource issue. Also I don’t want to use script snap. Does any one has such kind of sample pipeline? @dmiller @skatpally Thanks Re: SnapLogic Certified Enterprise Automation Professional now available free of charge Hi @dmiller , How can i give another attempt if I failed II level of exam? Thanks Mohit Re: SQL Bulk load truncating data Hi @Garrett I had the similar requirement too and in this case I used the SQL Server Execute snap before all other snaps in the pipeline to create the table with desired data types. And after that I loaded the data. Re: SQL Bulk load truncating data Use nvarchar or text in SQL DDL Bug in Scheduled Task @dmiller I found one issue in scheduled task. There is “Thueday” written instead of Thursday. I am not sure if it is just an UI issue or the mapping behind the code is also pulling some wrong value. Re: String data, right truncation Error while loading data from Snowflake to SQLserver Hi @fmdf I resolved the issue by increasing the length of column in table. It is saying “Column 9”, then you just have to go and get the ddl of table and check which column is there at 9th position and then increase the length of column. In my case I was facing this issue bcoz snowflake handles both Unicode and non Unicode characters with Varchar but in sql server for Unicode you have to give nvarchar. So lets say if you have column length is varchar(100) in snowflake then you have to give nvarchar(100) or more than that. Please try this if it helps. Re: Parse Excel file with duplicate columns Hi @ igormicev Thanks for the reply but I don’t want to remove the Duplicate columns. What I want to do is below 🙂 Lets say I have two duplicate columns Address, Address. So I want to take both the columns insert the data into database but with new name like Address and Address1. And I don’t want to do this manually by giving the name individually in mapper. Can you suggest something. Thanks Mohit Yadav Parse Excel file with duplicate columns Hi All, I have same column name multiple times in excel file. I want to parse all and load them into database but excel parser throws error of duplicate columns. Please suggest. Thanks Re: Want to add NEW LINE CHARACTER in mapper Yes, I tried this but it reads this as string write down the same in the output. Want to add NEW LINE CHARACTER in mapper I am trying to add new line character between three of my contents but it is not allowing me. Can anyone tell how new line character can be used in Mapper. Below is my mapper expression. $Address+ \n +$Name+ \n+$Age I want an output like below. Address Name Age Can anyone suggest something. Thanks in advance