Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
3answers
837 views

SSIS: from XML file to multiple tables

So I just started diggin SSIS today, so don't hate too much if there is something obvious I am missing. So I have an XML file (from a third party) <root> <foo> ...
4
votes
1answer
2k views

SSIS - dynamic column mappings

I am using SSIS to do data transformation from excel to OLEDB SQL. I have a set of sheets in a folder that i ll have to loop thru and insert the data in each of these sheets to a table. I have a ...
3
votes
1answer
77 views

Ignore records with null field when copying from one table to another using SSIS

Is it possible in a SSIS to ignore records that have a null field? For example i want to copy data from one database table to another, however Table A has some rubbish data in it and has some fields ...
3
votes
1answer
128 views

Timeout error when i download files using FTP Task?

I have ssis package in that i used FTP Task. When i Using FTP Task i download .csv file, i got operation timeout error. The file size is 20 MB. Please help me how to fix this. Thanks
3
votes
1answer
356 views

SSIS Custom Transforms - what is MappedColumnID

SSIS developer documentation is notoriously terse, and I've scoured Google looking for an answer on this... What is the MappedColumnID property (available on input, output and external metadata ...
2
votes
1answer
65 views

SSIS the Percentage column from Excel -> SQL Server

I am trying to create a SSIS package that will import Excel data to SQL Server 2000 database. One of the column in Excel sheet is in Percentage format and I wish to import that column in string ...
2
votes
1answer
155 views

How to force multithreading on inputs in an SSIS custom Dataflow Component

I'm writing an SCD2 lookup component that has 2 inputs: The main data flow input, containing business keys and effective dates, An input for populating a cache of SCD2 records containing surrogate ...
2
votes
2answers
252 views

SSIS LookUp is not dealing with NULLs like the docs say it should

I have an SSIS data flow that uses a lookup. Sometimes the value to be looked up (in my stream, not in the lookup table) is null. The MSDN Docs say: consider using full caching, which supports ...
2
votes
2answers
556 views

SSIS Date Format dd-mmm-yy to Smalldatetime

I have a flat file which is imported into SQL Server via an existing SSIS package. I need to make a change to the package to accommodate a new field in the flat file. The new field is a date field ...
2
votes
1answer
329 views

Asynchronous script component in SSIS for web service call

I have to create a SSIS package for the following scenario. First, I have to do a database query . A set of Ids is returned from the query. For each Id , I have to do a web service call which will ...
2
votes
1answer
390 views

SSIS: Can I edit my recordset as I loop through it using the foreach statement?

I am using SSIS to make a series of complicated data exports, and I've hit a roadblock. I've populated a package variable with a recordset. I'd like to use a foreach loop to iterate through each row ...
2
votes
3answers
447 views

Multiply a number with 0.01

I need to multiply a number which is like these 00000000001099 with 0.01 and then convert into two decimal places for e.g., 10.99 after multiplication in a derived column in SSIS package. Right now I ...
2
votes
1answer
170 views

SSIS Flat File Unpivot

I have a rather complex Flat File that I'm trying to parse using SSIS. The overall structure of the flat file is as follows: CustomerName, CustomerAddress, CustomerContactInfo, InvoiceDate1, ...
2
votes
1answer
476 views

ssis merge join more than 2 data sets

I'm working on an ssis package to fix some data from a table. The table looks something like this: CustID FieldID INT_VAL DEC_VAL VARCHAR_VAL DATE_VAL 1 1 23 1 2 500.0 ...
2
votes
1answer
314 views

SSIS MYSQL to SQL Datatype

I'm trying to copy data from MySQL to SQL Server 2008. My SSIS is generating error for time (DBTime) column in MySQL database. (cannot convert dbtime to dbtime2) What datatype can i use in SQL server ...
2
votes
1answer
149 views

SSIS - when a connection is down

I've got a simple SSIS package that I edit in VS2008. What is basically does is run the same SQL StoredProc, residing in different SQL servers, and aggregating their output into a flat file. Simply ...
2
votes
2answers
824 views

SQL Server 2008 - Script Data as Insert Statements from SSIS Package

