{"id":25922,"date":"2023-05-11T07:21:00","date_gmt":"2023-05-11T05:21:00","guid":{"rendered":"https:\/\/expert-only.com\/?p=25922"},"modified":"2023-06-14T15:01:06","modified_gmt":"2023-06-14T13:01:06","slug":"automatically-sync-ssis-columns","status":"publish","type":"post","link":"https:\/\/expert-only.com\/en\/ssis\/automatically-sync-ssis-columns\/","title":{"rendered":"How to automatically sync SSIS columns in a Data Flow?"},"content":{"rendered":"\n<h4 class=\"wp-block-heading has-text-align-center\" id=\"h-learn-to-synchronise-source-and-target-columns-of-an-ssis-component-automatically-with-visual-studio\"><strong><em>Learn to synchronise source and target columns of an SSIS component automatically with Visual Studio.<\/em><\/strong><\/h4>\n\n\n\n<p>That is, how to automatically sync SSIS source and target columns, based on their name? This trick allows developing SSIS packages more efficiently. There are 2 options to link the columns in an SSIS component. The first option is manual mapping. The second option is to connect them automatically via the Visual Studio graphic interface.<\/p>\n\n\n\n<p>Indeed, column management requires a major prerequisite. Prepare all target column names with the same names as the source columns. To link a large number of columns quickly and avoid wasting time with manual operations, follow the steps below.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">1. Create the source table from SSMS<\/h2>\n\n\n\n<p>Simply run the SQL code below to create an empty table with 20 columns.<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">CREATE TABLE [dbo].[Source_Table]\n(\n    [Column_01] [nvarchar](20) NULL,\n    [Column_02] [nvarchar](20) NULL,\n    [Column_03] [nvarchar](20) NULL,\n    [Column_04] [nvarchar](20) NULL,\n    [Column_05] [nvarchar](20) NULL,\n    [Column_06] [nvarchar](20) NULL,\n    [Column_07] [nvarchar](20) NULL,\n    [Column_08] [nvarchar](20) NULL,\n    [Column_09] [nvarchar](20) NULL,\n    [Column_10] [nvarchar](20) NULL,\n    [Column_11] [nvarchar](20) NULL,\n    [Column_12] [nvarchar](20) NULL,\n    [Column_13] [nvarchar](20) NULL,\n    [Column_14] [nvarchar](20) NULL,\n    [Column_15] [nvarchar](20) NULL,\n    [Column_16] [nvarchar](20) NULL,\n    [Column_17] [nvarchar](20) NULL,\n    [Column_18] [nvarchar](20) NULL,\n    [Column_19] [nvarchar](20) NULL,\n    [Column_20] [nvarchar](20) NULL\n); \n\n<\/pre>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\">2. Create the target table with the same structure<\/h2>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">CREATE TABLE [dbo].[Target_Table]\n(\n    [Column_01] [nvarchar](20) NULL,\n    [Column_02] [nvarchar](20) NULL,\n    [Column_03] [nvarchar](20) NULL,\n    [Column_04] [nvarchar](20) NULL,\n    [Column_05] [nvarchar](20) NULL,\n    [Column_06] [nvarchar](20) NULL,\n    [Column_07] [nvarchar](20) NULL,\n    [Column_08] [nvarchar](20) NULL,\n    [Column_09] [nvarchar](20) NULL,\n    [Column_10] [nvarchar](20) NULL,\n    [Column_11] [nvarchar](20) NULL,\n    [Column_12] [nvarchar](20) NULL,\n    [Column_13] [nvarchar](20) NULL,\n    [Column_14] [nvarchar](20) NULL,\n    [Column_15] [nvarchar](20) NULL,\n    [Column_16] [nvarchar](20) NULL,\n    [Column_17] [nvarchar](20) NULL,\n    [Column_18] [nvarchar](20) NULL,\n    [Column_19] [nvarchar](20) NULL,\n    [Column_20] [nvarchar](20) NULL\n); \n<\/pre>\n\n\n\n<p><\/p>\n\n\n\n<h3 class=\"wp-block-heading\">How to manage column names to be automatically synced with SSIS?<\/h3>\n\n\n\n<p>This solution provides a significant time saving as it also limits manual errors and thus regressions. To do this, simply create a connection and an SSIS data flow. It can be an OLE DB destination on an SQL Server database, for example. The columns sync automatically upon the first connection. However, after a modification, the updated columns are no longer mapped with the destination ones. The trick is to name the target columns the same as the sources. Indeed, the link between the columns in SSIS is based on <a href=\"https:\/\/blog.panoply.io\/data-warehouse-naming-conventions\" target=\"_blank\" rel=\"noreferrer noopener\">the column names<\/a>.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">3. Open the OLE DB Destination component from SSIS<\/h2>\n\n\n\n<p>By default, the columns with the same names are synced, but in case of a name change, it is possible to automatically link the source and target columns.<\/p>\n\n\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"780\" height=\"840\" src=\"https:\/\/expert-only.com\/wp-content\/uploads\/2023\/06\/ssis-ole-db-destination-mapping-editor.jpg\" alt=\"Mapping columns in an SSIS data flow\" class=\"wp-image-25888\" srcset=\"https:\/\/expert-only.com\/wp-content\/uploads\/2023\/06\/ssis-ole-db-destination-mapping-editor.jpg 780w, https:\/\/expert-only.com\/wp-content\/uploads\/2023\/06\/ssis-ole-db-destination-mapping-editor-279x300.jpg 279w, https:\/\/expert-only.com\/wp-content\/uploads\/2023\/06\/ssis-ole-db-destination-mapping-editor-768x827.jpg 768w\" sizes=\"auto, (max-width: 780px) 100vw, 780px\" \/><figcaption class=\"wp-element-caption\"><em>Mapping columns in an SSIS data flow<\/em><\/figcaption><\/figure><\/div>\n\n\n<h2 class=\"wp-block-heading\">4. Right-click and select the option to automatically sync SSIS columns<\/h2>\n\n\n\n<p>Right-click in the mapping window of the component to be synchronised. Then click on Map items by matching names to link them automatically, as below.<\/p>\n\n\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"780\" height=\"600\" src=\"https:\/\/expert-only.com\/wp-content\/uploads\/2023\/06\/ssis-automatic-data-flow-mapping-option.jpg\" alt=\"Option for automatic column mapping in SSIS\" class=\"wp-image-25896\" srcset=\"https:\/\/expert-only.com\/wp-content\/uploads\/2023\/06\/ssis-automatic-data-flow-mapping-option.jpg 780w, https:\/\/expert-only.com\/wp-content\/uploads\/2023\/06\/ssis-automatic-data-flow-mapping-option-300x231.jpg 300w, https:\/\/expert-only.com\/wp-content\/uploads\/2023\/06\/ssis-automatic-data-flow-mapping-option-768x591.jpg 768w\" sizes=\"auto, (max-width: 780px) 100vw, 780px\" \/><figcaption class=\"wp-element-caption\"><em>Option for automatic column mapping in SSIS<\/em><\/figcaption><\/figure><\/div>\n\n\n<h2 class=\"wp-block-heading\">5. The SSIS source and target columns with the same name are mapped.<\/h2>\n\n\n\n<p>All the columns are now linked.<\/p>\n\n\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"780\" height=\"840\" src=\"https:\/\/expert-only.com\/wp-content\/uploads\/2023\/06\/ssis-data-flow-all-columns-mapped.jpg\" alt=\"Synchronise SSIS Columns Automatically from a Data Flow\" class=\"wp-image-25900\" srcset=\"https:\/\/expert-only.com\/wp-content\/uploads\/2023\/06\/ssis-data-flow-all-columns-mapped.jpg 780w, https:\/\/expert-only.com\/wp-content\/uploads\/2023\/06\/ssis-data-flow-all-columns-mapped-279x300.jpg 279w, https:\/\/expert-only.com\/wp-content\/uploads\/2023\/06\/ssis-data-flow-all-columns-mapped-768x827.jpg 768w\" sizes=\"auto, (max-width: 780px) 100vw, 780px\" \/><figcaption class=\"wp-element-caption\"><em>Synchronise SSIS Columns Automatically from a Data Flow<\/em><\/figcaption><\/figure><\/div>\n\n\n<p>This option connects the source and destination columns in a second. Even after a possible modification of the characteristics of the source fields feeding the component. Indeed, naming the source and target columns exactly the same way allows for automatic mapping. The default mapping of columns in SSIS is based on their name.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Conclusion on automatic syncing of SSIS columns<\/h3>\n\n\n\n<p>Automatic sync of columns with SSIS offers a very useful feature for data mapping from one source to another. When you use this feature, all source columns bearing the same name as the target are automatically mapped. This means that SSIS identifies and connects these columns in correspondence with their name.<\/p>\n\n\n\n<p>This characteristic greatly reduces the time needed to manually set up each mapping, especially when you are working with large data sets with a large number of columns. Therefore, automatic mapping is a key function for improving efficiency and accuracy when handling data with SSIS.<\/p>\n\n\n\n<p>Finally, to continue learning about data management with MS BI, <a href=\"https:\/\/expert-only.com\/en\/ssis\/export-sql-server-data-to-excel\/\">here&#8217;s how to export a table to an Excel file using a package.<\/a><\/p>\n\n\n\n<figure class=\"wp-block-embed aligncenter is-type-wp-embed is-provider-sql-and-it-tutorials wp-block-embed-sql-and-it-tutorials\"><div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"wp-embedded-content\" data-secret=\"bri0NvvfQU\"><a href=\"https:\/\/expert-only.com\/en\/ssis\/export-sql-server-data-to-excel\/\">How to export data from SQL Server table into Excel file using SSIS? Video Tutorial<\/a><\/blockquote><iframe loading=\"lazy\" class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;How to export data from SQL Server table into Excel file using SSIS? Video Tutorial&#8221; &#8212; SQL and IT Tutorials\" src=\"https:\/\/expert-only.com\/en\/ssis\/export-sql-server-data-to-excel\/embed\/#?secret=ezTkacOn7r#?secret=bri0NvvfQU\" data-secret=\"bri0NvvfQU\" width=\"500\" height=\"282\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"><\/iframe>\n<\/div><\/figure>\n","protected":false},"excerpt":{"rendered":"<div class=\"mh-excerpt\"><p>Learn to synchronise source and target columns of an SSIS component automatically with Visual Studio. That is, how to automatically sync SSIS source and target columns, based on their name? This trick allows developing SSIS packages more efficiently. There <a class=\"mh-excerpt-more\" href=\"https:\/\/expert-only.com\/en\/ssis\/automatically-sync-ssis-columns\/\" title=\"How to automatically sync SSIS columns in a Data Flow?\">&#8230;<\/a><\/p>\n<\/div>","protected":false},"author":1,"featured_media":10874,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[516],"tags":[],"class_list":{"0":"post-25922","1":"post","2":"type-post","3":"status-publish","4":"format-standard","5":"has-post-thumbnail","7":"category-ssis"},"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v21.7 (Yoast SEO v26.2) - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>How to automatically sync SSIS columns in a Data Flow? MS BI<\/title>\n<meta name=\"description\" content=\"How to sync SSIS columns automatically with Visual Studio? A time-saving method for MS BI ETL development.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/expert-only.com\/en\/ssis\/automatically-sync-ssis-columns\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to automatically sync SSIS columns in a Data Flow?\" \/>\n<meta property=\"og:description\" content=\"How to sync SSIS columns automatically with Visual Studio? A time-saving method for MS BI ETL development.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/expert-only.com\/en\/ssis\/automatically-sync-ssis-columns\/\" \/>\n<meta property=\"og:site_name\" content=\"SQL and IT Tutorials\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/ExpertOnlyCom\/\" \/>\n<meta property=\"article:published_time\" content=\"2023-05-11T05:21:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-06-14T13:01:06+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/expert-only.com\/wp-content\/uploads\/2022\/09\/texture-design-273B124DF7D_1920x1080.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1920\" \/>\n\t<meta property=\"og:image:height\" content=\"1080\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Expert-Only\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@expert_only\" \/>\n<meta name=\"twitter:site\" content=\"@expert_only\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Expert-Only\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/expert-only.com\/en\/ssis\/automatically-sync-ssis-columns\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/expert-only.com\/en\/ssis\/automatically-sync-ssis-columns\/\"},\"author\":{\"name\":\"Expert-Only\",\"@id\":\"https:\/\/expert-only.com\/en\/#\/schema\/person\/406a9576b52944f018739a42046873ef\"},\"headline\":\"How to automatically sync SSIS columns in a Data Flow?\",\"datePublished\":\"2023-05-11T05:21:00+00:00\",\"dateModified\":\"2023-06-14T13:01:06+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/expert-only.com\/en\/ssis\/automatically-sync-ssis-columns\/\"},\"wordCount\":545,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/expert-only.com\/en\/#organization\"},\"image\":{\"@id\":\"https:\/\/expert-only.com\/en\/ssis\/automatically-sync-ssis-columns\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/expert-only.com\/wp-content\/uploads\/2022\/09\/texture-design-273B124DF7D_1920x1080.jpg\",\"articleSection\":[\"SSIS\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/expert-only.com\/en\/ssis\/automatically-sync-ssis-columns\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/expert-only.com\/en\/ssis\/automatically-sync-ssis-columns\/\",\"url\":\"https:\/\/expert-only.com\/en\/ssis\/automatically-sync-ssis-columns\/\",\"name\":\"How to automatically sync SSIS columns in a Data Flow? MS BI\",\"isPartOf\":{\"@id\":\"https:\/\/expert-only.com\/en\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/expert-only.com\/en\/ssis\/automatically-sync-ssis-columns\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/expert-only.com\/en\/ssis\/automatically-sync-ssis-columns\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/expert-only.com\/wp-content\/uploads\/2022\/09\/texture-design-273B124DF7D_1920x1080.jpg\",\"datePublished\":\"2023-05-11T05:21:00+00:00\",\"dateModified\":\"2023-06-14T13:01:06+00:00\",\"description\":\"How to sync SSIS columns automatically with Visual Studio? A time-saving method for MS BI ETL development.\",\"breadcrumb\":{\"@id\":\"https:\/\/expert-only.com\/en\/ssis\/automatically-sync-ssis-columns\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/expert-only.com\/en\/ssis\/automatically-sync-ssis-columns\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/expert-only.com\/en\/ssis\/automatically-sync-ssis-columns\/#primaryimage\",\"url\":\"https:\/\/expert-only.com\/wp-content\/uploads\/2022\/09\/texture-design-273B124DF7D_1920x1080.jpg\",\"contentUrl\":\"https:\/\/expert-only.com\/wp-content\/uploads\/2022\/09\/texture-design-273B124DF7D_1920x1080.jpg\",\"width\":1920,\"height\":1080},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/expert-only.com\/en\/ssis\/automatically-sync-ssis-columns\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"en\",\"item\":\"https:\/\/expert-only.com\/en\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to automatically sync SSIS columns in a Data Flow?\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/expert-only.com\/en\/#website\",\"url\":\"https:\/\/expert-only.com\/en\/\",\"name\":\"SQL and IT Tutorials\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/expert-only.com\/en\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/expert-only.com\/en\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/expert-only.com\/en\/#organization\",\"name\":\"Expert-Only\",\"url\":\"https:\/\/expert-only.com\/en\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/expert-only.com\/en\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/expert-only.com\/wp-content\/uploads\/2017\/09\/cropped-logo_Expert-Only.jpg\",\"contentUrl\":\"https:\/\/expert-only.com\/wp-content\/uploads\/2017\/09\/cropped-logo_Expert-Only.jpg\",\"width\":381,\"height\":174,\"caption\":\"Expert-Only\"},\"image\":{\"@id\":\"https:\/\/expert-only.com\/en\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/ExpertOnlyCom\/\",\"https:\/\/x.com\/expert_only\",\"https:\/\/www.youtube.com\/channel\/UCMS5sR_FwAetB0FmciNvUaA\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/expert-only.com\/en\/#\/schema\/person\/406a9576b52944f018739a42046873ef\",\"name\":\"Expert-Only\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/expert-only.com\/en\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/084b15660763ff5b13bb60b2f52f97bb?s=96&d=identicon&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/084b15660763ff5b13bb60b2f52f97bb?s=96&d=identicon&r=g\",\"caption\":\"Expert-Only\"}}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"How to automatically sync SSIS columns in a Data Flow? MS BI","description":"How to sync SSIS columns automatically with Visual Studio? A time-saving method for MS BI ETL development.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/expert-only.com\/en\/ssis\/automatically-sync-ssis-columns\/","og_locale":"en_US","og_type":"article","og_title":"How to automatically sync SSIS columns in a Data Flow?","og_description":"How to sync SSIS columns automatically with Visual Studio? A time-saving method for MS BI ETL development.","og_url":"https:\/\/expert-only.com\/en\/ssis\/automatically-sync-ssis-columns\/","og_site_name":"SQL and IT Tutorials","article_publisher":"https:\/\/www.facebook.com\/ExpertOnlyCom\/","article_published_time":"2023-05-11T05:21:00+00:00","article_modified_time":"2023-06-14T13:01:06+00:00","og_image":[{"width":1920,"height":1080,"url":"https:\/\/expert-only.com\/wp-content\/uploads\/2022\/09\/texture-design-273B124DF7D_1920x1080.jpg","type":"image\/jpeg"}],"author":"Expert-Only","twitter_card":"summary_large_image","twitter_creator":"@expert_only","twitter_site":"@expert_only","twitter_misc":{"Written by":"Expert-Only","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/expert-only.com\/en\/ssis\/automatically-sync-ssis-columns\/#article","isPartOf":{"@id":"https:\/\/expert-only.com\/en\/ssis\/automatically-sync-ssis-columns\/"},"author":{"name":"Expert-Only","@id":"https:\/\/expert-only.com\/en\/#\/schema\/person\/406a9576b52944f018739a42046873ef"},"headline":"How to automatically sync SSIS columns in a Data Flow?","datePublished":"2023-05-11T05:21:00+00:00","dateModified":"2023-06-14T13:01:06+00:00","mainEntityOfPage":{"@id":"https:\/\/expert-only.com\/en\/ssis\/automatically-sync-ssis-columns\/"},"wordCount":545,"commentCount":0,"publisher":{"@id":"https:\/\/expert-only.com\/en\/#organization"},"image":{"@id":"https:\/\/expert-only.com\/en\/ssis\/automatically-sync-ssis-columns\/#primaryimage"},"thumbnailUrl":"https:\/\/expert-only.com\/wp-content\/uploads\/2022\/09\/texture-design-273B124DF7D_1920x1080.jpg","articleSection":["SSIS"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/expert-only.com\/en\/ssis\/automatically-sync-ssis-columns\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/expert-only.com\/en\/ssis\/automatically-sync-ssis-columns\/","url":"https:\/\/expert-only.com\/en\/ssis\/automatically-sync-ssis-columns\/","name":"How to automatically sync SSIS columns in a Data Flow? MS BI","isPartOf":{"@id":"https:\/\/expert-only.com\/en\/#website"},"primaryImageOfPage":{"@id":"https:\/\/expert-only.com\/en\/ssis\/automatically-sync-ssis-columns\/#primaryimage"},"image":{"@id":"https:\/\/expert-only.com\/en\/ssis\/automatically-sync-ssis-columns\/#primaryimage"},"thumbnailUrl":"https:\/\/expert-only.com\/wp-content\/uploads\/2022\/09\/texture-design-273B124DF7D_1920x1080.jpg","datePublished":"2023-05-11T05:21:00+00:00","dateModified":"2023-06-14T13:01:06+00:00","description":"How to sync SSIS columns automatically with Visual Studio? A time-saving method for MS BI ETL development.","breadcrumb":{"@id":"https:\/\/expert-only.com\/en\/ssis\/automatically-sync-ssis-columns\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/expert-only.com\/en\/ssis\/automatically-sync-ssis-columns\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/expert-only.com\/en\/ssis\/automatically-sync-ssis-columns\/#primaryimage","url":"https:\/\/expert-only.com\/wp-content\/uploads\/2022\/09\/texture-design-273B124DF7D_1920x1080.jpg","contentUrl":"https:\/\/expert-only.com\/wp-content\/uploads\/2022\/09\/texture-design-273B124DF7D_1920x1080.jpg","width":1920,"height":1080},{"@type":"BreadcrumbList","@id":"https:\/\/expert-only.com\/en\/ssis\/automatically-sync-ssis-columns\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"en","item":"https:\/\/expert-only.com\/en\/"},{"@type":"ListItem","position":2,"name":"How to automatically sync SSIS columns in a Data Flow?"}]},{"@type":"WebSite","@id":"https:\/\/expert-only.com\/en\/#website","url":"https:\/\/expert-only.com\/en\/","name":"SQL and IT Tutorials","description":"","publisher":{"@id":"https:\/\/expert-only.com\/en\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/expert-only.com\/en\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/expert-only.com\/en\/#organization","name":"Expert-Only","url":"https:\/\/expert-only.com\/en\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/expert-only.com\/en\/#\/schema\/logo\/image\/","url":"https:\/\/expert-only.com\/wp-content\/uploads\/2017\/09\/cropped-logo_Expert-Only.jpg","contentUrl":"https:\/\/expert-only.com\/wp-content\/uploads\/2017\/09\/cropped-logo_Expert-Only.jpg","width":381,"height":174,"caption":"Expert-Only"},"image":{"@id":"https:\/\/expert-only.com\/en\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/ExpertOnlyCom\/","https:\/\/x.com\/expert_only","https:\/\/www.youtube.com\/channel\/UCMS5sR_FwAetB0FmciNvUaA"]},{"@type":"Person","@id":"https:\/\/expert-only.com\/en\/#\/schema\/person\/406a9576b52944f018739a42046873ef","name":"Expert-Only","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/expert-only.com\/en\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/084b15660763ff5b13bb60b2f52f97bb?s=96&d=identicon&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/084b15660763ff5b13bb60b2f52f97bb?s=96&d=identicon&r=g","caption":"Expert-Only"}}]}},"_links":{"self":[{"href":"https:\/\/expert-only.com\/en\/wp-json\/wp\/v2\/posts\/25922","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/expert-only.com\/en\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/expert-only.com\/en\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/expert-only.com\/en\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/expert-only.com\/en\/wp-json\/wp\/v2\/comments?post=25922"}],"version-history":[{"count":0,"href":"https:\/\/expert-only.com\/en\/wp-json\/wp\/v2\/posts\/25922\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/expert-only.com\/en\/wp-json\/wp\/v2\/media\/10874"}],"wp:attachment":[{"href":"https:\/\/expert-only.com\/en\/wp-json\/wp\/v2\/media?parent=25922"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/expert-only.com\/en\/wp-json\/wp\/v2\/categories?post=25922"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/expert-only.com\/en\/wp-json\/wp\/v2\/tags?post=25922"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}