ssis

Unable to transfer SQL Server varchar(max) to MySQL text using SSIS

妖精的绣舞 提交于 2020-01-14 13:11:47
问题 I'm trying to transfer a table from SQL Server to MySQL using SSIS and it is failing on one column that is varchar(max) on SQL Server and text on MySQL. So far I have tried doing this as an OLE DB to ODBC data flow, as well as BCP out into a flat file to ODBC data flow. The field in question is configured in SSIS as DT_TEXT. In both instances, it is producing the following set of errors: [ODBC Destination [47]] Error: Open Database Connectivity (ODBC) error occurred. SQLExecute returned error

How to do a one-time load for 4 billion records from MySQL to SQL Server

蹲街弑〆低调 提交于 2020-01-14 08:56:46
问题 We have a need to do the initial data copy on a table that has 4+ billion records to target SQL Server (2014) from source MySQL (5.5). The table in question is pretty wide with 55 columns, however none of them are LOB. I'm looking for options for copying this data in the most efficient way possible. We've tried loading via Attunity Replicate (which has worked wonderfully for tables not this large) but if the initial data copy with Attunity Replicate fails then it starts over from scratch ...

How do I extract a value from SSIS package file using PowerShell?

馋奶兔 提交于 2020-01-14 05:29:09
问题 Sql Server Integration Services packages are stored as xml files with a dtsx extension. I need to be able to extract their build numbers with Powershell. The relevant part at the top of the file looks like- <?xml version="1.0"?> <DTS:Executable xmlns:DTS="www.microsoft.com/SqlServer/Dts"> <DTS:ExecutableType="MSDTS.Package.1"> <DTS:Property DTS:Name="PackageFormatVersion">2</DTS:Property> <DTS:Property DTS:Name="VersionMajor">1</DTS:Property> <DTS:Property DTS:Name="VersionMinor">0</DTS

How to manage giant fixed-width file in SSIS?

允我心安 提交于 2020-01-14 05:21:24
问题 I have a fixed width file that is about 1200 characters wide and has about 300+ columns. I'm looking for a way to create a fixed-width data source in SSIS without using the UI for the flat file connection manager. Is there a way to modify the column definitions without having to use the UI in SSIS? I can't find a file for the data connection anywhere in the project. Am I doomed to manually add 300+ columns into the flat-file connection manager one by one? 回答1: Two options come to mind. The

SSIS - Script Component, Split single row to multiple rows (Parent Child Variation)

佐手、 提交于 2020-01-13 09:58:09
问题 Thanks in advance for your help. I'm in need of help on writing SSIS script component to delimit single row to multiple rows. There were many helpful blog and post I looked at below: http://beyondrelational.com/ask/public/questions/1324/ssis-script-component-split-single-row-to-multiple-rows-parent-child-variation.aspx http://bi-polar23.blogspot.com/2008/06/splitting-delimited-column-in-ssis.html However, I need a little extra help on coding to complete the project. Basically here's what I

VS2013 not picking up SQL2012 SSIS Custom Components

牧云@^-^@ 提交于 2020-01-13 06:55:30
问题 I am trying to create a custom SSIS component. While I use Visual Studio 2013 premium as my main IDE I seems to have fallen into the below problem. When I create a SSIS custom component (class library, .Net 4.0 using dlls from 110's x86 folder) I am successfully able to compile, build, register at GAC and copy them to 110's DTS component folder. Now here is the problem. When I create Integration Services Project in VS2013, I cannot see my newly created component in the SSIS toolbox. While if

SSIS and Informatica [closed]

做~自己de王妃 提交于 2020-01-12 11:45:02
问题 Closed . This question is opinion-based. It is not currently accepting answers. Want to improve this question? Update the question so it can be answered with facts and citations by editing this post. Closed last month . SQL SERVER 2014 SSIS has been released,we have already got lot of facilities in SQL SERVER 2012 SSIS.Can anybody compare SSIS 2014/SSIS2012 with Informatica Power center ? What are the additional fetures are there in the Informatica new version than SSIS 2012/2014? Or are

SSIS and Informatica [closed]

时光毁灭记忆、已成空白 提交于 2020-01-12 11:42:10
问题 Closed . This question is opinion-based. It is not currently accepting answers. Want to improve this question? Update the question so it can be answered with facts and citations by editing this post. Closed last month . SQL SERVER 2014 SSIS has been released,we have already got lot of facilities in SQL SERVER 2012 SSIS.Can anybody compare SSIS 2014/SSIS2012 with Informatica Power center ? What are the additional fetures are there in the Informatica new version than SSIS 2012/2014? Or are

SSIS and Informatica [closed]

点点圈 提交于 2020-01-12 11:38:11
问题 Closed . This question is opinion-based. It is not currently accepting answers. Want to improve this question? Update the question so it can be answered with facts and citations by editing this post. Closed last month . SQL SERVER 2014 SSIS has been released,we have already got lot of facilities in SQL SERVER 2012 SSIS.Can anybody compare SSIS 2014/SSIS2012 with Informatica Power center ? What are the additional fetures are there in the Informatica new version than SSIS 2012/2014? Or are

How can I use MERGE statement across multiple database servers?

纵然是瞬间 提交于 2020-01-11 11:27:15
问题 My Source and Destination tables exist on different servers. I am using Execute SQL Task to write Merge Statements to synchronize them. Could anyone explain how I can reference two different databases that exist on different servers inside my Execute SQL Task ? 回答1: Possible approaches: I would suggest the following approaches instead of trying to use MERGE statement within Execute SQL Task between two database servers. Approach #1: Create two OLEDB Connection Managers to each of the SQL