Introduction Download Salesforce Attachment in SSIS can be difficult the first time. In this new article, we will show how to download an Attachment from the Salesforce Source into a file using SSIS. Working with images is always tricky the first time. However, with the right article, this process is really simple. This article will show you how […]
SSIS PowerPack 4.0.1 released
New Features/Improvements NEW: General – Modify installer to create license folder with correct permissions for all to prevent license related issue when running product under non-admin account NEW: JSON Source, CSV Source, XML Source – Add an option to support high precision / scale decimal numbers (more than 15 digits numbers) NEW: JSON Source, JSON Parser Transform- Add […]
SSIS PowerPack 4.0.0 released
Introduction This is a Major build with some significant features and important bug fixes. Most important addition in this release is brand new API Connector Framework. We introduced brand new components API Source and API Destination to read / write API data without learning internals about API call (i.e. Authentication, Pagination). Previously this was achieved […]
How to Read API data in SSIS and Load into SQL Table
Introduction If you have need to integrate REST API in SSIS (i.e. fetch JSON, XML, CSV via HTTP call) and wondering how to Read API data in SSIS and Load into SQL DB (i.e. SQL Server, MySQL, Oracle) then you are at the right place. In this article we will cover simple step by step […]
ODBC PowerPack 1.3.0 released
Version 1.3.0.10909 [Sep 16, 2020] This version brings brand new JDBC Bridge driver which can connect data using any JDBC Driver in ODBC Apps (e.g. Excel). Many vendors dont provide ODBC Driver because its expensive and complex to build so they simply supply you Java based JDBC Driver, however these JDBC drivers work only with […]
SSIS PowerPack 3.1.4 released
New Features/Improvements NEW: Dynamics CRM Destination – Add Support for Multiple Threads for faster performance (Added EnableParallelThreads, MaxParallelThreads Properties) NEW: General – Add new functions LOWER, UPPER, FUN_UNIX_TIMESTAMP_TO_DATE (When input is Seconds format) and FUN_UNIX_TIMESTAMP_MS_TO_DATE (When input is Milliseconds format) NEW: General – Add product Update notification (Show release notes when new available) NEW: General – Enforce License manager […]
How to call OneDrive API in SSIS (Upload, Download)
Introduction Microsoft Graph API is a unified way to access many Microsoft services API including OneDrive API. In our previous blog post we saw how to call Office 365 API Graph API. In this post, you will focus on how to access OneDrive API in SSIS and use REST API Task or connector like SSIS JSON / […]
SSIS PowerPack 3.1.3 released
New Features/Improvements NEW: HTTP Connection Manager – Allow option to set DynamicToken request as Form-Data (Multi-Part) request NEW: HTTP Connection Manager – For Dynamic Token option when Auth Scheme contains space do not suffix another space (e.g. MyAuthScheme sess-id=) NEW: JSON Source – Allow to set Custom Filter for Column Less 2D Array with First Line as Column […]
Extract audit data from SSIS Execution Log (EventHandler and Regular Expression)
Introduction In our last post (Regex Cheat Sheet) we explained use cases of SSIS Regular Expression Parser Task . Now lets look at some real world usecase. Basically in this article we are going to Extract data from audit log using SSIS. For demo purpose we will use log generated by SSIS Export CSV File Task output. When […]
How to read Salesforce Metadata in SSIS using REST API (JSON Source)
Introduction In our previous posts we saw how to read and write Salesforce Data using SSIS. In this post we will see how to read Salesforce Metadata in SSIS using JSON Source. Step-By-Step In this section you will learn how to use ZappySys JSON Source Adapter to extract data from Salesforce REST API (JSON Format). You […]