Tagged Questions
Microsoft SQL Server Integration Services (SSIS) is a platform for building enterprise-level data integration and data transformations solutions.
25
votes
5answers
2k views
.Net vs SSIS: What should SSIS be used for?
If I have the option of using .Net and can do data transformations just fine in .Net, when would I need SSIS? Is there a certain task that SSIS would be better for? Are the added benefits of ...
22
votes
15answers
4k views
alternatives to SSIS
What is a good,stable and preferably free alternative to SQL Server Integration Services?
I'm so tired of this buggy piece of software.
21
votes
7answers
2k views
Should programmers use SSIS, and if so, why?
As a .NET developer, for what reasons should I prefer SSIS packages over writing code? We have a ton of packages in production where I currently work, and they're a nightmare to both "write" (perhaps ...
16
votes
7answers
11k views
“Unable to read data from the transport connection: net_io_connectionclosed.” - Windows Vista Business and SMTP
Unable to test sending email from .NET code in Windows Vista Business.
I am writing code which I will migrate to an SSIS Package once it its proven. The code is to send an error message via email to ...
15
votes
2answers
18k views
How to execute an SSIS package from .NET?
I have a SSIS package that eventually I would like to pass parameters too, these parameters will come from a .NET application (VB or C#) so I was curious if anyone knows of how to do this, or better ...
13
votes
3answers
3k views
How do I perform automated unit testing in SSIS packages?
How can I unit test SSIS packages? I want to be able to create and maintain unit tests for various components such as the workflow tasks, data flow tasks, event handlers, etc.
Are there any existing ...
12
votes
5answers
3k views
Integrating FaceBook, Twitter, Social networks in Android
Integrating Multiple Social networks into Android with a single common Framework or API or JAR
For iPhone we have ShareKit, which integrates multiple sharing options in one framework.
...
12
votes
1answer
13k views
Watching variables in SSIS during debug
I have a project in SSIS and I've added an Execute SQL Task which sends its result out to a variable. I wanted to confirm the value because I was worried that it would try to write it out as a ...
11
votes
3answers
21k views
How do I view the SSIS packages in SQL Server Management Studio?
Argh! I created an SSIS package via an Import Wizard and I can't find the SSIS packages on the server using Management Studio. Execute an SSIS package doesn't appear as an option when I go into job ...
10
votes
1answer
1k views
UTF-8 flat file import to SQL Server 2008 not recognizing {LF} row delimiter
I am trying to import data from a utf-8 encoded flat file into SQL Server 2008 using SSIS. This is what the end of the row data looks like in Notepad++:
I have a couple more images showing what the ...
10
votes
4answers
1k views
Extract Data from .PDF files
I need to extract data from .PDF files and load it in to SQL 2008.
Can any one tell me how to proceed??
10
votes
5answers
831 views
What are the recommended learning material for SSIS?
Okay, you don't need to be a guru, but if you happen to have a good working knowledge on SSIS and you used some tutorials around the web to get you there, then please share them. I have been trying to ...
9
votes
4answers
1k views
What are some good learning resources for SSIS
What are some good learning Resources for SSIS. Some members of our team are going to inherit some SSIS Code and we are looking for some good books, blogs, tutorials, etc.
The one thing we are ...
8
votes
4answers
5k views
The best technology to synchronize data between different database schemas?
I have an existing SQL Server 2005 database that runs our accounting/inventory application. We are looking at using a new on-line ordering framework - which has it's own database.
If we use this new ...
8
votes
2answers
3k views
Is it possible to use relative paths for SSIS packages dtsConfig files?
I am trying to make our SQL Server Integration Services packages as portable as possible and the one thing that is preventing that is that the path to the config is always an absolute path, which ...
7
votes
1answer
213 views
Trying to call a T-SQL Stored Procedure which selects data from linked server in SSIS package
I have a scenario where I am trying to select some data in a table t1 & t2 from a remote Server (on which I just have read permissions) S1 in DB db1 from another remote Server(on which I am DBO ...
7
votes
3answers
2k views
Rhino ETL opinions vs Kettle and SSIS [closed]
I am considering a tool for an ETL solution that has high daily demand and requires heavy business logic processing. I've tried kettle and SSIS so far, and also want to test for Rhino ETL. I don't ...
7
votes
4answers
9k views
SSIS,SSAS,SSRS complete video tutorials
This may not be a direct programming question but I am in desperate need of this and if you people feel that the question is irrelevant , please do close it but after the answer.
Like if we visit ...
7
votes
3answers
1k views
What is the best approach to get from relational OLTP database to OLAP cube?
I have a fairly standard OLTP normalised database and I have realised that I need to do some complex queries, averages, standard deviations across different dimensions in the data.
So I have turned ...
7
votes
6answers
4k views
Debugging in SSIS
How do I debug .NET code written within a script task in a SSIS package? The development environment allows placing a breakpoint however does not take me to the code like it would in regular .NET ...
7
votes
8answers
17k views
How to avoid SSIS FTP task from failing when there are no files to download?
I'm using SQL Server 2005, and creating ftp tasks within SSIS.
Sometimes there will be files to ftp over, sometimes not. If there are no files, I don't want the task nor the package to fail. I've ...
6
votes
5answers
1k views
SSIS Merge Join Vs Lookup
Hi I'm new to SSIS packages and writing a package and reading up about them at the same time.
I need to convert a DTS into a SSIS package and I need to perform a join on two sources from different ...
6
votes
2answers
411 views
SQL Server stored procedure conversion to SSIS Package
Problem: currently we have numerous stored procedures (very long up to 10,000 lines) which were written by various developers for various requirements in last 10 years. It has become hard now to ...
6
votes
1answer
2k views
How do I fix 'Setup project with custom action file not found' exception?
I am trying to create a setup project for a Windows Service. I've followed the directions at http://support.microsoft.com/kb/816169 to create the setup project with no trouble.
I want to be able to ...
6
votes
6answers
986 views
Import huge XML data (> 1Gb) into SQL Server 2008 daily
I have encountered a problem that I need to import a huge XML (> 1Gb) into SQL Server 2008 daily. What I have now is a sample XML file and the XML schema of it. The XML schema is pretty complex which ...
6
votes
5answers
8k views
Import Package Error - Cannot Convert between Unicode and Non Unicode String Data Type
I am trying to troubleshoot this error without success.
I have made a dtsx package on my computer using SQL Server 2008. It imports data from a semicolon delimited csv file into a table where all of ...
6
votes
2answers
1k views
Can you run an SSIS task from .net?
I have scheduled sql agent task which runs an SSIS package. I want to be able to run the SSIS package from .net. Is there a way to either run the SSIS package directly or at least run the SQL agent ...
6
votes
6answers
1k views
Best place to start for SSIS programming
what is the best place to start learning about SQL Server 2005 Integration services?
I'm looking for links for setup and tutorials on how to get started. I've read I need a toolkit called SSIS ...
6
votes
4answers
2k views
Can someone please explain data mining, SSIS, BI, ETL and other related technologies?
I was talking with a co-worker yesterday regarding a situation where he used SSIS (or something like that) to do some really cool thing with an SSIS Package where he passed in a name like "Dr. ...
6
votes
4answers
7k views
Is it possible to perform T-SQL fuzzy lookup without SSIS?
SSIS 2005/2008 does fuzzy lookups and groupings. Is there a feature that does the same in T-SQL?
6
votes
4answers
2k views
How to programatically create an SSIS Package?
I am trying to programatically create an SSIS package containing a simple data flow from table A to table B in the same database. I am using the example given here.
The package gets created and saved ...
6
votes
6answers
4k views
How to write stored procedure output directly to a file on an FTP without using local or temp files?
I want to get the results of a stored procedure and place them into a CSV file onto an FTP location.
The catch though is that I cannot create a local/temporary file that I can then FTP over.
The ...
5
votes
2answers
90 views
T-SQL: is there a way to force conformance to ANSI SQL?
We are planning on writing a load process that uses SSIS and loads a SQL 2008 database. Transformations may be done in the packages or in stored procedures that are called from a package or directly ...
5
votes
2answers
249 views
Executing SSIS package from c#
I have to create a Windows Form application which would modify the connection sring values present in dts config file and then execute the package with this updated dts config file.
Even if I am ...
5
votes
2answers
122 views
How many cores for SSIS?
I did a proof of concept for a complex transformation in SSIS. I have performance metrics now for this POC that I created in a virtual machine, with 1 gig memory, 1 core assigned. The SSIS ...
5
votes
6answers
365 views
Avoid writing SQL queries altogether in SSIS
Working on a Data Warehouse project, the guy that gave us the tutorial advised that we stick to using SQL queries over defining a lot of data flow transformations, citing points like it'll consume a ...
5
votes
4answers
5k views
Loading Multiple Tables using SSIS keeping foreign key relationships
I am trying to load data from a single file (with million+ records) into multiple tables on SQL Server using SSIS while maintaining the relationships defined in the file.
To better elaborate with an ...
5
votes
3answers
538 views
For developers, is it worth it to learn/use SSIS?
I'm starting to get involved in quite a bit of ETL work a my current job, and everyone seems to be pretty partial to SSIS. I'm struggling trying to do the most trivial transformations through BI ...
5
votes
9answers
5k views
Advantages of using SSIS packages over stored procedures?
If I can do the required ETL requirements using stored procedures, any advantages of using SSIS packages instead? My ETL stuff is nothing major.
I feel like using an old technology. I like SQL.
Old ...
5
votes
5answers
3k views
What are SSIS packages deployment and change-tracking best practices?
I've got quite a robust development environment regarding my SQL database Schema and Data (everything is source controlled, deployment is automated, etc), but when it comes to SSIS packages, the ...
5
votes
3answers
851 views
Best way of logging in SSIS
There are 5 different types of logging in SSIS
Event Log
Text File
XML File
SQL Server
SQL Server Profiler
I am in a production environment where developers do not have access to production ...
5
votes
2answers
4k views
Schedule SSIS package execution
How do I schedule SSIS to automatically execute a package from a file at a given time every day?
5
votes
4answers
3k views
Upgrading SQL Server 2000 to 2005 or 2008 - DTS to SSIS
Our office uses SQL Server 2000, and by and large it has served our needs well. I'm looking into the possibility of upgrading to SQL 2005 or 2008 because of the new features not found in 2000 (when I ...
5
votes
6answers
8k views
Best Method to SFTP or FTPS Files via SSIS
This question originally asked which is the best method for uploading files via SFTP or FTPS in SSIS. It now just lists the pros and cons of each solution. I personally use CozyRoc's SFTP library ...
5
votes
3answers
15k views
Can I run SSIS packages with SQL Server Express or Web or Workgroup editions?
I have looked at the SQL Server 2008 feature comparison matrix and it lists the express/web and workgroup editions as having the SSIS runtime. Does this mean it is possible to develop SSIS packages ...
5
votes
5answers
7k views
How to import variable record length CSV file using SSIS?
Has anyone been able to get a variable record length text file (CSV) into SQL Server via SSIS?
I have tried time and again to get a CSV file into a SQL Server table, using SSIS, where the input file ...
4
votes
1answer
61 views
SSIS Writing 0x00 Hex Value to Flat File
I am using SSIS to write multiple packed fields (hex values) to a flat file for a mainframe system. I have found that writing 0x00 or NULL doesn't write NULL it writes 0x20 or a space. Is there a way ...
4
votes
1answer
58 views
Hyperion Essbase Connection in SSIS
How can I get SSIS to connect to an Oracle Hyperion Essbase cube to use it as a data source? Googling this returned the following:
A similar question was asked about a specific version with no real ...
4
votes
1answer
198 views
How to stop SSIS from “Phoning Home”
Working on maintaining a substantial set of SQL Server Integration Services 2008 R2 packages, I've run into an oddball problem.
These packages make frequent use of Script Tasks, each containing C# ...
4
votes
2answers
148 views
Difference between .NET, OLEDB, and Native Providers in SSIS
I am pretty confused with the plethora of OLEDB providers found in creating a connection to a database in SSIS 2008 R2.
I would much appreciate if you could tell me what the following providers stand ...