Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. ralisp

    Converting a string to a regular expression

    Thank you for letting me know, I'll make the changes.
  2. ralisp

    Converting a string to a regular expression

    Figured it out, this is what I ended up with. Seems to work: @svr = split '', $server; my $arrlen = @svr; @filter="/"; my $lower; my $upper; #my $upper=uc($server); for ( $i = 0; $i < $arrlen; $i++) { if ( @svr[$i] == /[0-9]/ ) { push @filter,'['; $upper=uc(@svr[$i])...
  3. ralisp

    Converting a string to a regular expression

    I need to create a regular expression that I can pass to another program (outside of the perl script ) using the format listed above. I need a regex is case insensitive, so I would match svr123, Svr123, SVR123, sVr123,etc. So it needs to read in the string and create a new string...
  4. ralisp

    Converting a string to a regular expression

    Not a Perl Expert. I'm trying to take a string and convert to a regular expression: for example: svr123 convert to /(s|S)(v|V)(R|r)123/ I would need to convert the string into an array and create a new string with the upper and lower case character to create a regular expression to use in...
  5. ralisp

    Perl Script does not run inside of VBScript

    Thanks for suggesion, but still unable to execute. Any other ideas?
  6. ralisp

    Perl Script does not run inside of VBScript

    I'm running a simple script that prompts for a servername, then passes that server into a perl script. It does not bomb, but the perl script is not run. I plan to add error checking later, but for now I'd just like to get this running. The perl scrip runs without issue from the commandline...
  7. ralisp

    ASP Novice - ASP / VBScript

    Thanks for all your help! Appreciate you sticking with me on this, it's working as I had hoped and I have a much better understanding of the process now. Happy Holidays.
  8. ralisp

    ASP Novice - ASP / VBScript

    That runs the script, thank you. One last thing. I'm going to call the asp with a parameter. How do I reference that in the script? Here would be the call to the asp: http://server:81/script.asp?nimid=ID Thanks.
  9. ralisp

    ASP Novice - ASP / VBScript

    The pu.exe runs on the same server that the asp runs on. The pu.exe is purely commanline and I pass the authentication to run the command, so no special Win permissions are needed. I will need to prompt the user on the client side for one aurgument..so in the end I a passing two parameters..one...
  10. ralisp

    ASP Novice - ASP / VBScript

    Yes, the second scenario... I need to have multiple Clients pass an argument from their browser to run the same script on the host server. I'm assuming this will require the RUNAT="server" entry, but I'm unsure ofthe correct syntax. Thank you for your help.
  11. ralisp

    ASP Novice - ASP / VBScript

    I have a simple VBScript that takes one parameter when called and then prompts the user to enter a second parameter to then call an exe. I need users to be able to run this exe on one server, so it's my understanding an option is to use ASP. How would I call this vbs in an ASP script? I...
  12. ralisp

    ROOTVG Corrupt?

    No, it's been up for over a year. If I reboot, I'm worried the system will not start.
  13. ralisp

    ROOTVG Corrupt?

    rootvg running on AIX 5.2 ML 2 is corrupt? The server has two HD's mirrored, one has failed. Below are some of the symptoms, lsvg -p rootvg 0516-040 : Unable to read the specified physical volume descriptor area. lspv -l hdisk0 0516-040 : Unable to read the specified physical volume...
  14. ralisp

    DST

    I have some remote servers running AIX 5.2 ML 2. They do not currently have the DST patch. If the servers are connected to a Network Time server, is there an issue with DST? Java? If I need to apply the patch, is there an easy way to apply a bare-bones update? I have the 'patch' from IBM...
  15. ralisp

    bosboot -a

    I have rootvg mirrored on two HD's. If I have to replace one of the drives, will a bosboot -a wrote the boot record to both HD's or do I have to bosboot -ad to the new drive? Does the bosboot -a write the boot record with any drive containing hd5?
  16. ralisp

    Unable to extend a VG

    Thanks for the tip! I had the same problem and this was the only post that had the fix.
  17. ralisp

    Metadata Migration SQL to Oracle

    Is it possible to convert metadata from MS SQL to Oracle? If so, any suggestions?
  18. ralisp

    lslv Mirroring Question

    Thank you Rod. I guess I should be concerned if the # of copies don't match. In this case they do, so I should be fine. -Your quick response is greatly appreciated!
  19. ralisp

    lslv Mirroring Question

    I have two HD's hdisk0 / hdisk1 mirrored in rootvg. The result of 'lslv -l lv12' is: lv12:/home/socats PV COPIES IN BAND DISTRIBUTION hdisk1 200:000:000 34% 052:069:079:000:000 hdisk0 200:000:000 33% 056:066:078:000:000...
  20. ralisp

    sendmail.cf - Changing Sender to hostname

    I need to change the senders address on all emails from: user@domain to host@domain for all emails from my server. Is there an easy way to configure this?

Part and Inventory Search

Back
Top