How to Start Win32::Daemon on Windows 2000 (WAS how to make a perl script a NT service)

2001-04-27 Thread David M. Davisson
I have checked out this module and am having a bit of trouble getting it to work on Windows 2000. I can use it to install or remove a a service, but if I try to use the Service Control Manager to start the service or use net start service_name, I keep getting the same error: Error 1053: The serv

Re: How to find a drive exsistence

2001-04-26 Thread David M. Davisson
Try this: #!perl.exe -w use strict; use Win32API::File qw( :ALL ); my @drives = getLogicalDrives(); my %Types = 0 => 'DRIVE_UNKNOWN', 1 => 'DRIVE_NO_ROOT_DIR', 2 => 'DRIVE_REMOVABLE', 3 => 'DRIVE_FIXED', 4 => 'DRIVE_REMOTE', 5 => 'DRIVE_CDROM', 6 => 'DRIVE_RAMDISK', ); foreach

Re: CSV sorting

2001-04-25 Thread David M. Davisson
I would suggest you check out DBI using DBD::CSV. You can do SQL and sort. -- Dave Davisson [EMAIL PROTECTED] - Original Message - From: "Walsh, Keith" <[EMAIL PROTECTED]> To: "'[EMAIL PROTECTED]'" <[EMAIL PROTECTED]> Sent: Wednesday, April 25, 2001 3:42 PM Subject: CSV sorting > Hel

Re: DBI Keepalive

2001-04-20 Thread David M. Davisson
Robert, ORA-0113 errors can be more than just timeout errors. If I were you I would check with the DBA and see if there is anything in the database trace logs indicating an error on the server end. My experience is that ORA-0113 errors usually result from broken communication channels and not n

Re: Scheduled Tasks

2001-04-18 Thread David M. Davisson
I never was able to get the at commands to work with perl. I was successful on NT with the use of the Scheduled Tasks folder without using any reference to the perl executable, just the name of the perl script. However, make sure you have a .pl extension! -- Dave Davisson [EMAIL PROTECTED] --