Viewing 11 posts - 1 through 11 (of 11 total)
While deploying are you selecting connection manager for excel file in configuration file? If you are selecting connection manager for excel file in configuration file, make sure that username, password...
October 21, 2008 at 11:03 pm
Use question mark in sql statement as
Select ToEmailID
FROM dbo.Table1
WHERE PackageName = ?
Go to parameter mapping. Add a parameter. Rename parameter name to 0. Select system variable for package...
October 15, 2008 at 2:22 am
Did you try accessing Oracle SP by creating a system DSN?
Create a ODBC data source for Oracle(Control Panel -> Administrative Tools -> Data Sources(ODBC) -> System DSN -> Add...
October 13, 2008 at 1:55 am
You can use OLEDB command for the same.
Write a stored procedure which will insert a record into table and then select @@IDENTITY value as output parameter.
Create a new...
October 8, 2008 at 2:36 am
It is 1252
October 7, 2008 at 4:03 am
Use the below transformation in derived column and then use data conversion to convert to Date data type
SUBSTRING([Column 0],1,2) + "/" + SUBSTRING([Column 0],3,3) + "/" + SUBSTRING([Column 0],6,4)
where Column...
October 3, 2008 at 2:00 am
ODBC can be accessed in SSIS using ADO.NET connection manager.
To create ADO.NET connection for ODBC, Add new ADO.NET connection manager, go to Provider drop down, select ODBC Data Provider...
September 24, 2008 at 2:37 am
Check for memory settings used in SSIS data flow. For more details check http://msdn.microsoft.com/en-us/library/ms141031.aspx
September 23, 2008 at 6:44 am
If you want call the web service inside Data Flow Task then you need to create its web proxy and then use web proxy in Script component.
If you need...
September 23, 2008 at 6:39 am
You can add derived column transformation between source and destination to combine all source columns together.
Or you can write a sql query in Source to combine columns from source and...
September 21, 2008 at 11:57 pm
Did you check for Lookup Configure Error Output option is set to Redirect Row? Set all columns to Redirect Row on error.
September 19, 2008 at 11:08 pm
Viewing 11 posts - 1 through 11 (of 11 total)