Viewing 15 posts - 91 through 105 (of 285 total)
Try this:
(year(yourDatetime) * 10000)+
(month(yourDatetime) * 100)+
Day(yourDatetime)
see http://www.bidn.com/blogs/MikeDavis/ssis/236/convert-date-to-string-or-integer-in-ssis-expressions
June 30, 2010 at 12:47 pm
I do not think that you can use the SSIS type conversion functions or the Data Conversion component to convert these 2 types. If you are storing a datetime...
June 30, 2010 at 12:15 pm
Are all of these flat files and tables identical? Because the Data Flow contains meta data about the external sources and destinations. You cannot loop through files and...
June 28, 2010 at 12:08 pm
You can add a Script Component in your Data Flow to standardize your date format. Select a "Transformation" type. Select all of the input fields. Make the...
June 24, 2010 at 10:10 am
You have to write the file back to disk. Add this:
System.IO.File.WriteAllText(fn, t)
June 24, 2010 at 7:23 am
I think the Unix format just uses an <LF> as a row terminator instead of the Windows <CRLF>. You should be able to select <LF> as your row terminator...
June 23, 2010 at 9:28 am
I think the package configuration data can only be saved at design-time. I do not think there is an SSIS runtime method that will update the config file based upon...
June 23, 2010 at 8:02 am
Do you want to update the config file prior to running the package, or do you want to compute the filename in the package and then save it back to...
June 21, 2010 at 7:15 am
It looks like your job is running in the context of the SQL Agent service logon which, in your case, is the local system account. This account would...
June 21, 2010 at 6:27 am
This is something I just learned the other day in another post but haven't had a reason to use yet. You can use .NET Impersonation. It gives you...
June 16, 2010 at 7:24 am
A little progress...now the other system is recognizing the correct login account, but apparently this account does not have the necessary permissions to log on to that system. I...
June 14, 2010 at 6:54 am
Elliott W (6/11/2010)
June 11, 2010 at 12:20 pm
The temp table should work with either type. A #table is visible only to the connection that created it. A ##table is available to all connections as long...
June 11, 2010 at 7:31 am
I don't know if this registry hack works with SSIS or not - I haven't tried it:
http://searchwinit.techtarget.com/tip/0,289483,sid1_gci1059475,00.html
June 11, 2010 at 7:11 am
Maybe the File System Task is not the way to go. You might be better off writing a small BAT file. Use the NET USE command to map...
June 11, 2010 at 7:02 am
Viewing 15 posts - 91 through 105 (of 285 total)