Applying Filters From Excel Workbook In SSIS Package

Apr 15, 2008

I am new to SSIS and I need a jump start on how I can use filters to filter out some data based on criteria in the form of EXCEL Work Book.

I have a Owners table for which the filters of Brand, Number etc are applied and the records which pass the filters are to be updated in to the new table.

Any ideas on how we can do this??? Thanks in Advance..

View 3 Replies


ADVERTISEMENT

Integration Services :: How To Split Excel Workbook Into Individual Sheets Using SSIS 2008

Jun 29, 2015

How to split excel workbook into individual sheets using SSIS 2008 without using  " Microsoft.Office.Interop.Excel"

The Workbook need to be broken into multiple sheets available in the workbook.

The SSIS package will read the excel workbook and split into individual sheet  and rename the sheet with the name available in the workbook..

View 6 Replies View Related

How To Skip The First Row In An Excel Workbook

Jul 24, 2007



Hi All,

I have a excel workbook with many sheets, in each sheet the first row has to be skipped and the second row contains the column information and thereafter are the records.



The Excel Source in SSIS just gives an option: check if the first row has column names.

But the first row for me is junk -- a link to parent or first sheet-- and has to be skipped and the second row has the column info.



How can this be accomplished .... any suggestions would be of great help!!!



Sample:






Main








id

desc

price

date


1

apple

1.0

1/1/1900


2

banana

2.0

1/1/2000



Main in the first row is actually a hyperlink ... once we click this it takes us to the first sheet in the workbook which has all sheet names as contents.



I am stuck and not sure how to skip this!!

View 5 Replies View Related

Proc Results To Excel Workbook

Jan 12, 2007

Hello,

I have tried to use a DaraReader Source to execute a SQL Server 2000 proc, and send the results to an Excel Destination.

The proc is named spv_CDGetFuelManDuplicates. Within the proc, temporary tables are created and dropped. When I attempt to set 'Exec dbo.spv_CDGetFuelManDuplicates' for the SqlCommand property of the DataReader, I get an error message indicating that my temporary tables are invalid objects.

The DaraReader is using an ADO.NET Connection Manager.

Should I be using an Execute SQL Task instead?

Thank you for your help, the proc code is below.

cdun2

********************************

alter PROCEDURE dbo.spv_CDGetFuelManDuplicates

AS

--Isolate Accounts and Contact Info per the View criteria

SELECT

RTRIM(Acctcode) AS AcctCode,

RTRIM(CompanyName)AS CompanyName,

MMS#, RTRIM(Phone) AS Phone

INTO #CorrectAcctCodes

FROM dbo.DailyAccountsDownload

WHERE

(AcctCode BETWEEN 'IQ001' AND 'IQ999') OR

(AcctCode BETWEEN 'QI001' AND 'QI999') AND (AcctCode NOT IN ('QI125', 'QI601', 'QI603', 'QI613', 'QI623', 'QI653', 'QI697')) OR

(AcctCode BETWEEN 'DQ001' AND 'DQ999') AND (AcctCode NOT IN ('DQ011')) OR

(AcctCode BETWEEN 'FQ002' AND 'FQ999') AND (AcctCode <> 'FQ011')

--Isolate duplicate phone numbers

--per the view criteria

SELECT

RTRIM(Phone)AS Phone, COUNT(*) AS RecordCount

INTO

#DupPhoneNumbers

FROM

dbo.DailyAccountsDownload

WHERE

(AcctCode BETWEEN 'IQ001' AND 'IQ999') OR

(AcctCode BETWEEN 'QI001' AND 'QI999') AND (AcctCode NOT IN ('QI125', 'QI601', 'QI603', 'QI613', 'QI623', 'QI653', 'QI697')) OR

(AcctCode BETWEEN 'DQ001' AND 'DQ999') AND (AcctCode NOT IN ('DQ011')) OR

(AcctCode BETWEEN 'FQ002' AND 'FQ999') AND (AcctCode <> 'FQ011')

GROUP BY

RTRIM(Phone)

HAVING

(COUNT(*)>1)

--Isolate duplicate Company Names

--per the View criteria

SELECT

RTRIM(CompanyName)AS CompanyName,

COUNT(*) AS RecordCount

INTO

#DupCompanyName

FROM

dbo.DailyAccountsDownload

WHERE

(AcctCode BETWEEN 'IQ001' AND 'IQ999') OR

