RE: DBI Count Distict

2003-06-27 Thread FARRINGTON, RYAN
Title: RE: DBI Count Distict I would use the SQL server to make the counts for me... or you could take the query then make a hash using the first three digits as the key and make the value increment... then you just hash through the hash (hehehe) and get your final count... -Original

RE: DBI Count Distict

2003-06-27 Thread Tobias Hoellrich
Try: select left(Data,3) as start, count(*) as occurances from table group by start; Hope this helps Tobias PS: Tried this on mysql ... -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of steve silvers Sent: Friday, June 27, 2003 7:52 AM To:

Build Html Help

2003-06-27 Thread Borkur Gudjonsson
Hi. I´m trying to rebuild the HTML documentation. I used to do it with perl -MHtmlHelp -e HtmlHelp::MakePerlHtml() but the module HtmlHelp seems to be gone! I'm using v5.8.0 build 805 on WinXP Professional. Regards, Borkur Gudjonsson ___

Re: Perl Formats

2003-06-27 Thread Carl Jolley
On Fri, 27 Jun 2003, Christopher Moss wrote: Can anyone help me with this problem? I am trying to produce a report using the format function that is in the following format (trivial example): Family Name Role Name flintstones lead fred

RE: Build Html Help

2003-06-27 Thread Bradley K. Embree
-Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of Borkur Gudjonsson Sent: Friday, June 27, 2003 9:36 AM To: [EMAIL PROTECTED] Subject: Build Html Help Hi. I´m trying to rebuild the HTML documentation. I used to do it with perl -MHtmlHelp -e

RE: Mail-Sender Port for AS Perl 5.8 (Win)

2003-06-27 Thread Jeff Griffiths
FYI Our build engineer has gotten Mail-Sender to compile properly for ActivePerl 5.8 - it is now available in ppm. yay Tj! JeffG -Original Message- From: Michael Cohen [mailto:[EMAIL PROTECTED] Sent: Thursday, June 26, 2003 3:45 PM To: [EMAIL PROTECTED] Subject: Mail-Sender Port

PERLAPP.EXE Compile error

2003-06-27 Thread Matthew_Johnson/MO/americancentury
Hello I have encountered an error I think a module may be missing but not sure. Any suggestions are welcomed. The text of the compile output follows error Encode\ConfigLocal.pm: error: Can't locate Encode\ConfigLocal.pm refby: c:\Perl\lib\Encode.pm whole output.

OT:Unix

2003-06-27 Thread Krishna, Hari
Friends, I think its hightime for me to subscribe to a Unix group. If you guys know any, please let me know. ... I have several scripts running in the back ground and I used nohup command Every 90 days, I am needing to kill those commands and restart the process again (ie.

Re: PERLAPP.EXE Compile error

2003-06-27 Thread Trevor Joerges \[SendMIME Software\]
These errors are pretty normal. The error means that the module Encode::ConfigLocal is used by the module Encode which you have explicitly used but the first module, Encode::ConfigLocal, it not present. Many times the subsequent module is not really required. IE when you build an exe that uses

Unsure How To Automate

2003-06-27 Thread Wingfield, Nancy
Hi Discussion Group, I'd like the program that I'm working on to be able to pick up files with a certain extension and process them when they are placed in a given directory, without me having to call the program every time. Does anyone know how to make a program listen for such events?? Any

RE: Unsure How To Automate

2003-06-27 Thread Messenger, Mark
Title: RE: Unsure How To Automate You can either: 1) Have a script sit and watch a directory (or list of directories) on a regular basis (every 30 seconds, every 5 minutes, ...) and process files as they come in, or 2) Have a script wait for Filesystem change events using

RE: Unsure How To Automate

2003-06-27 Thread Peter Guzis
3) Use Win32::AdvNotify if you can find it Peter Guzis Web Administrator, Sr. ENCAD, Inc. - A Kodak Company email: [EMAIL PROTECTED] www.encad.com -Original Message- From: Messenger, Mark [mailto:[EMAIL PROTECTED] Sent: Friday, June 27, 2003 3:22 PM To: 'Wingfield, Nancy'; '[EMAIL

RE: Unsure How To Automate

2003-06-27 Thread Wagner, David --- Senior Programmer Analyst --- WGO
Peter Guzis wrote: 3) Use Win32::AdvNotify if you can find it Peter Guzis Web Administrator, Sr. ENCAD, Inc. Be careful on this path, since the author is not around any more ( disappeared or at least I have never heard what happened to him). I use it but it is a very static

RE: Unsure How To Automate

2003-06-27 Thread Peter Guzis
I would love to have the source as well. Win32::ChangeNotify is quite limited by comparison. *sigh* Peter Guzis Web Administrator, Sr. ENCAD, Inc. - A Kodak Company email: [EMAIL PROTECTED] www.encad.com -Original Message- From: Wagner, David --- Senior Programmer Analyst --- WGO

RE: Unix

2003-06-27 Thread Maraglia, Dominicx
Many way to do this...depends on how much time you want to spend on it. Here is a quick and dirty example that works: ps -ef | awk '{print $1 $2} | grep your_UID | awk '{print $2}' | xargs -i -l kill Cheers, Dominic -Original Message- From: Krishna, Hari [mailto:[EMAIL