Hi, I have a Perl script that using DBI (DBD::CSV) to read a CSV file via a SELECT * to and convert it to a Excel file. Script is run on Windows 2003 server.
The script works correctly, but...
I have a script that I'm using to change my database passwords for multiple databases. Most of it works, but I can't seem to get the bind parameters on the $sth->execute statement to work. H...
I need to get the system date in the following format and assign it to a string so it can be inserted to a XML file.
Format needed below
Sunday, September 28, 2008
I'm not a Perl programmer and have inherited a Perl script. I've seen this script run on another machine, so it works and I'd expect any issues running it on my machine to be configuration on...
need to extract the path of the file between the "" from the data below! I need this urgently!
23-Oct.16:43 sg912681 checkout version "/vobs/atseintl/DBAccess/Queries/QueryGetTaxSegAb...
Hello coders,
I posted an earlier question (http://www.experts-exchange.com/Programming/Languages/Scripting/Perl/Q_23661802.html) where I needed to increment a date. Ozo provided a solutio...
Hello coders,
I have a date in this format: 15-NOV-2006
Can someone provide me with a script that'll add X number of days to this date and return the output in the same format. For exam...
I have a odd situation, I call oracle procedure to insert data. This procedure suppose to get the table name based on id passed to it. It gets the table name only if called via sqlplus or SQL ...
I'm trying to send mail using a contact us form from our hosted gmail account. For example, our account is support@mydomain.com and we are using hosted gmail for email.
I need an email scr...
how to pass variable from perl script to batch file?
perl script:
$fpword = "xxxx";
system("D:\\test.bat %$fpword%");
batch script:
echo "%1", I'm getting blank
Hello,
I'm using Net::Telnet::Cisco to update configs on multiple Cisco routers (all are 1841 model). The script reads from a CSV file that has the router IP, and commands to be entered. Th...
This question is continuation of another question.
http://www.experts-exchange.com/Programming/Languages/Scripting/Perl/Q_23831439.html
Currently I have the suggested code from the above t...
I have the following string(s)and I want to generate a hash of hash from this one.
;&EVENT[__nmi_0](nmi, THREAD => 0, TRIGGER => &TRIGGER[__nmi_0.trigger](eom, LIP => 0x2020, SELF_CHECK =>...
I have a subroutine (thumbs) that is supposed to test for the existence of an image and if it exists to print the image. However, when I run the code, it does not find the file (even though it...
I've never programmed in Perl/CGI and need help creating a Perl/CGI script. I need an HTML page and a Perl/CGI script that will do the following:
HTML page:
1) Contain a form with five ...
I'm a PHP person trying to use the following PERL script, I have never used a PERL script:
http://sourceforge.net/projects/getlive/
I've installed the PHP Perl mod and can run a simple 'he...
I'm working on using the script on this page: http://www.oreillynet.com/pub/a/network/excerpt/CISCO_Chap1/index.html?page=2
when running it I'm getting the following error:
$ ./lscan.pl
...
I need to produce a perl program that will display information from a website. I would like to have 7 columns: Date, Time, Name, Address, DOB, Officer(s), Location
The wesbsite the html i...
I need to be able to place products in each table cell from left to right according to order in my flat file database. I'm trying to display 3 products per row with pictures and cart button al...
does anyone have sample code for perl parser. I have a fixed end file layout. The issue is that the input file, which will come with a header record, can come in any order, and any number of...
Hi,
I'm coding in perl, and I've used CGI::EncryptForm to store encrypted information in cookies.
Now I'd like to take a small hash, maybe three key/value pairs, and encrypt it so the en...
Hi,
I need to find characters say, '*' from the content of the file and replace it with something else.
Basically '*' occurs in the file, I want to replace with something else.
I have thi...
I am trying to exit the while statment by having the user enter the word done, I am not sure how to do this?
#!perl -w
while ($firstname){
chomp ($firstname = <STDIN>);
print "ple...
I need to get the output from a Exepct send command and then process the output, but couldn't find a good way to do it.
More precisely, I have:
==============================
$exp->send("ls...
How would I convert this Perl command line:
perl -F, -ane '$f=$F[3] if !defined($f)||defined($F[3])&&$F[3]<$f;END{print "Min=$f\n"}' Input.txt
to a Perl script something like this:
o...