SSIS MongoDB SourceMongoDB Source can be used to extract large amount of data from MongoDB Database. This component supports SQL like query language to query MongoDB data without worrying about complex API or proprietary query language. MongoDB is an open-source document database, and the most popular NoSQL database out there. Features
|
||||
|
View All Tasks | |||
MongoDB Source Connector – Query data using SQL, Extract from an array using JSON Path
MongoDB Source Connector – Use native JSON Query format
MongoDB Source Connector – Aggregation Framework Support (Group By)
MongoDB Source Connector – Advanced Filter Options
SSIS MongoDB Source Connector – Output as JSON, Extract raw JSON from nested array
MongoDB Source Connector – Select Columns
MongoDB Connection Manager
SSL / X509 Authentication Support
SSIS MongoDB Source – Extract Data
Extract data from Multiple arrays
Featured Articles
Click here to see all articles for [SSIS MongoDB Source] category
Blog posts/Articles related to MongoDB
What is MongoDB and how can I download, Install and try for FREE?
MongoDB Homepage
Free Cloud Hosted version of MongoDB
How to call MongoDB JavaScript using SSIS
How to read MongoDB data from an array (extract nested subdocuments)
How to write MongoDB Aggregation Queries in SSIS (Group By)
How to loading SQL data into MongoDB (Insert, Upsert, Delete, Update)
How to update MongoDB Array Items using SSIS
How to configure MongoDB SSL Connection in SSISIntroduction MongoDB comes with SSL support which can secure your end to end communication. However setting up MongoDB SSL Connection may require some configuration on both sides (i.e. Server and Client side). In this post our goal is to secure your MongoDB Integration in SSIS. Now lets look at steps to configure SSL in MongoDB. Configure […] |
How to parse MongoDB Date time in SSISIntroduction In our previous post we explained how to read/load MongoDB data in SSIS. This post covers specifically how to parse MongoDB date time stored inside your MongoDB documents. By default any well known date formats (e.g. ISO date) will be parsed as valid datetime (e.g. DT_DBTIMESTAMP) when you use SSIS MongoDB Source. But if you […] |
How to extract multiple arrays from MongoDB using SSISSince MongoDB Source supports only one output you cannot select two different hierarchies as your filter criteria. However solution is easy. You can perform following steps to achieve similar result without fetching data twice with multiple sources. Same steps described below can be applied for JSON Source (read more here) Steps – Extract multiple […] |
How to write MongoDB Aggregation Queries in SSIS (Group By)Introduction In this post you will learn how to write flexible MongoDB Aggregation Queries in SSIS (i.e. Group By Query) using SSIS MongoDB Source Component. MongoDB provides powerful Aggregation Pipeline Engine which is conceptually same as writing Group By queries in traditional SQL world but its not exactly same. SSIS MongoDB Source returns nested MongoDB JSON […] |
Read MongoDB data from array (extract nested sub documents)Introduction In this post you will learn how to read MongoDB data from Array. We recently introduced new JSON Path expression feature in SSIS MongoDB Source Connector to extract nested information from MongoDB documents. Read documents from Array in MongoDB By default SSIS MongoDB Source Connector doesn’t support extracting data using JSON Path expression. So if […] |
How to query MongoDB by date or ISODateIntroduction ZappySys provides high performance drag and drop connectors for MongoDB Integration. In our previous post we discussed how to query/load MongoDB data (Insert, Update, Delete, Upsert). In this post you will see how to query MongoDB by date (or ISODate) using SSIS MongoDB Source. To see full detail about possible query syntax see online help. MongoDB […] |