ContributionsMost RecentMost LikesSolutionsConnect SnapLogic to Oracle Cloud ATP database We are moving our ERP to Oracle Cloud and I am trying to connect SnapLogic to an Oracle Cloud ATP (Autonomous Transaction Processing) database. I’ve been trying to set up an Oracle Thin Account in SnapLogic with the settings for our ATP database but keep getting error “IO Error: Remote host terminated the handshake”. Does anyone have experience with using SnapLogic with ATP and have any suggestions? Re: Salesforce SOAP Merge Hi @lzapart, Do you have an example .slp of the pipeline you can share? Re: Salesforce Allow Null Updates to Target I’ve been playing around with this. The solution seems to be that the Salesforce Upsert snap will NOT push null updates to the target. However, Salesforce Update will push null updates. So if an external ID is being used to identify a record, use a Salesforce Lookup snap to obtain the Salesforce record ID first, then use a Salesforce Update snap to update the record. Salesforce Allow Null Updates to Target I am trying to convert some Informatica upsert sync tasks to SnapLogic pipelines. One useful option in Informatica is an ‘Allow Null Updates to Target’ option. That is, when a source field becomes null, it also gets nulled in the target. How does the SnapLogic Salesforce Upsert snap handle nulls? Is there a good way to allow null updates to the target? Re: Remove users from Active Directory group? Hi @mmbabel Apologies if I am misunderstanding something, but I want to be able to remove a user from a group entirely. Would this snap allow for that? Re: Deleting users in Active Directory Hi @kmcquaid I am trying to remove members from an AD group as well. Did you ever find a solution for this? Remove users from Active Directory group? How can I remove users from an Active Directory group using SnapLogic? I have been able to add a user with the ‘Active Directory Add Member’ snap, but there doesn’t seem to be a snap to remove a user. Re: Wait to run pipeline until target file does not exist Figured it out. If anyone else is trying to accomplish the same task, here is my solution: File Poller monitors the source location (“out” folder). “Only Output on Change” is not enabled. When input is received from File Poller, Directory Browser reads the target folder filtered for test.csv. Filter snap checks to see if the Name path in the JSON object exists using this expression: !($.hasPath(“Name”)). If the path does not exist, filter the record so no further processing is done. If the Name path exists, proceed to the File Reader snap and read the file from the out folder. Write the file to the target location. Delete the file from the out folder. Wait to run pipeline until target file does not exist I need a pipeline to wait until a file (named say test.csv) on a network share is picked up and moved/deleted by another process. Then my pipeline can write a new test.csv. The other process might only take a few seconds, or could take up to an hour to process test.csv. Is there a way to have my SnapLogic pipeline watch test.csv on the network share and wait until that file is gone and then continue processing? This would be sort of the opposite of what File Poller does. SolvedRe: Azure message bus Did you find a solution for this?