Search results

  1. D

    missing pid

    we encounted something strange in our new AIX 5.3 yesterday. A remote user login to the database, ran their code and caused high CPU utilization. So, we found his pid through "_connect" table and tried to "kill" it. what happened was that the pid is now gong from OS prompt, but still showing...
  2. D

    function Key in emacs on IBM

    Hello Everyone, This is a question about emacs. As you can see below, the OS seems to be sending the same key sequences whether it is on HPUX or IBM AIX. It seems for whatever reason that uemacs is not acting the same way on them. Please see the key sequences below for more...
  3. D

    PHP Connection

    I'd like to connect out Progress database on HP-UX from a PHP program. So far, I've tried $dbh =DB::connect("jdbc:jdbcprogress://$user:$passwd@servername:port/db"); $dbh = DB::connect("jdbc:jdbcprogress://servername:port/db", $usr,$passwrd); But both came back with "Unable to include the...
  4. D

    fork a new process

    hi, I have this webspeed program generates some big reports. It takes way longer than the time-out of the web browser. So it would be nice to start a background process. The webspeed in on Window and the work needs to be done on Solaris. Any idea about staring a process in Unix from a...
  5. D

    java, ODBC, webspeed

    hi, I am a Progress programmer, but I am not very familiar with Webspeed. Right now, our Progres database is on Solaris, IIS is the webserver. We installed Progress on NT just to have some webspeed programs to create database triggers. I am trying to see if we can do the same thing with...
  6. D

    prompt-for

    This code uses a frame with all the database fields on it. Then it uses "promp-for" for the first part of the frame. If everything is good then a record is created and rest is displayed. Now I need a "F5" on one of those field in the first part of the frame. My problem is that I can't get...
  7. D

    replace large amount of data

    This task requires me to find certain product code in the database and replace it with something else. There are about 1000 product code and about 5 million related records to work on. This is what I have so far. def var lv-prim-index as char no-undo. def var lv-file as char no-undo. for...
  8. D

    error 657 -> codepage

    Pegers, There are some special characters in our database and they are messing up the reports. The special characters are chr(1-31) and chr(128-255). Those special characters are in the address fields. So what I try to do is to use "substring" on each character, but I ran into the error...
Top