Tagged Questions
0
votes
1answer
26 views
Importing Excel to Sql Causing Truncation Failure
I am trying to add about 350 rows of data from an Excel sheet into SQL Server 2008 using the Import and Export Wizard. I am running into a single issue that I cannot find a solution for. I have a ...
0
votes
2answers
22 views
Excel to SQL Server using SSIS
I am loading data from Excel Source to SQL Server destination. And it is working fine.
The problem is the empty rows are also inserting into the database.
Can you help please.
Thanks
0
votes
2answers
44 views
Extracting Excel files from Multiple subfolders and load them into sql server table basing on city name
I have a folder which contain's Sub folders(City Names) and in those sub folders I have excel files. I have to take all the excel files from the sub folder and load them into a SQL Server table basing ...
1
vote
1answer
27 views
SSIS expression for date comparison?
My expression is like following:
DATEDIFF("dd",(DT_DATE)(SUBSTRING(@[User::strExcelFileName],15,2) + "-" + SUBSTRING(@[User::strExcelFileName],18,2) + "-" + ...
1
vote
1answer
29 views
Select specific cells from multiple spreadsheets into SQL using SSIS
I need to loop through a series of spreadsheets (all in the same folder), pulling data from the same cells within the same named range in each, into an existing SQL database, using SSIS (SQL Server ...
0
votes
2answers
23 views
SSIS OLEDB destination with SQL command
I have a simple SSIS package with a data flow task with ADO.NET source & destination:
Normally, I would just select 'table or view' on the OLEDB destination, but although the connection is ...
0
votes
0answers
16 views
SAP BW to SQl Server import and export wizard
I am trying to load data from SAP BW system to SQL server. Using management studio, But i am getting this error any idea?
0
votes
0answers
32 views
SQL Server 2008- SSIS- variables
How can I assign the value of an IN variable to an OUT variable in the same package.
I tried using the connection in expressions. My source connection being a flat file. I wanted that to happen in a ...
0
votes
1answer
38 views
SSIS Update a particular column
I have a table in SQL Server with many fields. Two of which are IDNumber and Resolved(Date) Resolved is Null in SQL Server. Then I have data with IDNumber and and Resolved(Date) that I want to import ...
0
votes
1answer
13 views
Where to find the Package Installation Wizard in VS2008 for Deploying SSIS Package?
This is probably a dumb question, but my brain is just about fried for the day.
Where do I find the Package Installation Wizard in VS2008 to deploy my SSIS Package?
0
votes
0answers
28 views
Import and export wizard error in sql server 2008r2
I am getting this error when i am trying to import data from tally erp9.0 using import and export wizard in management studio 2008.
-1
votes
0answers
14 views
Data from Tally ERp9.0 to SQL Server [closed]
Can some guide me is there any chance to migrate data from tally ERP9.0 to SQL Server 2008. If possible please let me know how. I am very new to SQL Server. I am using SQL Server 2008r2 in windiws ...
1
vote
1answer
17 views
SSIS: Extract the target table of an OLE DB Destination object
I am trying to use the SQL Server SSIS API libraries to determine extac information from all of our packages including the destination tables that are being populated in a OLE DB Destination object.
...
-2
votes
0answers
17 views
Custom PipeLine Component - Destination - Methods aren't being excuted [closed]
I have created a custom pipeline component that when I have it in a package will run successfully. Even if I have a throw new Exception("ERROR!!"); in the preExecute and the ProcessInput methods... ...
0
votes
1answer
17 views
Error on while Installing SQL Server 2008 R2
I am getting this error when I am trying to install SQL Server 2008 R2. Any idea?
1
vote
1answer
31 views
SSIS (SQL Server 2008)
In SSIS, I want to use conditional split which is to filter Country ="USA".This works fine and it filters the table.But now i want to decode "USA" to "United States Of America" in resultant OLE DB ...
-3
votes
0answers
37 views
FTP Script Task 2008 C# [closed]
I been looking C# code that downloads and deletes files from an ftp server using a script task and found none.
FTP task fails when there isn't any file on the server
VB doesn't exist on BIDS 2008
1
vote
1answer
31 views
Implementing Merge Via SSIS
I have a Flat File and that will be split and will be put into three different tables, That is ok but here the problem is that if that record already exists there i need to update it else insert it , ...
0
votes
1answer
43 views
Loading comma separated .csv file into database
I was trying to load a .csv file into my database. It was a comma delimited file and for one of the columns there is a comma(,) in between the data just like Texas,Houston can some one help me how to ...
-1
votes
1answer
35 views
How to give file path from table dynamically in SSIS packages?
I want to process value "excel file location" (column) from Table and SSIS should refer column value path and load that excel data into destination table.
Purpose of this task is In future we just ...
0
votes
1answer
36 views
Filtering before join to avoid “multi-part identifier could not be bound” error
I am using SQL Server 2008 and trying to write a query in a SSIS Package data flow task to read data from one data base based on the result set from another DB.
I have multiple tables A, B, C, D, E ...
0
votes
0answers
49 views
An 'Execute SQL Task' insert doesn't fire insert trigger in SSIS package [closed]
I have an SSIS package that uses a 'Data Flow Task' to upload data from an Excel spreadsheet to a SQL Server 2008 table. There is a separate 'Execute SQL Task' step that takes the data from the first ...
1
vote
0answers
12 views
Is an upgrade mapping file necessary when upgrading custom components from SQL Server 2008 to SQL Server 2012?
I'm upgrading some SSIS custom components from SQL Server 2008 to SQL Server 2012.
According to MSDN:
Mapping the Versions of Your Custom Object for Upgrade:
SQL Server 2008 Integration ...
2
votes
1answer
56 views
SSIS API: How does one know what Interface to cast a __COMObject to?
Like this post, I am also trying to extract SQL from an SSIS package. I thought I would try the same code that was posted. It sounded like the code worked for him but was incomplete because it did not ...
1
vote
1answer
54 views
SSIS Data Flow performance slow vs select into
so I have a script:
select *
into my_archive_05302013
from archive_A
where my_Date = '05/18/2013'
and:
insert into archive_B (ID,my_date,field_n )
select ID, my_Date,field_n from ...
0
votes
0answers
46 views
Inserting in memory objects (datatable) to database by SSIS Packages
In Sql Server 2008, I need to create a large data mart.
I've written .NET Code (C#) for running all SELECT Stored Procs in parallel from code and join the results in datatable in memory.
I insert the ...
0
votes
0answers
36 views
SSIS: Mapping foreach variables containing null values to integers
I'm using SSIS and BIDS to load data from CSV file to database. My datasource have a column with integer nullable values. First I load those values in a recordset destination and later I iterate over ...
3
votes
1answer
50 views
variable stuck in SSIS package
I am writing my first SSIS package to translate data from an SQL View to a flat text file.
The flat text filename needs to be in the date format "[year][month][day][hour][minute][second][ms].txt".
I ...
0
votes
1answer
66 views
Modify the CSV file to add addtional comma using script task in SSIS
I have a CSV file in the following format
"Sometext","Sometext","Sometext","Sometext","Sometext","Sometext","Sometext",
...
1
vote
1answer
89 views
SSIS condtional split to skip rows in a datetime column which has numbers
I have a flat file source which is reading a .csv file. This file has a datetime column in which some rows have numbers. I want use a conditional split component to skip the rows which are having ...
1
vote
0answers
34 views
SSIS and IIS in different Server and trying to implement SSIS in ASP.net
I'm relatively new to SSIS so please go easy on me. We have 2 production server,one is for database and other one is for IIS. We are planning to develop SSIS package and going to implement it in the ...
0
votes
1answer
98 views
compare two excel files in a ssis “Foreach Loop Container”
Introduction : I have Multiple Excel files which loop through a Foreach Loop Container in SSIS Package.
The first Excel file Excel1.xlsx contains the old data (for example :I have a column named ...
1
vote
0answers
57 views
Why should changing Provider resolve intermitent connectivity error for OLE DB connection in SSIS?
From time to time, I am seeing this error when running an SSIS package from a SQL Server Agent Job:
SSIS Error Code DTS_E_OLEDBERROR. An OLE DB error has occurred. Error code: 0x80004005.
An OLE DB ...
3
votes
1answer
42 views
What are the consequences of using the table lock option with a fast load destination?
I'm trying to speed up a fact table load as part of an overall performance project. The table is just about 120 million rows about 100k are added each evening. The table is pretty heavily indexed.
...
0
votes
0answers
28 views
How to insert XML attribute matching values in SQL table using SSIS.
I have XML where I wanted data of some matched attribute which I wanted to dump into my SQL backup table
E.g. : S Node where N="AccountName"; //So value should be "abc" and N="Fcode";// value should ...
0
votes
1answer
45 views
How to read sql ce(.sdf file) database/table from SSIS package?
I want to read .SDF file(3.5) from SQL Server Integration Service 2008.
How can I do this?
Please provide me any link/tutorials for this.
2
votes
1answer
82 views
Inserting rows to other tables while importing in SSIS
I have a transactions table in a flat file like
ItemID ,ItemName ,CustomerID ,CustomerName ,Qty ,Price ,TotalValue
and target transaction table will have
ItemID,CustomerID,Qty,Price,TotalValue
...
1
vote
1answer
34 views
SSIS prefilter records before extraction
I have to migrate records from a table in Oracle to SQL Server 2008 R2. I already designed the solution that allows me to move the data and save a copy of the migrated IDs into a stage table.
Thanks ...
2
votes
1answer
43 views
table deletion and re-create in SSIS Package
I have a SSIS which in order to work has to have some specific tables. Therefore I have made an "Execute Sql Task" package which first verifies if table exists and has the specific number of columns, ...
0
votes
1answer
41 views
SSIS Job did not run properly
I have built a SSIS package to EXEC a SP in SQL 2008. When Run the package from BIDS, it generates all the results which insert into a table (took about 1 min). But when I scheduled to run as an Agent ...
0
votes
2answers
79 views
SSIS - how to make a connection string for your database server?
How do i make a connection string for my database server ? I want to know this so that i can save connection strings in a table and then use them later. Note - All my database servers don't need ...
0
votes
2answers
70 views
For each loop in SSIS - Need to understand ServerName and ConnectionString
I am trying to use a for loop to connect to different servers and then do some job for each server. In the "expressions" of the connection manager for my loop, i see ServerName and ConnectionString.
...
1
vote
2answers
94 views
SSIS ForEach loop - change connection inside a for loop
Task - There are 7 SQL servers, each of which have the same database. Consider a table Table_1 of the database. I want to take data from Table_1 of all the 7 servers and put it into Table_1 of Main ...
-1
votes
1answer
56 views
How can I import an image file into a table?
What is the best practice to insert an image from disk to the database using SSIS and BIDS 2008?
I have tried so far using an Script Component as Source and adding it an output column of type ...
5
votes
1answer
88 views
Upgrade custom SSIS Tasks from 2008 R2 to 2012
I have several custom SSIS Tasks and Components implemented for SQL Server 2008 R2. Now we want to switch to SQL Server 2012. First I tried just to open my DTSX packages in VS 2010 and no package ...
0
votes
1answer
108 views
Where can I find the SSIS Precompile Property for Script Tasks in SQL Server 2008?
I was getting an error after creating a Script Task in SSIS:
Validation error. Script Task : The binary code for the script is not found. Please open the script in the designer by clicking Edit ...
0
votes
1answer
157 views
SSIS package can be run using “Execute Package Utility” but not in an agent job?
I imported a SSIS package, which pump a local Sql server table to a remote Sql server, into MSDB SSIS storage and I can execute the package by right clicking and executing. However, it raises ...
0
votes
1answer
386 views
SSIS import multiple flat files to multiple tables
I have about 20 TXT files daily with different names and structure together.
Files Names --> Table Names
-----------------------------------------------------
Tbl-Sales-yymmdd-hhmmss.TXT --> ...
1
vote
0answers
105 views
SQL Server 2008 get file from ftp
We used SQL Server 2005 with the queries shown and bat file, but after passing to SQL Server 2008 64-bit we get some errors. When I searched it, people recommend to use SSIS, so I did but I can't get ...
1
vote
1answer
43 views
Why does variable of Data Type SByte using expression evaluate to 0?
I'm trying to set some variables of type SBYTE to null at runtime using an expression directly on the variable. The variable is scoped to the control flow.
Why does the variable evaluate to 0 instead ...


