Viewing 15 posts - 1 through 15 (of 32 total)
Even after I moved Microsoft.Office.Interop.Excel.dll file to GAC (C:\Windows\Assembly) folder, I'm still not able add it as a reference to my script task. Do I need to reboot the server?
December 4, 2011 at 6:33 pm
LocaleID property will let you handle such kind of conversions.
On the source flat file connection manager properties set localeid to English (United Kingdom).
Use data conversion transforormation task to...
March 10, 2009 at 8:03 am
I think you should check if metadata of both external columns and output columns is same or not on excel source.
March 9, 2009 at 10:36 pm
Use OLE DB Command Task to issue updates against your table in Data Flow task.
For more info look into
http://technet.microsoft.com/en-us/library/ms141138.aspx
http://www.sqlis.com/post/OLE-DB-Command-Transformation.aspx
March 9, 2009 at 10:33 pm
Check this link -
http://decipherinfosys.wordpress.com/2008/09/16/deploying-ssis-packages-in-sql-server-2005/
March 9, 2009 at 10:19 pm
SSIS packages are in msdb.dbo.sysdtspackages90
For details go to http://msdn.microsoft.com/en-us/library/ms181701(SQL.90).aspx
To launch Import/Export Wizard - Go to Start > Run > dtswizard
February 20, 2009 at 12:28 pm
Try Setting "Retain Same Connection" to true for connection properties in connection manager.
May 15, 2008 at 10:16 pm
You can use row count component, to store row counts in a variable.
what is the operation you are trying to perform after you get row counts?.
April 11, 2008 at 8:06 am
Do you have any Oracle sources?. Are you going to deploy SSIS on a 32-bit or 64 bit?. Tell us more about your environment,...
March 26, 2008 at 12:30 pm
To obtain only date part using script component use code below -
Row.Fieldname = Row.Fieldname.Date
March 20, 2008 at 1:52 pm
I think you should use Data Conversion transformation
March 20, 2008 at 1:37 pm
For Row count component you don't have to check any input columns. To obtain row count, just include variable name.
March 20, 2008 at 1:20 pm
Valek,
In your case create two variables 1)SqlStatement (string)
2)Schema (string).
For SqlStatement variable - in the properties - change "evaluate as an expression" to true and assign expression as
"SELECT * FROM...
March 19, 2008 at 1:39 pm
I think you would like to implement checkpoints in your package.
check for "checkpoints" in control flow properties window.
March 17, 2008 at 7:49 am
Viewing 15 posts - 1 through 15 (of 32 total)