Explicitly Stop SSIS Package Execution
Hi,I have one SSIS Package, which have four Execute SQL task in Sequential manner. This Package generally takes 10 minutes to execute. I have one scenario that, If ssis package takes more than 15...
View ArticleAdding Trailer Record to end of a file
Hello Everyone,I have an SSIS package which takes a SQL Query and generates a PIPE (|) delimited flat file. Simple enough. However, I also need to add a Trailer record at the bottom of the file...
View ArticleDrop/recreate tables and data copy from encrypted db to non-encrypted
I need to drop all the tables in my target (non-encrypted SQL server instance) database and copy all database objects from a TDE-encrypted, separate SQL server instance database to the non-encrypted...
View ArticleRead and Email and use SSIS to process through the Email and store contents...
I am looking for an example of a SSIS Package that actually reads an Email and then can process through the Email and store certain contents within it. Is this normally done by looking at the Email in...
View ArticleJob appends instead of overwriting
I have a Job that creates a Flat File. When the job runs, it appends to the existing file. I have several other jobs that overwrite the file when it runs. I have exhausted my knowledge and experience...
View ArticleOLEDB Destination Fast Load Auto Truncation
I have one Data Flow task with OLEDB Source(for SQL Server) and OLEDB Destination(for SQL Server).In OLEDB destination I have used Fast Load option. Also I handled error rows to move to error table.In...
View ArticlePassing Arguments to a Process Task
I have a Process Task inside a For Each Loop Container.When I hardcode the arguments to a known id it works fine.If I set the Arguments property to my variable as -> User::CustomerId nothing happens...
View ArticleSSIS XML Source not importing data
ISSUE:I'm working from a complex xml schema. The issue I'm having is that the xsd passes SSIS XML Source validation, I'm able to create each table from its connections, but on import it executes and...
View ArticlePREEMPTIVE_SHAREDMEM_GETDATA error during SSIS
I have an SSIS package that is dynamically generated and executed that basically does a pull from a source database and use SQL Server Destination to inject into the destination (some tables are all...
View ArticleUbuntu MySQL 64 bit as linked server to SQL Server 2008 64 bit
Hi,Is it possible to add a Ubuntu MySQL 64 bit as linked server to SQL Server 2008 64 bit ? The Ubuntu MySQL 64 is located on a virtual server behind a firewall ?
View ArticleMicrosoft Attunity SSIS CDC for Oracle
Hi All,We are doing a POC from capturing data from Oracle using "Microsoft Attunity SSIS CDC for Oracle" tool . For POC I am using Sql server 2012 SP1 with Attunity connector 2.0 installed running on a...
View ArticleORA-12154: TNS:could not resolve the connect identifier specified Error in...
Hi guys,I tried to execute a package with Oracle Data Source from Integration Services Catalogs and I got the following error. ORA-12154: TNS:could not resolve the connect identifier specifiedThe...
View ArticleChange Date format to Text for Import
I have used Sql Server Integration Services to extract some data into Excel. When I load the files it seems that not all the time the dates are formatted with the time. If I format the field this...
View ArticleQuick and probably easy question
Hi all,I'm loading a flat file which contains 0.0000€How can I easily replace this in ETL with NULL?I tried [AMT_SALES_BONUS] = "0.0000" : NULL but having some issues.The AMT_SALES_BONUS is a decimal...
View ArticleMicrosoft SQL Server CDC TOOL Evaluation Key Questions
Hi Team, Our requirement is to run SQL CDC 24/7, 365 days extracting large volume of data continuously.Question(s)Is SQL CDC can be used for our round the clock (24/7*365 days) Change data capture?What...
View Articlemapping proc output to vars gets error extracting result into a variable of...
Hi, we run std 2012. I have a proc (sets nocount on) whose params r shown in the first block . My execute ssis sql task mapping is shown in the block following that (same order as shown, the param...
View ArticleError in sql query as "loop has run more times than expected (Loop Counter...
Hello,When I run the query as belowDECLARE @LoopCount int SET @LoopCount = (SELECT Count(*) FROM KC_PaymentTransactionIDConversion with (nolock) Where KC_Transaction_ID is NULL and TransactionYear is...
View ArticleAutomatically update Data Flow when table column is added
Hi, I have identical SQL Server databases on Server A and Server B, and I'm trying to create an SSIS package that will update its own Data Flow task when I've added a new column. When I open the SSIS...
View ArticleHow About This One - CASE/IF statement in SSIS Derived Column
TSQL format: CASE WHEN [Field1] = 0 THEN [Field2] ELSE NULL END as DerivedColumnI tried this, but it doesn't work: [Field1] == 0 ? [Field2] The first field is a bit field and the resulting value of...
View Article