Recent content by Casper

  1. C

    Fill a temp-table using sql statement. Is it possible

    since you work on a C# project: it is possible to fire queries directly on the progress database from .NET. Depending on the goal you wish to achieve this might or might not be a viable option. I prefer sql to not run on the production database.
  2. C

    Primary Index allows null values?

    and to add to this all: null is not the same as empty for a string. abc.a = '' is empty not null. abc.a =? is null. The latter is not allowed if mandatory is checked for the database field.
  3. C

    Export Array fields

    or try something like assign cAddrString = ''. do iTmp = 1 to buffer arsc:buffer-field('addr'):extent: assign cAddrString = cAddrString + addr[iTmp] + ';'. end. assign cAddrString = trim(cAddrString,';'). put unformatted name "|" cAddrString "|" city "|" stated "|"...
  4. C

    Answered Webspeed server to IIS (or other) server - outbound UDP ports

    Maybe this picture sheds some light on where UDP communication is used. It is quite easy to configure the inbound and outbound UDP ports to minimize the range of ports being used.
  5. C

    redirect for webspeed error page

    We use it actually and never had problems. What problems you encounter then? We use it with apache on Linux. I never tried this with IIS on windows though.
  6. C

    redirect for webspeed error page

    You can easily do that: Look at KB P11509: HTH, Casper.
  7. C

    Weird SQL Buffer Error

    What query are you running? There are a couple of entries on this in the KB (http://progress.atgnow.com/esprogress/categoryBrowse.do) For instance: P153561 or P130492. HTH, Casper.
  8. C

    Spam

    I deleted about 60 spam messages every day, so there where many. Nice to see that it works really well. Good job.
  9. C

    Spam

    I havent been on a lot lately. So sorry if I didnt remove the spam in time. Right now its clean. I hope Chris finds a way to solve this spam issue real soon too. But I am unable to contact him. Regards, Casper.
  10. C

    Concurrent Reads

    And then there is also -rereadnolock parameter. If you are not using it you might get the previous record even though the change is already fully committed. Regards, casper.
  11. C

    WebSpeed Settings - cgiip.exe error message

    You should do this at the machine where the messenger resides. This is not that machine.
  12. C

    WebSpeed Settings - cgiip.exe error message

    It says: Connection failure for host localhost port 5162 transport UDP. (9407). The location should be remote. Now its looking at the webserver for a nameserver called NS1 on localhost not on develv5 (10.1.10.56 ). Check the ubroker.properties settings in your messenger install dir there its...
  13. C

    No more available App Servers.

    The Appservers are actually all busy at that moment? What is the operating mode of the appservers? What programs are running then? How many users and how many appservers? Now we are at it, what os are you using? Is the program which act on table 1167 part of the appserver or is it been called...
  14. C

    Understanding the dbanalys data

    Maybe you can tell us what you dont understand? That will be much easier for us then to go through each field in detail. Regards, Casper.
  15. C

    Getting error during Restore: Error 9452

    well make something like: # generated by PROREST on Mon Apr 18 13:01:56 2011 b <databasename>.b1 d "Schema Area":6,64 <databasename>.d1 f 1024000 d "Schema Area":6,64 <databasename>.d2 f 1024000 d "Schema Area":6,64 <databasename>.d3 f 1024000 d "Schema Area":6,64 <databasename>.d4 f...
Top