SQL Server 2008 provides the ability to script data as Insert statements using the Generate Scripts option in Management Studio. Is it possible to access the same functionality from within a SSIS ...
1
vote
2answers
84 views

Establishing the connection from Script Task(VB) to OLEDB Connection Manager of SSIS Package

How to use the existing OLEDB connection Manager from scripttask Task(VB). i need to execute a SQL statement from "Script Task" Task. Edit Attempted the following code but couldn't get the ...
1
vote
1answer
24 views

SSIS lookup related data and add if missing

say I have input data like so: firstName | lastName | Country Bob | Smith | UK Jane | Doe | France Hank | Scorpio | UK and the target tables are: People ID | firstName | ...
1
vote
1answer
47 views

SSIS 2008 Oracle Connectivity

I have tried to connect to Oracle DB using OLE DB Source ie Microsoft OLE DB Provider for Oracle. I am able to connect. But when I clicked on Preview button in OLE DB Source, I received a warning ...
1
vote
1answer
81 views

SSIS cast to DT_WSTR not casting, or so it seems

I'm creating an SSIS 2008 package that reads data from an ASCII flat file source and writes it to a SQL Server 2008 database. BIDS was complaining about the implicit cast between unicode and ...
1
vote
1answer
93 views

SSIS xml import

I’m trying to import a XML file into SQL server using SSIS. The XML file is structured like this <?xml version="1.0" encoding="utf-8"?> <dataset ...
1
vote
2answers
87 views

Using SSIS, How do I find the cities with the largest population?

I have a dataflow task with information that looks something like this: Province | City | Population ------------------------------- Ontario | Toronto | 7000000 Ontario | London | 300000 ...
1
vote
1answer
299 views

Multiple row delimiters

How to define multiple row delimiters for a Flat File Connection in SSIS? for example for a text file containing this string: Civility is required at all times; rudeness will not be tolerated. I ...
1
vote
1answer
132 views

SSIS adding new columns to the Source

I am new to SSIS. I have a problem. i get data from two different data sources. I am able to merge them using Merge Component and feed the output to a Script component where i validate data and move ...
1
vote
0answers
226 views

SSIS Derived Column casting numeric(6,0) to ANSI string drops leading digits

I have a package that's reading a table from an Oracle data source. The surrogate key for the table (an identity column) was assigned a numeric(6,0) data type by SSIS. When I take that column into a ...
1
vote
1answer
238 views

Pseudo Code for a Merge Join (Left Outer Join) In SSIS

I have a Merge Join Transform that is doing a Left Outer Join. Can anyone show me the pseudo code for this transform? I think I understand the output, but I'm curious to know the logic that is used ...
1
vote
1answer
53 views

SSIS Continue a complex dataflow from step 12

I have a complex Task flow that in general creates data warehouse content from Prod to a local DW server and then a copy of that to an offsite location. Lately we keep failing in the copy to ...
1
vote
1answer
268 views

TransactionOption in SSIS

I have created a SSIS package. I need to apply Transaction to this package for rollbacking in case the package fails. What I found is a property "TransactionOption" which should be given "Required". ...
1
vote
1answer
722 views

SSIS - Source Error Output (No rows will be sent to error output(s)…)

I'm a newbie in SSIS... I'm exporting data from a DBSource and outputing any errors to a Flat File. Now, when I connect the red arrow to the Flat Destination I'm receiving a warning from the DB Source ...
1
vote
2answers
123 views

SSIS Custom Component: Accessing Variables during Design Time

I am trying to read a package variable during design-time. I am able to do it during run-time fairly easily: IDTSVariables variables = null; ...
1
vote
1answer
66 views

how to seperate a columns using an ssis expression..?

HI I have a csv file and one of the column is concatanated like ".col1:.col2" I am using ssis to load csv file into a sql table. How can i seperate the column? thanks
1
vote
3answers
516 views

SQL Integration Services to load tab delimited file?

I'm not sure how it works so I'm looking for the right solution. and I think SSIS is the right way to go. But I have never used it before My scenario: I got each morning tab delimited file with 800K ...
1
vote
1answer
375 views

