{"id":3792,"date":"2021-11-26T09:43:03","date_gmt":"2021-11-26T17:43:03","guid":{"rendered":"https:\/\/SUMMALAI.COM\/?p=3792"},"modified":"2021-11-26T09:43:05","modified_gmt":"2021-11-26T17:43:05","slug":"how-to-download-odata-source-to-sql-or-a-txt-file-in-ssis","status":"publish","type":"post","link":"https:\/\/SUMMALAI.COM\/?p=3792","title":{"rendered":"How to Download OData Source to SQL or a TXT File in SSIS"},"content":{"rendered":"\n<p><strong>Applies to:<\/strong>&nbsp;<img decoding=\"async\" src=\"https:\/\/docs.microsoft.com\/en-us\/sql\/includes\/media\/yes-icon.png?view=sql-server-ver15\" alt=\"yes\">SQL Server (all supported versions)&nbsp;<img decoding=\"async\" src=\"https:\/\/docs.microsoft.com\/en-us\/sql\/includes\/media\/yes-icon.png?view=sql-server-ver15\" alt=\"yes\">&nbsp;SSIS Integration Runtime in Azure Data Factory<\/p>\n\n\n\n<p>This tutorial walks you through the process to extract the\u00a0<strong>Employees<\/strong>\u00a0collection from the sample\u00a0<strong>Northwind<\/strong>\u00a0OData service (<a href=\"https:\/\/services.odata.org\/V3\/Northwind\/Northwind.svc\/\">https:\/\/services.odata.org\/V3\/Northwind\/Northwind.svc\/<\/a>), and then load it into a flat-file.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"1-create-an-integration-services-project\"><a href=\"https:\/\/docs.microsoft.com\/en-us\/sql\/integration-services\/data-flow\/tutorial-using-the-odata-source?view=sql-server-ver15#1-create-an-integration-services-project\"><\/a>1. Create an Integration Services project<\/h2>\n\n\n\n<ol class=\"wp-block-list\"><li>Launch&nbsp;<strong>SQL Server Data Tools<\/strong>&nbsp;or Visual Studio.<\/li><li>Click&nbsp;<strong>File<\/strong>, point to&nbsp;<strong>New<\/strong>, and click&nbsp;<strong>Project<\/strong>.<\/li><li>In the&nbsp;<strong>New Project<\/strong>&nbsp;dialog box, expand&nbsp;<strong>Installed<\/strong>, expand&nbsp;<strong>Templates<\/strong>, expand&nbsp;<strong>Business Intelligence<\/strong>, and click&nbsp;<strong>Integration Services<\/strong>.<\/li><li>Select&nbsp;<strong>Integration Services Project<\/strong>&nbsp;for the type of project.<\/li><li>Enter a&nbsp;<strong>name<\/strong>&nbsp;and select a&nbsp;<strong>location<\/strong>&nbsp;for the project, and click&nbsp;<strong>OK<\/strong>.<\/li><\/ol>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"2-add-and-configure-an-odata-source\"><a href=\"https:\/\/docs.microsoft.com\/en-us\/sql\/integration-services\/data-flow\/tutorial-using-the-odata-source?view=sql-server-ver15#2-add-and-configure-an-odata-source\"><\/a>2. Add and configure an OData Source<\/h2>\n\n\n\n<ol class=\"wp-block-list\"><li>Drag-drop a&nbsp;<strong>Data Flow Task<\/strong>&nbsp;from the&nbsp;<strong>SSIS Toolbox<\/strong>&nbsp;on to the control flow design surface of your SSIS package.<\/li><li>Click the&nbsp;<strong>Data Flow<\/strong>&nbsp;tab, or double-click on the&nbsp;<strong>Data Flow Task<\/strong>&nbsp;to open the Data Flow design surface.<\/li><li>Drag-drop&nbsp;<strong>OData Source<\/strong>&nbsp;from the&nbsp;<strong>Common<\/strong>&nbsp;group in the&nbsp;<strong>SSIS Toolbox<\/strong>.<\/li><li>Double-click the&nbsp;<strong>OData Source<\/strong>&nbsp;component to launch the&nbsp;<strong>OData Source Editor<\/strong>&nbsp;dialog box.<\/li><li>Click&nbsp;<strong>New&#8230;<\/strong>&nbsp;to add a new OData Connection Manager.<\/li><li>Enter the OData service URL for&nbsp;<strong>Service document location<\/strong>. This URL can be the URL to the service document, or to a specific feed or entity. For the purpose of this tutorial, enter the URL to the service document:&nbsp;<a href=\"https:\/\/services.odata.org\/V3\/Northwind\/Northwind.svc\/\">https:\/\/services.odata.org\/V3\/Northwind\/Northwind.svc\/<\/a>.<\/li><li>Confirm that&nbsp;<strong>Windows Authentication<\/strong>&nbsp;is selected for the&nbsp;<strong>authentication<\/strong>&nbsp;to use to access the OData Service.&nbsp;<strong>Windows Authentication<\/strong>&nbsp;is selected by default.<\/li><li>Click&nbsp;<strong>Test Connection<\/strong>&nbsp;to test the connection, and click&nbsp;<strong>OK<\/strong>&nbsp;to finish creating an instance of OData Connection Manager.<\/li><li>In the&nbsp;<strong>OData Source Editor<\/strong>&nbsp;Dialog Box, confirm that&nbsp;<strong>Collection<\/strong>&nbsp;is selected for&nbsp;<strong>Use collection on resource path<\/strong>&nbsp;option.<\/li><li>From the&nbsp;<strong>Collection<\/strong>&nbsp;drop-down list, select&nbsp;<strong>Employees<\/strong>.<\/li><li>Enter any additional OData query options or filters for&nbsp;<strong>Query Options<\/strong>. For example,&nbsp;<code>$orderby=CompanyName&amp;$top=100<\/code>. For the purpose of this tutorial, enter&nbsp;<code>$top=5<\/code>.<\/li><li>Click&nbsp;<strong>Preview<\/strong>&nbsp;to preview the data.<\/li><li>Click&nbsp;<strong>Columns<\/strong>&nbsp;in the left navigation pane to switch to the&nbsp;<strong>Columns<\/strong>&nbsp;page.<\/li><li>Select&nbsp;<strong>EmployeeID<\/strong>,&nbsp;<strong>FirstName<\/strong>, and&nbsp;<strong>LastName<\/strong>&nbsp;from&nbsp;<strong>Available External Columns<\/strong>&nbsp;by checking the check boxes.<\/li><li>Click&nbsp;<strong>OK<\/strong>&nbsp;to close the&nbsp;<strong>OData Source Editor<\/strong>&nbsp;dialog box.<\/li><\/ol>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"3-add-and-configure-a-flat-file-destination\"><a href=\"https:\/\/docs.microsoft.com\/en-us\/sql\/integration-services\/data-flow\/tutorial-using-the-odata-source?view=sql-server-ver15#3-add-and-configure-a-flat-file-destination\"><\/a>3. Add and configure a Flat File Destination<\/h2>\n\n\n\n<ol class=\"wp-block-list\"><li>Now, drag-drop a&nbsp;<strong>Flat File Destination<\/strong>&nbsp;from&nbsp;<strong>SSIS Toolbox<\/strong>&nbsp;to the Data Flow design surface below the&nbsp;<strong>OData Source<\/strong>&nbsp;component.<\/li><li>Connect&nbsp;<strong>OData Source<\/strong>&nbsp;component with the&nbsp;<strong>Flat File Destination<\/strong>&nbsp;component using blue arrow.<\/li><li>Double-click on&nbsp;<strong>Flat File Destination<\/strong>. You should see the&nbsp;<strong>Flat File Destination Editor<\/strong>&nbsp;dialog box.<\/li><li>In the&nbsp;<strong>Flat File Destination Editor<\/strong>&nbsp;dialog box, click&nbsp;<strong>New<\/strong>&nbsp;to create a new flat file connection manager.<\/li><li>In the&nbsp;<strong>Flat File Format<\/strong>&nbsp;dialog box, select&nbsp;<strong>Delimited<\/strong>. Then you see the&nbsp;<strong>Flat File Connection Manager Editor<\/strong>&nbsp;dialog box.<\/li><li>In the&nbsp;<strong>Flat File Connection Manager Editor<\/strong>&nbsp;dialog box, for the&nbsp;<strong>File name<\/strong>, enter&nbsp;<code>c:\\Employees.txt<\/code>.<\/li><li>In the left navigation pane, click&nbsp;<strong>Columns<\/strong>. You can preview the data on this page.<\/li><li>Click OK to close the&nbsp;<strong>Flat File Connection Manager<\/strong>&nbsp;Editor dialog box.<\/li><li>In the&nbsp;<strong>Flat File Destination Editor<\/strong>&nbsp;dialog box, click&nbsp;<strong>Mappings<\/strong>&nbsp;in the left navigation pane. Review the mappings.<\/li><li>Click OK to close the&nbsp;<strong>Flat File Destination Editor<\/strong>&nbsp;dialog box.<\/li><\/ol>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"4-run-the-package\"><a href=\"https:\/\/docs.microsoft.com\/en-us\/sql\/integration-services\/data-flow\/tutorial-using-the-odata-source?view=sql-server-ver15#4-run-the-package\"><\/a>4. Run the package<\/h2>\n\n\n\n<p>Run the SSIS package. Verify that the output file is created with ID, First Name, and Last Name for five employees from the OData feed.<\/p>\n\n\n\n<p>Ref: https:\/\/docs.microsoft.com\/en-us\/sql\/integration-services\/data-flow\/tutorial-using-the-odata-source?view=sql-server-ver15<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Applies to:&nbsp;SQL Server (all supported versions)&nbsp;&nbsp;SSIS Integration Runtime in Azure Data Factory This tutorial walks you through the process to extract the\u00a0Employees\u00a0collection from the sample\u00a0Northwind\u00a0OData service (https:\/\/services.odata.org\/V3\/Northwind\/Northwind.svc\/), and then load it into a flat-file. 1. Create an Integration Services project Launch&nbsp;SQL Server Data Tools&nbsp;or Visual Studio. Click&nbsp;File, point to&nbsp;New, and click&nbsp;Project. In the&nbsp;New Project&nbsp;dialog box, <a class=\"read-more\" href=\"https:\/\/SUMMALAI.COM\/?p=3792\">Read More<\/a><\/p>\n","protected":false},"author":2,"featured_media":0,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_bbp_topic_count":0,"_bbp_reply_count":0,"_bbp_total_topic_count":0,"_bbp_total_reply_count":0,"_bbp_voice_count":0,"_bbp_anonymous_reply_count":0,"_bbp_topic_count_hidden":0,"_bbp_reply_count_hidden":0,"_bbp_forum_subforum_count":0,"om_disable_all_campaigns":false,"_monsterinsights_skip_tracking":false,"_monsterinsights_sitenote_active":false,"_monsterinsights_sitenote_note":"","_monsterinsights_sitenote_category":0,"footnotes":""},"categories":[10,625],"tags":[957,958],"class_list":["post-3792","post","type-post","status-publish","format-standard","hentry","category-microsoft","category-sql","tag-odata-source-to-sql","tag-odata-source-to-txt-file"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 4.9.10 - aioseo.com -->\n\t<meta name=\"description\" content=\"Applies to: SQL Server (all supported versions) SSIS Integration Runtime in Azure Data Factory This tutorial walks you through the process to extract the Employees collection from the sample Northwind OData service (https:\/\/services.odata.org\/V3\/Northwind\/Northwind.svc\/), and then load it into a flat-file. 1. Create an Integration Services project Launch SQL Server Data Tools or Visual Studio.Click File, point to New, and click Project.In the New Project dialog box, expand Installed, expand Templates,\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<meta name=\"author\" content=\"Summa Lai\"\/>\n\t<meta name=\"keywords\" content=\"odata source to sql,odata source to txt file,microsoft family,sql\" \/>\n\t<link rel=\"canonical\" href=\"https:\/\/SUMMALAI.COM\/?p=3792\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 4.9.10\" \/>\n\t\t<script type=\"application\/ld+json\" class=\"aioseo-schema\">\n\t\t\t{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?p=3792#article\",\"name\":\"How to Download OData Source to SQL or a TXT File in SSIS | Summa Lai\",\"headline\":\"How to Download OData Source to SQL or a TXT File in SSIS\",\"author\":{\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?author=2#author\"},\"publisher\":{\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/#person\"},\"image\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/docs.microsoft.com\\\/en-us\\\/sql\\\/includes\\\/media\\\/yes-icon.png?view=sql-server-ver15\",\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?p=3792\\\/#articleImage\"},\"datePublished\":\"2021-11-26T09:43:03-08:00\",\"dateModified\":\"2021-11-26T09:43:05-08:00\",\"inLanguage\":\"en-US\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?p=3792#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?p=3792#webpage\"},\"articleSection\":\"Microsoft Family, SQL, OData Source to SQL, OData Source to TXT File\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?p=3792#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/SUMMALAI.COM#listItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/SUMMALAI.COM\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?cat=10#listItem\",\"name\":\"Microsoft Family\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?cat=10#listItem\",\"position\":2,\"name\":\"Microsoft Family\",\"item\":\"https:\\\/\\\/SUMMALAI.COM\\\/?cat=10\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?cat=625#listItem\",\"name\":\"SQL\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/SUMMALAI.COM#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?cat=625#listItem\",\"position\":3,\"name\":\"SQL\",\"item\":\"https:\\\/\\\/SUMMALAI.COM\\\/?cat=625\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?p=3792#listItem\",\"name\":\"How to Download OData Source to SQL or a TXT File in SSIS\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?cat=10#listItem\",\"name\":\"Microsoft Family\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?p=3792#listItem\",\"position\":4,\"name\":\"How to Download OData Source to SQL or a TXT File in SSIS\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?cat=625#listItem\",\"name\":\"SQL\"}}]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/#person\",\"name\":\"sladmin\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?p=3792#personImage\",\"url\":\"https:\\\/\\\/SUMMALAI.COM\\\/wp-content\\\/uploads\\\/2020\\\/05\\\/Summa_Logo-150x150.png\",\"width\":96,\"height\":96,\"caption\":\"sladmin\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?author=2#author\",\"url\":\"https:\\\/\\\/SUMMALAI.COM\\\/?author=2\",\"name\":\"Summa Lai\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?p=3792#authorImage\",\"url\":\"https:\\\/\\\/SUMMALAI.COM\\\/wp-content\\\/uploads\\\/2020\\\/05\\\/Summa_Logo-150x150.png\",\"width\":96,\"height\":96,\"caption\":\"Summa Lai\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?p=3792#webpage\",\"url\":\"https:\\\/\\\/SUMMALAI.COM\\\/?p=3792\",\"name\":\"How to Download OData Source to SQL or a TXT File in SSIS | Summa Lai\",\"description\":\"Applies to: SQL Server (all supported versions) SSIS Integration Runtime in Azure Data Factory This tutorial walks you through the process to extract the Employees collection from the sample Northwind OData service (https:\\\/\\\/services.odata.org\\\/V3\\\/Northwind\\\/Northwind.svc\\\/), and then load it into a flat-file. 1. Create an Integration Services project Launch SQL Server Data Tools or Visual Studio.Click File, point to New, and click Project.In the New Project dialog box, expand Installed, expand Templates,\",\"inLanguage\":\"en-US\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?p=3792#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?author=2#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?author=2#author\"},\"datePublished\":\"2021-11-26T09:43:03-08:00\",\"dateModified\":\"2021-11-26T09:43:05-08:00\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/#website\",\"url\":\"https:\\\/\\\/SUMMALAI.COM\\\/\",\"name\":\"Summa Lai\",\"description\":\"Never Stop Learning, Building a Little Wiki...\",\"inLanguage\":\"en-US\",\"publisher\":{\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/#person\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO -->\n\n","aioseo_head_json":{"title":"How to Download OData Source to SQL or a TXT File in SSIS | Summa Lai","description":"Applies to: SQL Server (all supported versions) SSIS Integration Runtime in Azure Data Factory This tutorial walks you through the process to extract the Employees collection from the sample Northwind OData service (https:\/\/services.odata.org\/V3\/Northwind\/Northwind.svc\/), and then load it into a flat-file. 1. Create an Integration Services project Launch SQL Server Data Tools or Visual Studio.Click File, point to New, and click Project.In the New Project dialog box, expand Installed, expand Templates,","canonical_url":"https:\/\/SUMMALAI.COM\/?p=3792","robots":"max-image-preview:large","keywords":"odata source to sql,odata source to txt file,microsoft family,sql","webmasterTools":{"miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/SUMMALAI.COM\/?p=3792#article","name":"How to Download OData Source to SQL or a TXT File in SSIS | Summa Lai","headline":"How to Download OData Source to SQL or a TXT File in SSIS","author":{"@id":"https:\/\/SUMMALAI.COM\/?author=2#author"},"publisher":{"@id":"https:\/\/SUMMALAI.COM\/#person"},"image":{"@type":"ImageObject","url":"https:\/\/docs.microsoft.com\/en-us\/sql\/includes\/media\/yes-icon.png?view=sql-server-ver15","@id":"https:\/\/SUMMALAI.COM\/?p=3792\/#articleImage"},"datePublished":"2021-11-26T09:43:03-08:00","dateModified":"2021-11-26T09:43:05-08:00","inLanguage":"en-US","mainEntityOfPage":{"@id":"https:\/\/SUMMALAI.COM\/?p=3792#webpage"},"isPartOf":{"@id":"https:\/\/SUMMALAI.COM\/?p=3792#webpage"},"articleSection":"Microsoft Family, SQL, OData Source to SQL, OData Source to TXT File"},{"@type":"BreadcrumbList","@id":"https:\/\/SUMMALAI.COM\/?p=3792#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/SUMMALAI.COM#listItem","position":1,"name":"Home","item":"https:\/\/SUMMALAI.COM","nextItem":{"@type":"ListItem","@id":"https:\/\/SUMMALAI.COM\/?cat=10#listItem","name":"Microsoft Family"}},{"@type":"ListItem","@id":"https:\/\/SUMMALAI.COM\/?cat=10#listItem","position":2,"name":"Microsoft Family","item":"https:\/\/SUMMALAI.COM\/?cat=10","nextItem":{"@type":"ListItem","@id":"https:\/\/SUMMALAI.COM\/?cat=625#listItem","name":"SQL"},"previousItem":{"@type":"ListItem","@id":"https:\/\/SUMMALAI.COM#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/SUMMALAI.COM\/?cat=625#listItem","position":3,"name":"SQL","item":"https:\/\/SUMMALAI.COM\/?cat=625","nextItem":{"@type":"ListItem","@id":"https:\/\/SUMMALAI.COM\/?p=3792#listItem","name":"How to Download OData Source to SQL or a TXT File in SSIS"},"previousItem":{"@type":"ListItem","@id":"https:\/\/SUMMALAI.COM\/?cat=10#listItem","name":"Microsoft Family"}},{"@type":"ListItem","@id":"https:\/\/SUMMALAI.COM\/?p=3792#listItem","position":4,"name":"How to Download OData Source to SQL or a TXT File in SSIS","previousItem":{"@type":"ListItem","@id":"https:\/\/SUMMALAI.COM\/?cat=625#listItem","name":"SQL"}}]},{"@type":"Person","@id":"https:\/\/SUMMALAI.COM\/#person","name":"sladmin","image":{"@type":"ImageObject","@id":"https:\/\/SUMMALAI.COM\/?p=3792#personImage","url":"https:\/\/SUMMALAI.COM\/wp-content\/uploads\/2020\/05\/Summa_Logo-150x150.png","width":96,"height":96,"caption":"sladmin"}},{"@type":"Person","@id":"https:\/\/SUMMALAI.COM\/?author=2#author","url":"https:\/\/SUMMALAI.COM\/?author=2","name":"Summa Lai","image":{"@type":"ImageObject","@id":"https:\/\/SUMMALAI.COM\/?p=3792#authorImage","url":"https:\/\/SUMMALAI.COM\/wp-content\/uploads\/2020\/05\/Summa_Logo-150x150.png","width":96,"height":96,"caption":"Summa Lai"}},{"@type":"WebPage","@id":"https:\/\/SUMMALAI.COM\/?p=3792#webpage","url":"https:\/\/SUMMALAI.COM\/?p=3792","name":"How to Download OData Source to SQL or a TXT File in SSIS | Summa Lai","description":"Applies to: SQL Server (all supported versions) SSIS Integration Runtime in Azure Data Factory This tutorial walks you through the process to extract the Employees collection from the sample Northwind OData service (https:\/\/services.odata.org\/V3\/Northwind\/Northwind.svc\/), and then load it into a flat-file. 1. Create an Integration Services project Launch SQL Server Data Tools or Visual Studio.Click File, point to New, and click Project.In the New Project dialog box, expand Installed, expand Templates,","inLanguage":"en-US","isPartOf":{"@id":"https:\/\/SUMMALAI.COM\/#website"},"breadcrumb":{"@id":"https:\/\/SUMMALAI.COM\/?p=3792#breadcrumblist"},"author":{"@id":"https:\/\/SUMMALAI.COM\/?author=2#author"},"creator":{"@id":"https:\/\/SUMMALAI.COM\/?author=2#author"},"datePublished":"2021-11-26T09:43:03-08:00","dateModified":"2021-11-26T09:43:05-08:00"},{"@type":"WebSite","@id":"https:\/\/SUMMALAI.COM\/#website","url":"https:\/\/SUMMALAI.COM\/","name":"Summa Lai","description":"Never Stop Learning, Building a Little Wiki...","inLanguage":"en-US","publisher":{"@id":"https:\/\/SUMMALAI.COM\/#person"}}]}},"aioseo_meta_data":{"post_id":"3792","title":null,"description":null,"keywords":[],"keyphrases":{"focus":[],"additional":[]},"primary_term":null,"canonical_url":null,"og_title":null,"og_description":null,"og_object_type":"default","og_image_type":"default","og_image_url":null,"og_image_width":null,"og_image_height":null,"og_image_custom_url":null,"og_image_custom_fields":null,"og_video":"","og_custom_url":null,"og_article_section":null,"og_article_tags":[],"twitter_use_og":false,"twitter_card":"default","twitter_image_type":"default","twitter_image_url":null,"twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_title":null,"twitter_description":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":{"id":"#aioseo-article-65a0cd17e9f66","slug":"article","graphName":"Article","label":"Article","properties":{"type":"BlogPosting","name":"#post_title","headline":"#post_title","description":"#post_excerpt","image":"","keywords":"","author":{"name":"#author_name","url":"#author_url"},"dates":{"include":true,"datePublished":"","dateModified":""}}},"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":[]},"graphName":"Article","isEnabled":true},"graphs":[]},"schema_type":"default","schema_type_options":"{\"article\":{\"articleType\":\"BlogPosting\"},\"course\":{\"name\":\"\",\"description\":\"\",\"provider\":\"\"},\"faq\":{\"pages\":[]},\"product\":{\"reviews\":[]},\"recipe\":{\"ingredients\":[],\"instructions\":[],\"keywords\":[]},\"software\":{\"reviews\":[],\"operatingSystems\":[]},\"webPage\":{\"webPageType\":\"WebPage\"}}","pillar_content":false,"robots_default":true,"robots_noindex":false,"robots_noarchive":false,"robots_nosnippet":false,"robots_nofollow":false,"robots_noimageindex":false,"robots_noodp":false,"robots_notranslate":false,"robots_max_snippet":"-1","robots_max_videopreview":"-1","robots_max_imagepreview":"large","priority":null,"frequency":"default","local_seo":null,"breadcrumb_settings":null,"limit_modified_date":false,"ai":null,"created":"2021-11-26 17:39:03","updated":"2024-01-12 05:24:39","seo_analyzer_scan_date":null},"aioseo_breadcrumb":"<div class=\"aioseo-breadcrumbs\"><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/SUMMALAI.COM\" title=\"Home\">Home<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/SUMMALAI.COM\/?cat=10\" title=\"Microsoft Family\">Microsoft Family<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/SUMMALAI.COM\/?cat=625\" title=\"SQL\">SQL<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\tHow to Download OData Source to SQL or a TXT File in SSIS\n\t\t<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"Home","link":"https:\/\/SUMMALAI.COM"},{"label":"Microsoft Family","link":"https:\/\/SUMMALAI.COM\/?cat=10"},{"label":"SQL","link":"https:\/\/SUMMALAI.COM\/?cat=625"},{"label":"How to Download OData Source to SQL or a TXT File in SSIS","link":"https:\/\/SUMMALAI.COM\/?p=3792"}],"_links":{"self":[{"href":"https:\/\/SUMMALAI.COM\/index.php?rest_route=\/wp\/v2\/posts\/3792","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/SUMMALAI.COM\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/SUMMALAI.COM\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/SUMMALAI.COM\/index.php?rest_route=\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/SUMMALAI.COM\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=3792"}],"version-history":[{"count":1,"href":"https:\/\/SUMMALAI.COM\/index.php?rest_route=\/wp\/v2\/posts\/3792\/revisions"}],"predecessor-version":[{"id":3793,"href":"https:\/\/SUMMALAI.COM\/index.php?rest_route=\/wp\/v2\/posts\/3792\/revisions\/3793"}],"wp:attachment":[{"href":"https:\/\/SUMMALAI.COM\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=3792"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/SUMMALAI.COM\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=3792"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/SUMMALAI.COM\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=3792"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}