Viewing 15 posts - 106 through 120 (of 157 total)
When I was was consulting in State government, my manager was enthusiastically nontechnical. I think that he looked at the database as some magical construct from which I apparently...
September 30, 2008 at 7:59 am
I was a VB developer for a long time before I began working with T-SQL (and PL/SQL for that matter), but I've yet to find a need for CLR usage...
September 15, 2008 at 8:33 am
If you know the fields into which the file is to be parsed, you can use a derived column transformation to validate field contents for type, range, domain, etc. ...
September 4, 2008 at 11:38 am
I regularly read the blog of John Halamka, the CIO of Harvard Medical School. Just this week, he posted about taking an un-wired vacation as CIO: http://geekdoctor.blogspot.com/2008/08/connectivity-holiday.html
Sadly,...
August 29, 2008 at 8:36 am
While I am of the opinion that what I do in my non-work time is none of my employer's business, I am not so naive as to think the world...
August 1, 2008 at 7:15 am
If you have the freedom to add a component to your flow, you might try using the Row Number Transformation, a free component from Konesans (http://www.konesans.com/rownumber.aspx).
July 10, 2008 at 2:16 pm
In my experience, those who refer to anyone in the hardware and/or software industry as an "IT guy" simply don't understand exactly what it is we do. I've never...
June 26, 2008 at 7:32 am
Unfortunately, the 'Keep NULLS' option only applies on an OLEDB destination, not an OLEDB source. That would work going flat file to db, but not db to flat file....
May 23, 2008 at 9:04 am
If you want the text 'null' to appear instead of an empty output field, you could send each column through a derived column transform: ISNULL([SomeField]) ? "null" : [SomeField]
May 22, 2008 at 8:56 am
If necessary, you could follow the Execute Process task with a File System task to move and/or rename the file. The source and destination paths can be mapped to...
May 22, 2008 at 6:48 am
One way that you can control the output location of the file is by exposing the connection manager behind your output flat file as a value in a configuration file....
May 21, 2008 at 2:37 pm
There's a post about this on the mysql forum that may help:
May 21, 2008 at 2:17 pm
It looks to me like some of the ODBC errors I used to see at a former position. Have you verified your connection string or DSN that you're using...
May 21, 2008 at 2:06 pm
In our shop use 7-zip (http://www.7-zip.org/), which is a freeware zip utility with command line support. It will likely do what you need if you don't already...
May 20, 2008 at 1:42 pm
Viewing 15 posts - 106 through 120 (of 157 total)