RE: How to monitor a scritp

2004-11-23 Thread NandKishore.Sagi
I had a similar problem running my perl script in cron. Finally it turned out to be a problem with profile. At our end there is a profile script that gets executed whenever we open a Shell prompt. When I got that to run before my script it started working fine. Also try giving the explicit path to

RE: time managing

2004-09-15 Thread NandKishore.Sagi
thing here. -Original Message- From: Wiggins d Anconia [mailto:[EMAIL PROTECTED] Sent: Wednesday, September 15, 2004 9:21 AM To: NandKishore.Sagi; Ishwor; Perl Beginners List; Budi Santosa Subject: RE: time managing Please bottom post... > CRON the one and the best solution to all your problems

RE: time managing

2004-09-15 Thread NandKishore.Sagi
CRON the one and the best solution to all your problems. For example if you want to execute a job /home/home_dir/abcxyz/getdata.pl every one hour here is what you do. (1.) At UNIX $ prompt do a crontab -e (2.) It opens a writable file (Mostly in "vi" unless ofcourse you have not changed nay setti

RE: Sending Email

2004-08-16 Thread NandKishore.Sagi
Use MIME::Lite to send the mail and you can use any standard File writing packages(For example O::Tee) to log all the messages. -Original Message- From: Fontenot, Paul [mailto:[EMAIL PROTECTED] Sent: Monday, August 16, 2004 11:01 AM To: [EMAIL PROTECTED] Subject: Sending Email I'm in ne

RE: Warnings with Spreadsheet::WriteExcel

2004-07-29 Thread NandKishore.Sagi
Never mind guys. I figured it out. The row and col value were not set and as a result I got a screenful :D Thanks for any time you spent on this issue. Nand Kishore -Original Message- From: NandKishore.Sagi [mailto:[EMAIL PROTECTED] Sent: Thursday, July 29, 2004 3:33 PM To

RE: Warnings with Spreadsheet::WriteExcel

2004-07-29 Thread NandKishore.Sagi
app0556 app0558 app0560 app0579 app0580 app0587 app0588 app3801 app3803 app3804) { $worksheet = $workbook->add_worksheet($host) ; $worksheet->write($row , $col , "This is for DC $host" , $format); } -Original Message- From: NandKishore.Sagi [

Warnings with Spreadsheet::WriteExcel

2004-07-29 Thread NandKishore.Sagi
Title: Message Hi All ,         I am in process of generating some statistics for different unix boxes. I would like to generate excel workbook with a single worksheet for each box. I had written a test script to create the excel sheet. I was able to create the excel sheet but

Help required with DBI

2004-07-24 Thread NandKishore.Sagi
Hi All , I need some help with DBI. This is the first time I am working with DBI module and am pretty new to perl too. I am trying to connect to a database to execute some queries. I had written a code which is shown below (It is actually a partial code for just connecting to database). I

RE: Cron Tab Implementation

2004-07-08 Thread NandKishore.Sagi
Ok. Would persons not having access to crontab use this method. If that can be done then this should be sufficient for me. -Original Message- From: Wiggins d Anconia [mailto:[EMAIL PROTECTED] Sent: Thursday, July 08, 2004 12:05 PM To: NandKishore.Sagi; [EMAIL PROTECTED] Subject: RE: Cron

RE: Cron Tab Implementation

2004-07-08 Thread NandKishore.Sagi
: NandKishore.Sagi; [EMAIL PROTECTED] Subject: Re: Cron Tab Implementation > > Hi All , > > I want to implement the functionality of crontab in Perl. Which > module do you guys suggest can be used. The only consideration is it > should be simple to use. That is I should be able t

Cron Tab Implementation

2004-07-08 Thread NandKishore.Sagi
Hi All , I want to implement the functionality of crontab in Perl. Which module do you guys suggest can be used. The only consideration is it should be simple to use. That is I should be able to say execute this job at this given time say 1:00 AM . After that I can just go home and have a nic

RE: Piped input

2004-05-10 Thread NandKishore.Sagi
The file handlers are both DAL. Change the file handler names. -Original Message- From: William Black [mailto:[EMAIL PROTECTED] Sent: Monday, May 10, 2004 8:50 AM To: [EMAIL PROTECTED] Subject: re: Piped input >Hello I have the following driver script that calls two perl scripts to

Password Changer and rexec help

2004-04-21 Thread NandKishore.Sagi
Hi All, I am looking for some module which would help me in changing the password on multiple boxes.I have the same login ID and would liketo change the password for all of them using a Perl script. Also I am looking for a perl module which can help me to logon onto different bo