Re: MS SQL Server Version

2002-08-13 Thread Trevor Joerges
If you have read accessto the SQL servers you should be able to simply open ODBC connections to them and issue the appropriate SQL command which I think is something like: SELECT @@VERSION Hope this helps. Kind regards, Trevor J. Joerges $_=q;rrUSFWP

RE: MS SQL Server Version

2002-08-13 Thread Peter Guzis
I don't think that data is stored in the registry. You can grab it via a SQL interface though. Try the following URL: http://www.sqlteam.com/item.asp?ItemID=8318 Peter Guzis Web Administrator, Sr. ENCAD, Inc. - A Kodak Company email: [EMAIL PROTECTED] www.encad.com -Original Message-

MS SQL Server Version

2002-08-13 Thread Morgan, Steve H.
Does anyone have any idea how you might be able to audit some MS SQL server version installs using perl. I am able to get the version and service packs from the registry using a perl script, but can not seem to find the location that would contain Enterprise vs Standard installs.

extracting data via telnet from a strange port setup

2002-08-13 Thread Norris, Joseph
Hello to all,   Before jumping into this I wish to express my thanks to all of you who have provided help and comments on my little problems in the past.  This has been the best resource I have encountered.   Now for my current problem:   I have a project which opens a telnet session via N

Starting a Service with Win32::Daemon

2002-08-13 Thread Briggs, Larry
Hi I have set up several perl programs as services. I basically followed what was in the book Win32 Perl Scripting by Dave Roth and everything worked great. I can start the services manually with no problem. The problem is that they do not start when I reboot the machine I have them set to sta

Re: trying to understand how regex works

2002-08-13 Thread Thomas R Wyant_III
Ron Grabowski <[EMAIL PROTECTED]> wrote: > my $regex = join '|', 'value_garbage1', > 'value_garbage2', > 'value_garbage3'; > next if /$regex/; You might want to say "next if /$regex/o" to prevent Perl from compiling every time. If you're Perl 5.6, yo

Dozens Are Dead as Floods Sweep Through Europe.htm

2002-08-13 Thread Paul \"Bo\" Peaslee
Title: Dozens Are Dead as Floods Sweep Through Europe The floods Jenda told us about earlier are described below.  Good luck, Jenda.  Our thoughts are with you and your beautiful city.   Bo   August 13, 2002 Dozens Are Dead as Floods Sweep Through EuropeBy PETER

RE: trying to understand how regex works

2002-08-13 Thread Joseph Youngquist
I'd add the check for the garbage before I split, not sure if it would really add any time to the program running but would, I think, reduce the amount of checking needed after the split function. next if(/value_garbage/g); # assuming value_garbage is the exact string. or you can use: while {

News from Prague

2002-08-13 Thread Jenda
Just for your information, I and my relatives are safe and dry and we all are high enough to stay that way. I will stay offline today and maybe tomorrow, Our office is on second floor, but the power is or soon will be off, the transport is flaky and most probably the street will

Re: NT event monitoring log

2002-08-13 Thread Bellenger, Bruno \(Paris\)
The Win32::EventLog doc has an often repeated incorrect EventType table. The correct table is below : #EVENTLOG_SUCCESS = 0 #EVENTLOG_ERROR_TYPE = 1 #EVENTLOG_WARNING_TYPE = 2 #EVENTLOG_INFORMATION_TYPE = 4 #EVENTLOG_AUDIT_SUCCESS= 8 #EVENTLOG_AUDIT_FAILURE= 16 So y

RE: Can Binary/Hex sound be included in .PL file

2002-08-13 Thread Tillman, James
I've placed binary data in Mime-encoded format at the end of a Perl script in the DATA section before. It worked. I simply read it in and decoded it in-memory. jpt > -Original Message- > From: Michael D. Smith [mailto:[EMAIL PROTECTED]] > Sent: Monday, August 12, 2002 6:29 PM > To: [EM

Re: trying to understand how regex works

2002-08-13 Thread csaba . raduly
On 13/08/2002 06:26:59 perl-win32-users-admin wrote: >Hi all, >I guess it must be a simple problem, but it's a >mystery to me. [snip question involving regex] > >Anybody cares to explain this to me? Try running your script with perl -re=debug scriptname.pl 2>re_debug Make sure you redirect st

RE: How to do CDDB lookup via Win32 Perl?

2002-08-13 Thread Jamie . Echlin
I'm trying to do the same thing so thanks for that Ron, however I have the addition problem of being behind a firewall. Is it possible to configure CDDB (I'm not sure what protocol it uses under the hood) to use my firewall, or can I force it to use http? Anyone got an example of querying CDD