Adding an EOF row count to a Flat File Destination

I have an SSIS 2008 package that queries a database, concatenates various data elements into pipe-delimited rows, and then outputs the results to a flat file. This all works just fine. However, the ...
1
vote
1answer
189 views

SSIS Term Extraction for non-English text

I started learning Data Mining with SQL Server and I was curious that SQL Server Integration Services is capable to perform Term Extraction from English text. However I'm interested to perform Text ...
1
vote
2answers
766 views

SSIS SORT Tansformation to remove duplicates

I am trying to do a SSIS sort operation on 3 columns with remove the duplicates option check in dataflow. But the output of the sort is still giving the duplicate records in the 3 columns. Am I ...
1
vote
1answer
531 views

Need Help to set up Package that contains Foreach Loop container SSIS

I am new with SSIS packages, There is a specific process I want to accomplish. 1st) I want to get a record set from a SQL Server DB and Mark that I have retrieved the specific rows. 2nd) Loop ...
1
vote
1answer
278 views

How to convert COMP field to decimal?

I am working on a project which deals with conversion of COMP fields of COBOL to decimal, in SQL Server Integration Service (SSIS). I am able to convert COMP-3 fields (Hexa-decimal representation) ...
1
vote
3answers
173 views

SQL2008 Integration Services - Loading CSV files with varying file schema

I'm using SQL2008 to load sensor data in a table with Integration Services. I have to deal with hundreds of files. The problem is that the CSV files all have slightly different schemas. Each file ...
1
vote
1answer
194 views

Referencing Other Assemblies in Script Component

When I run my package that has a script component with a reference to my custom assembly, I get this error message 'Could not load file or assembly..' Thanks!
1
vote
1answer
151 views

import data using ssis?

trying to set up an import form live database to our development database. I trying to do this using SSIS, but the import is failing because of constraints. E.g. I have the following tables: * ...
1
vote
1answer
242 views

SSIS Common rownumber for both outputs on a flatfile source

I have a small problem (I assume...) I'm loading a flatfile (csv) and I want to add a rownumber to the dataflow. Using the RowNumber transforation works good for both output paths (source and error) ...
1
vote
1answer
275 views

Look up transformation is SSIS is not sending Error data rows into file, Why?

I have started working with SSIS recently and I am hit a dead end with the look up transformation error rows redirect to a file. I have configured to send the rows that do not have a match to a flat ...
1
vote
2answers
406 views

ssis sql 2000 image to 2008 varbinary Failed to retrieve long data for column

I have a task that to migrate the image type column from sql 2000 to varbinary type in sql 2008. The source column having 3812353 max datalength size for the column. The package always failed with ...
1
vote
2answers
1k views

Convert string to DateTime in SSIS

The data from source has string data type and sometime has invalid dates, empty column ('') I want to check whether it is valid date and convert string to date time. How can i do this in SSIS? My ...
1
vote
1answer
131 views

DateTime Conversion to Date

I wanted to convert DateTime data which will be pulled from source, to Date format only or I want to retrieve only Date with no time. How is it to be done here ? Also how is to be done for converting ...
1
vote
1answer
244 views

SSIS connecting to Oracle 10g Error

Hi I am trying to connect Oracle 10g(Source/Target) from ssis using connection string as Data Source=Qrgo;User ID=sy;password=sa;Provider=MSDAORA.1; Qrgo is Servicename getting error Test connection ...
1
vote
1answer
49 views

Inability to detect the Output from inside a SSIS script component

In the script of the script components the Output buffer is not being detected as an existing component. I am trying to use the following piece of code Output0Buffer.AddRow(); within the public ...
1
vote
2answers
310 views

execute SSIS package

Is it possible to execute a SSIS package in C# Code ? We can process cube using the namespace "Microsoft.AnalysisServices.AdomdClient". What will be namespace/method to be used for executing a ...
1
vote
1answer
3k views

Store Dataset to DTS Variable

How do we store DataSet object to Dts variable of data type "Object" and store back to another Dataset object, in Script Task ?

1 2 3 4 5