(AcctCode BETWEEN 'QI001' AND 'QI999') AND (AcctCode NOT IN ('QI125', 'QI601', 'QI603', 'QI613', 'QI623', 'QI653', 'QI697')) OR

(AcctCode BETWEEN 'DQ001' AND 'DQ999') AND (AcctCode NOT IN ('DQ011')) OR

(AcctCode BETWEEN 'FQ002' AND 'FQ999') AND (AcctCode <> 'FQ011')

GROUP BY

RTRIM(CompanyName)

HAVING

(COUNT(*)>1)

--Result with duplicate company or phone numbers

SELECT

Acctcode, CompanyName, MMS#, Phone

FROM

#CorrectAcctCodes

WHERE

Phone IN (SELECT Phone FROM #DupPhoneNumbers)

OR

CompanyName IN (SELECT CompanyName FROM #DupCompanyName)

ORDER BY

Phone, companyname

--Drop the temp tables

DROP TABLE #CorrectAcctCodes

DROP TABLE #DupCompanyName

DROP TABLE #DupPhoneNumbers

View 2 Replies View Related

How?-- SQL Read/import Excel Worksheets Within One Workbook???

Feb 10, 2005

Hi all,
I have a huge data set captured in excel file which contains 90 worksheets.
There are total 3 worksheets I need to work on.

I need to load/transfer them into a table. How do I import them into SQL?
Can SQL read/load excel by reading each worksheet (sheet1, sheet2...sheet90)?

Any suggestions are welcome and highly appreciated!

shiparsons

View 4 Replies View Related

DTS To Create New Excel Sheet In Existing Workbook

Jan 12, 2004

Has anyone been able to create a DTS that will create a new sheet within an existing Excel file. I want one Excel file with multiple tabs referencing the beginning of each week and growing. The name needs to be dynamic so as to not overwrite previous sheets (tabs) in the file.

I have a current ActiveX script that will move the data to a dynamic name (date), I just can't create the table (sheet/tab) to move the data to.

Any help would be appreciated.

-Mark

View 6 Replies View Related

Import Excel Workbook / Form Into Server

Oct 20, 2014

My database has mirgrated from Access to a SQL Server. As of now, we use SharePoint for our data entry form and it works great exporting an Excel workbook to my desktop and then import to the SQL Server and drop it in the tables that apply. The management team wants to get rid of SP and have all 110 project owners use a template Excel workbook I created and then anytime they have new projects or changes to existing they use this template and email it to me. The problem is the template has partial text, combox boxes, checkboxes and drop-down boxes. In Access I can spend a couple weeks creating VBA code to import this but not sure how this is done in SQL Server. The 2nd issue is why in the heck would they even want to go this route. This seems to be a coding nightmare, then I have to store all the Excel workbooks somewhere for history sake. It just seems to me that keeping the SP site is much smarter for them and for me. My question is not related to SP because I am going to push to keep that up anyway. I just want to know is it possible for SQL Server to import a workbook that has form functions on it easily or is it a stored procedure coding nightmare?

View 5 Replies View Related

Integration Services :: Extract Data From Database To And Excel Workbook

Jul 24, 2015

Why does it take me 4 hours to set up an SSIS package that I can run from a SQL job to extract data from a SQL database to and Excel workbook.  Shouldn't this be easy to do with 2 Microsoft products?  Writing the query to extract the data takes 10 minutes, the rest of this process should take less than that. 

I should be able to create a new job that runs my query (I can actually do that) and saves the data to an Excel workbook. Why can't I do that?

View 3 Replies View Related

Power Pivot :: How To Change / Edit Excel Workbook Data Connection String

May 28, 2014

One of my excel 2013 power pivot report was migrated from old server to new server after migration i changed the excel power pivot connection string to connect with new server but the workbook connections is still taking the old connection string of old server and there is no option of changing workbook connection string .

I am able to edit the powerpivot connection but workbook connections are not getting updated they are still taking old server connection string.

View 12 Replies View Related

Getting The Filters Available In SSRS While Exporting Reports To Excel

Oct 10, 2007



Hi All,
I am Exporting the SSRS report into Excel in my application, But the Parameters(which acts as a filter) which are available in SSRS report is not coming in the Excel. Is there any other settings need to be done to get those filters while exporting to Excel.
Please help me with this issue.Thanks in Advance.
-Mahendra

View 4 Replies View Related

Analysis :: Browsing Cube In Excel With Report Filters

Apr 29, 2015

I am built the cube and processed. The fact table has 2 keys from the same dimension table.

My customers asked me that they want to browse the cube with report filters. The scenario is very strange.

They want to filter on same dimension with different conditions.

For example, they want to use the condition as ProductCode IN (...) and ProductName NOT IN (...)

How can I do this when browsing the cube in excel or any where?

View 2 Replies View Related

SSIS Package With Excel Destination Is Not Running From SQL Job.

Apr 11, 2008

Hello,

I have created a SSIS package which is getting data from SQL Server table to Excel File.

Step 1 : using Oledb to get records.
Step 2 : created Excel Connection and Excel Destination component
Step 3 : Configured the Excel File Path using variables.
Step 4 : Changed the property 64 bit FALSE


When try to run from BIDS it is running fine.
But
It is not running when try to run from SQL JOB.

The following Error i got:


: SSIS Error Code DTS_E_CANNOTACQUIRECONNECTIONFROMCONNECTIONMANAGER. The AcquireConnection method call to the connection manager "Excel Connection Manager" failed with error code 0xC0202009. There may be error messages posted before this with more information on why the AcquireConnection method call failed. ::: component "Excel Destination" (588) failed validation and returned error code 0xC020801C. ::: One or more component failed validation. ::: There were errors during task validation. ::




Kindly give solution ASAP.


Thanks
Thiru

View 7 Replies View Related

Exporting Data From SSIS Package To Excel

Apr 23, 2007

I currently have a export that takes data from my SQL Server 2005 DB and exports it into Excel. This process works correctly. My excel template has the first row headers and the data is dumped in the row after the header. I would like to know if it is possible for me to add borders around my data without doing it within the template? I don't know how much data is going to be exported so I can't put borders within the template. I put borders around the headers to see if it will copy the formatting down to the data and it didn't. Thank You for any help.

View 6 Replies View Related

Executing An SSIS Package Programatically Through Excel VBA?

Jan 29, 2008

Hi Everyone:

Is it possible to create a package through the SQL Server Business Intelligence Studio, and then execute that package through an Excel file (by calling the package through VBA?).

I need some advice on the ways I can execute the package other than via command line utilities. Can you use Visual Basic 6.0? .NET?

Please advise,
Jason

View 5 Replies View Related

Regarding Ssis Package Error While Exporting To Excel From Sqlserver

Oct 23, 2007


I am exporting data to excel with ssis package.In my system it is working fine., but in server it is giving this error.All the connection string for database and excel file path are coming correct in run time with the help of package configeration.
one more thing is if we execute directly the package by double clicking in server it is working, but through my application it is giving this error.


An OLE DB error has occurred. Error code: 0x80040E09.
The ProcessInput method on component "Excel Destination" (22) failed with error code 0xC0202009. The identified component returned an error from the ProcessInput method. The error is specific to the component, but the error is fatal and will cause the Data Flow task to stop running.
Thread "WorkThread0" has exited with error code 0xC0202009.

someone help me.. thanks in advance.

View 4 Replies View Related

SSIS Package From Excel To Database (Error Message)

May 16, 2008

Hi to all!

When I want to execute my package as a job in a SQL Server 2005, I get this Message:

Executed as user: EDAsvcSQLServerPMS. ....00.3042.00 for 64-bit Copyright (C) Microsoft Corp 1984-2005. All rights reserved. Started: 09:46:00 Error: 2008-05-16 09:46:01.41 Code: 0xC0048020 Source: Data Flow Task Data Flow Task (DTS.Pipeline) Description: The version of component "Excel Source" (1) is not compatible with this version of the DataFlow. End Error Error: 2008-05-16 09:46:01.54 Code: 0xC0048020 Source: Data Flow Task DTS.Pipeline Description: The version of component "Excel Source" (1) is not compatible with this version of the DataFlow. End Error Error: 2008-05-16 09:46:01.54 Code: 0xC0048021 Source: Data Flow Task Excel Source [1] Description: The component is missing, not registered, not upgradeable, or missing required interfaces. The contact information for this component is "Excel Source;Microsoft Corporation;Microsoft SqlServer v9; (C) 2005 Microsoft Corporation; All Rights Reserved; http://ww... The package execution fa... The step failed.


The package works fine on the developed server but when I try it out on our integration server it won't go through without these errors. The protection level is set on DontSaveSensitiv and allready I had an error less.

I hope someone can help me, because I can't find anything with google.
Thanx!

Regards,
swisskiwigirl

View 6 Replies View Related

Excel File Stays In Use After I Import It Using A SSIS Package

Dec 28, 2006

Hello everybody...
I have a very simple SSIS package that loop throught the worksheets of an Excel file and insert the data into a SQL server 2005 table.

The SSIS is very simple and works fine the problem is that after the Package executes if I double click on the Excel file imported I have the message that the file is in use.

I think that the Excel connection manager of the package doesn't release the Excel resourse but this is only a guess..

Do am I right? If yes how can I release the resource?

Thank you very much

Marina!





View 11 Replies View Related

Migrating SSIS Package Using Excel Interop To Server

Apr 28, 2008

I applied the following info and created an SSIS package that allows COM control of Excel:

unable to add reference to Microsoft Excel in VSA

The package runs locally, and can be executed successfully after it is migrated to the server, but both of these processes use local memory space (I think). When I try to run the package via a job, it fails with the following error:

-------------------------------------------------------------------------------------------

Date 4/28/2008 10:34:04 AM

Log Job History (J_MSR_UHC_PC)

Step ID 1

Server SFA30229SQL003

Job Name J_MSR_UHC_PC

Step Name S_MSR_UHC_PC

Duration 00:00:05

Sql Severity 0

Sql Message ID 0

Operator Emailed

Operator Net sent

Operator Paged

Retries Attempted 0

Message

Executed as user: ALEREsql_admin. ...on 9.00.3042.00 for 64-bit Copyright (C) Microsoft Corp 1984-2005. All rights reserved. Started: 10:34:04 AM Error: 2008-04-28 10:34:06.73 Code: 0xC001405F Source: Description: Failed to decrypt an encrypted XML node because the password was not specified or not correct. Package load will attempt to continue without the encrypted information. End Error Progress: 2008-04-28 10:34:09.34 Source: Data Flow Task Validating: 0% complete End Progress Error: 2008-04-28 10:34:09.45 Code: 0xC0202009 Source: msr_uhc_pc Connection manager "Excel Connection Manager" Description: SSIS Error Code DTS_E_OLEDBERROR. An OLE DB error has occurred. Error code: 0x80040154. An OLE DB record is available. Source: "Microsoft OLE DB Service Components" Hresult: 0x80040154 Description: "Class not registered". End Error Error: 2008-04-28 10:34:09.45 Code: 0xC020801C Source: Data Flow Task... The package execution fa... The step failed.

----------------------------------------------------------------------------------------------

Microsoft.Office.Interop.Excel.dll has been added to the assembly directory.

Any ideas would be appreciated.

TruckeeBill

View 4 Replies View Related

SQL Server Job Fails When SSIS Package Is Having Excel Connection On 64 Bit Machine

May 29, 2008

Hello,

I've SQL Server running on 64 bit. When I schedule a package to run every night which has excel data transformation, it fails. Initally I had a problem running through BIDS also but then I found in project properties you can switch this off by specifying property Run64BitRuntime by false. After going through some forums, many have suggested that when scheduling a package, modify the command arguments to run as 32bit runtime. These command argumnents can be generated from making use of tool DTExecUI.exe Even after using generated command arguments from this tool, it doesn't help.

Below is my command argument and the error message generated.

/FILE "D:DevDWLoadAll.dtsx"
/CONFIGFILE "D:DevDWdevCongig.dtsConfig"
/CONNECTION "customers.dtsx";"D:DevDWcustomers.dtsx"
/CONNECTION "Addresses.dtsx";"D:DevDWAddresses.dtsx"
/CONNECTION "Counties.dtsx";"D:DevDWCounties.dtsx"
/CONNECTION "Countries.dtsx";"D:DevDWCountries.dtsx"
/CONNECTION "ExcelLoad.dtsx";"D:DevDWExcelLoad.dtsx"
/CONNECTION Test;""Data Source=TestDW;Initial Catalog=TestStagingDW;Provider=SQLNCLI.1;Integrated Security=SSPI;Auto Translate=False;"" /MAXCONCURRENT " -1 " /CHECKPOINTING OFF /REPORTING E



Message
Executed as user: DWUserSQLServiceAcc. ...0.3042.00 for 64-bit Copyright (C) Microsoft Corp 1984-2005. All rights reserved. Started: 00:05:00 Error: 2008-05-28 00:06:02.31 Code: 0xC0202009 Source: Excel Load Connection manager "Excel Connection Manager" Description: SSIS Error Code DTS_E_OLEDBERROR. An OLE DB error has occurred. Error code: 0x80040154. An OLE DB record is available. Source: "Microsoft OLE DB Service Components" Hresult: 0x80040154 Description: "Class not registered". End Error Error: 2008-05-28 00:06:02.31 Code: 0xC020801C Source: Copy Data Excel Source [5052] Description: SSIS Error Code DTS_E_CANNOTACQUIRECONNECTIONFROMCONNECTIONMANAGER. The AcquireConnection method call to the connection manager "Excel Connection Manager" failed with error code 0xC0202009. There may be error messages posted before this with more information on why the AcquireConnection method call failed. End... The package execution fa... The step failed.

Any suggestions???

Circuit

View 3 Replies View Related

Transact SQL :: How To Load Data From Excel To Database Without Using SSIS Package

May 26, 2015

I have 5 tables in Academy database. Like

Academy details tables, Academy Students table, Academy Student Parents table, Academy class Section Table, Academy Staff table.

I have created the tables and data into the database. And Now I need to prepare a Excel sheet to upload data into the these tables. How to prepare the Xlsx sheet and how to upload into database without using SSIS package.

View 15 Replies View Related

SQL Server 2008 :: SSIS Package Loading More Than 25000 Rows Using Excel ACE 12 Driver

Jun 1, 2015

I have a SSIS package running well in production however sometimes the package will fail when the excel file contains more than 25000+ rows.

The SSIS package is run by SQL Server Agent and is set to run in 32bit mode.

I checked the data by loading in batches and all data loaded successfully. But the funny thing is when I run the same package on my local development PC using BIDS and the same data file. The package loads all 25000+ rows successfully.

Is there some setting that is preventing all rows loading in the server environment.

View 4 Replies View Related

Integration Services :: SSIS 2008 R2 Package Is Pushing Data Down In Excel 2010 64 Bit

Jul 2, 2015

I have package which pulls data from db table and creates a excel file extract.The flow is like this - A excel file template sits in the input folder folder for processing .The package starts by dropping excel sheet in the excel(which is clearing any data and columns available) once that is done it has script task which creates a new columns for the sheet and gives a sheet name as well .Then a execute sql task runs and pumps data into a table which  serves as a source for the excel extract process .The excel extract process involves pulling data from the table and doing data conversion before it moves it into the oledb destination (excel file on file server).When I run the package I go and see that data is pushed down . I see top rows say 100 are empty and data appears after say 100 rows .

I tried deleting excel file and replacing with new one empty with columns and sheet name only but still it doesnt work?I am trying to understand what is making ssis behave like this and what can I do overcome the problem ?I read on google that we need to bring in file system task will move a template to working directory which is input folder but I dont want it to incorporate that logic as we need to push this package to production ASAP with very minimal change.

View 3 Replies View Related

Integration Services :: SSIS Package Which Read Excel Files Fails On Server Agent

Oct 19, 2010

I have a SSIS package which reads an excel file and loads data into a table using script component(C#) as a source. The package runs without any errors when I manually run it on my machine and on the server. But the package fails when run as a SQL Server Agent job.

I tried all the possible fixes I found on the web but still can't get it to work.

View 14 Replies View Related

Applying SSIS In Application

Dec 13, 2006

Is there anyway I can integrate the ssis in Web applications or Windows applications?

Thanks

View 1 Replies View Related

SSIS Doesn't Start After Applying Sql2k5 Sp1

May 9, 2006

Got following error in windows app event log when tried to start SSIS after applying sql2k5 sp1, event id is 260:

Microsoft SSIS Service failed to start.
Error: Method 'GetVersionInfo' in type 'Microsoft.SqlServer.Dts.Server.DtsServer' from assembly 'MsDtsSrvr, Version=9.0.242.0, Culture=neutral, PublicKeyToken=89845dcd8080cc91' does not have an implementation.

Anyone got same issue and how to solve it?

View 1 Replies View Related

Job Running SSIS Package Keeps Failing But The SSIS Package By Itself Runs Perfectly Fine

Aug 30, 2006

Hey, I've a few jobs which call SSIS packages. If I run the SSIS package, it runs fine but if I try to run the job which calls this package, it fails. Can someone help me troubleshoot this issue? None of my jobs that call an SSIS package work. All of them fail.

Thank you

Tej

View 7 Replies View Related

Excel Destination Appends The Excel File Everytime A Package Is Executed

Dec 18, 2006

i have an SSIS package that exports to an excel file. This works fine. the problem is that it appends the data instead of overwriting the file. Is there any way to overwrite the file like you can with a flat file? I have to email the file everyweek and don't want to have to clear it out manually. Any help would be appreciated

View 2 Replies View Related

SSIS Doesn`t Start After Applying SQL Server 2005 SP1 Error Message 7000 Service Control Manager

Apr 27, 2006

SSIS doesn`t start after applying SQL Server 2005 SP1



I get an error Message in event log

event id 7000 source: Service Control Manager Type: Error

Message:

The SQL Server Integration Services service failed to start due to the following error:

The service did not respond to the start or control request in a timely fashion.

For more information, see Help and Support Center at http://go.microsoft.com/fwlink/events.asp.



regards

Lothar Belle

View 4 Replies View Related

Use A DTS Package To Create An Excel, Which Has In The Filename The Date The Package Is Ran

Dec 19, 2006

I am trying to create a DTS Package which will run a SQL query and export the results to an Excel file.  I would like to the name of the excel to be "dynamic".  What I would like is for the name to be ChronicDownSiteReport - mmddyy.xls.  The mmddyy is the date which the package is executed.
 How can I do this? 
Also, I want this package to be excuted at 1am every Sunday Morning.  I have attempted to schedule this to run, but when I come to work on Monday, the excel file is not present and the email, which is sent telling me that the file was created is not in my mailbox. 

View 2 Replies View Related

Integration Services :: How To Upload Excel File Using SSIS With Out Excel Installed On Server

Jul 25, 2015

Trying to upload excel in server where excel is not installed. BIDs was there in the server, when i am trying to craete Excel source I am not able.what the workround for this.. How to upload excel without excel installed on the server.

View 4 Replies View Related

Integration Services :: SSIS - Read Multiple Excel Sheets From One Excel File

Sep 13, 2015

We have 10 sheets in Excel File and 10 sheet contains errror data. How to load 9 sheets data in to 1 destination and error data in to other destination?

View 4 Replies View Related

SSIS - DataFlowTask - Excel Source - Dynamic Excel Template

Mar 13, 2008



Hi,

I am creating an SSIS package witha a Dataflow task, which reads from an Excel source and then uses script component to dumpt the data to multiple tables in Sql Server database

I need to some how make my Excel source dynamic, that is my excel template which i would be using to map the excel columns to script component's input columns would be dynamic..

In other words, I should be able to define the Excel Source, Column Mapping Information, Precedence constraint to the Script component dynamically

Please suggest how could i accomplish this


Regards,
Kalyan

View 8 Replies View Related

Integration Services :: Excel Column Turns To Blank / NULL While Import Using SSIS Excel Source 2008

Jul 6, 2015

While importing data from Excel source , some column is getting null value even though excel column has value.To Resolve the issue we tried with

HKEY_LOCAL_MACHINESOFTWAREWow6432NodeMicrosoftOffice14.0Access Connectivity EngineEnginesExcel

1.Change the Value  of the Row TypeGuessRows from 8 (Default value) to 0  and ImportMixedType = text

• xls
HKEY_LOCAL_MACHINESOFTWAREMicrosoftJet4.0EnginesExcel

1.Change the Value  of the Row TypeGuessRows from 8 (Default value) to 0  and ImportMixedType = text

the connection string of the excel

UPPER(REVERSE(SUBSTRING( REVERSE(@[User::VarInputExcelFile]), 1, 5) ) ) == ".XLSX" ? "Provider=Microsoft.ACE.OLEDB.12.0;Data Source=" + @[User::VarInputExcelFile] + ";Extended Properties="Excel 12.0;HDR=Yes;IMEX=1";":"Provider=Microsoft.Jet.OLEDB.4.0;Data
Source=" + @[User::VarInputExcelFile] + ";Extended Properties="EXCEL 8.0;HDR=Yes;IMEX=1";"

by doing the above setting also , the column is coming as null from excel source even though there is data in excel.

View 2 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved