1,675
reputation
172 views

Registered User

name
member for 1 year
seen 7 hours ago
website
location
age
Dec
8
revised Perl DBD::ODBC Issues with Oracle Date Formats
added 37 characters in body
Dec
8
revised Perl DBD::ODBC Issues with Oracle Date Formats
deleted 4 characters in body
Dec
8
answered Perl DBD::ODBC Issues with Oracle Date Formats
Dec
7
comment How to Install DBD::Oracle in Strawberry Perl
Though I don't know why it's not listed at UWinn: cpan.uwinnipeg.ca/search?query=dbd-oracle&mod…
Dec
7
comment How to Install DBD::Oracle in Strawberry Perl
It's not a rumor. And I've just used ActiveState's ppm to upgrade to DBD-Oracle 1.23.
Dec
7
comment How to implement sql LIKE qualifier with placeholdes for an array?
or in one line: chomp(my @l_names = <FH>);
Dec
5
comment Can someone copyright a SQL query?
@Azder - s/2009/$this_year/ (or some similar variation of it) will work on almost any machine if you have the right utilities installed. E.g., I have sed and perl installed on my windows machine. Either can be easily installed for free.
Dec
5
revised How to Install DBD::Oracle in Strawberry Perl
edited body
Dec
4
comment Can someone copyright a SQL query?
Your school district likely has a lawyer...ask him/her. I'd ask the lawyer if the "writtend" consent clause has any legal meaning or enforceability.
Dec
4
answered Can someone copyright a SQL query?
Dec
4
answered How to Install DBD::Oracle in Strawberry Perl
Dec
3
comment informatica powercenter vs custom perl ETL job?
Ville M: yes it has a nice GUI that would be tough to just "throw together" quickly. The thing is though that you could quickly throw together the 20% of the app in a custom language that you'll use 90% of the time. And with a custom solution you'll still be able to do easily things that are totally bass ackwards in Informatica or what it can't do at all.
Dec
3
comment How can I get the second-level keys in a Perl hash-of-hashes?
@friedo - I think the point of this answer is that it assumes arbitrary depth. And although an iterative solution might be more efficient, a recursive solution is more natural, and worrying about stack frames might be premature optimization.
Dec
3
comment How can I get the second-level keys in a Perl hash-of-hashes?
$bean is a scalar. You are trying to assign an array to it. Either change the name to %bean, or change the parens to curly braces.
Dec
3
comment How do I call a function name that is stored in a hash in Perl?
I mostly agree with Michael, so I've updated my answer to reflect that. I've never actually used the shorter way except to see that it works, but I've used the longer way many times.
Dec
3
revised How do I call a function name that is stored in a hash in Perl?
added 97 characters in body; added 9 characters in body
Dec
2
accepted How do I call a function name that is stored in a hash in Perl?
Dec
2
answered How do I call a function name that is stored in a hash in Perl?
Dec
2
comment How can I make Perl functions that use $_ by default?
In sub trim() { s!\s+$!! for @_; @ }, @_ is an alias for the original variables, so you are actually modifying the variables passed in.
Nov
25
answered How do I insert values from a hash into a database using Perl’s DBI module?
Nov
19
revised SQL*Plus inside Perl script
added 91 characters in body
Nov
18
revised How can I list files under a directory with a specific name pattern using Perl?
added 4 characters in body
Nov
17
revised SQL*Plus inside Perl script
added 4 characters in body; added 51 characters in body
Nov
14
revised SQL*Plus inside Perl script
deleted 3 characters in body; deleted 29 characters in body; added 57 characters in body
Nov
13
answered SQL*Plus inside Perl script
Nov
12
comment In Perl, how can I get the fields in this CSV string into an array without spaces?
See my map comment on Paul Nathan's answer.
Nov
12
comment In Perl, how can I get the fields in this CSV string into an array without spaces?
s/// will transform the elements in @groups, therefore this is a useless use of map. You can just do: s/^\s+//, s/\s+$// for @groups; Or use Filter in Algorithm::Loops.
Nov
10
comment How can I install Perl’s DBI module on Ubuntu?
Perhaps you forgot to use tar/gzip? or cd to the directory created by tar?
Nov
10
answered How can I list files under a directory with a specific name pattern using Perl?
Oct
30
revised informatica powercenter vs custom perl ETL job?
added 230 characters in body
Oct
29
revised Presentations on switching from Perl to Python
added 431 characters in body
Oct
29
comment Presentations on switching from Perl to Python
This might work, if you're not only indisputably ahead of the curve, but indisputably ahead of everyone else. Otherwise, you're likely to get "So what, perl can do that too", and rightfully so.
Oct
22
comment How can I speed up Perl’s processing of fixed-width data?
.+ is greedy, so you'll leave one space at the end of your string. You want .+? there.
Oct
19
answered What would be your choice of Perl XML Parsers for files greater than 15 GB?
Oct
12
revised What ETL tool do you use?
deleted 3 characters in body
Oct
11
awarded  Nice Answer
Oct
7
revised What is the best way to gunzip files with Perl?
added 2 characters in body; edited body; added 155 characters in body
Oct
7
answered What is the best way to gunzip files with Perl?
Oct
2
comment Managing Perl habits in a Python environment
@steveha: In perl, you can have $x, @x, %x, and *x, all different types with the same name. Not entirely best practice to do that, but it's there if you want it. (But yes, "@x" means array x if that's all you're after).
Sep
25
comment How can I efficiently match many different regex patterns in Perl?
/o is obsolete/deprecated. Use qr//. And I think in modern perls, as long as $regex doesn't change, then it won't be recompiled anyway. But don't quote me :-)
Sep
25
answered How can I efficiently match many different regex patterns in Perl?
Sep
23
answered Why is the list my Perl map returns just 1’s?
Sep
23
comment How can I print only every third index in Perl or Python?
state is nice. But if you execute that line more than once, it'll only work the first time unless the list length is a multiple of 3.
Sep
16
awarded  Yearling
Sep
10
revised XKCD - Random Number
deleted 4 characters in body
Sep
10
comment How can I use an array as a hash value in Perl?
The parenthesis are superfluous. You might say @array=() to empty an array, but you never need 'my @array=()'
Sep
10
answered How can I use an array as a hash value in Perl?
Aug
27
comment Should I escape shell arguments in Perl?
s/backslash/double-quote/ in comment above.
Aug
27
comment How can I check the status of the first program in pipeline in Perl’s system()?
@vt: you can accomplish something similar with open(..., "-|", ...) or open(..., "|-", ...) (fork with STDIN/STDOUT attached between child processes), and exec(...), but IPC::Run or Proc::SafeExec is so much easier to use. I'd get over your preference if I were you, rather than using a temp file (which is another type of dependency). I have some code here: perlmonks.org/?node_id=246397
Aug
27
awarded  Enlightened