March 30, 2005 at 2:25 pm
Comments posted to this topic are about the content posted at http://www.sqlservercentral.com/columnists/jbrown/flexibledtspackageswithperl.asp
April 2, 2005 at 6:52 am
Congrats, Jeremy! on being published!
K. Brian Kelley
@kbriankelley
April 4, 2005 at 12:10 pm
Thanks. I really enjoyed writing this article. I have a few good ideas on other articles I would like to write, so this may be the first in a "series".
April 5, 2005 at 7:11 am
Jeremy, good job on the article! The "2 AM" test is the highest of all tests!! If it passes, it must be good!!!
April 5, 2005 at 7:49 am
Thanks guys, I really appreciate it.
Also, sorry if you get a "side scroller". I tend to write string concatinations on one line in my code.
I'll try to watch out for this in the future.
April 5, 2005 at 8:59 am
Just got a good question in an EMail about ActivePerl licensing. ActivePerl is a free download from ActiveState and is provided for both commercial and non-commercial use.
See http://aspn.activestate.com/ASPN/docs/ActivePerl/EULA-Community_License.txt for licensing details on the ActivePerl package itself.
April 5, 2005 at 11:33 am
Great Article, have been looking for some more info on Perl DTS packages lately. One question for you, do you set the connection properties like this?
$Connection->ConnectionProperties("File Type") = 1;
$Connection->ConnectionProperties("Skip Rows") = 0;
$Connection->ConnectionProperties("Text Qualifier") = """";
In VBS its connection.ConnectionProperties("File Type") = 1
so from what I can tell this looks correct
April 6, 2005 at 11:41 am
Its actually more like...
$Connection->{ConnectionProperties}->{"File Type"} = 1;
$Connection->{ConnectionProperties}->{"Skip Rows"} = 0;
$Connection->{ConnectionProperties}->{"Text Qualifier"} = """";
But yeah, you get the general idea...
Viewing 8 posts - 1 through 7 (of 7 total)
You must be logged in to reply to this topic. Login to reply