Search results

  1. C

    Spam

    Hi All, As you have noticed, there is an increased amount of spam posted on this site. We are working quite hard to get rid of the spam. We are not online 24/7, so it might take some time for us to clean it up. If you see spam, please report it so we can logon to remove it. Regards, Casper.
  2. C

    progress code upper case

    Set what? You set the keyword casing via the menu: windows\Preferences\OpenEdge Architect\Editor --> there you find options for the editor.. amongst others there is casing there. Regards, casper.
  3. C

    Hyper Links

    This kind of use of language is quite unappropiate to me. I will delete your original message. Please think before you push the button to post your answer. If you dont want to help then dont react to a question. Just remember we are all people here, there is absolute no need to get rude. Casper.
  4. C

    CSS file in procedure

    if the problem is with te curly brackets then you can also escape these instead of using there ascii values. PUT UNFORMATTED '~{ margin-bottom: 0in; direction: ltr; color: #000000; line-height: 120%; widows: 0; orphans: 0 ~}' SKIP.
  5. C

    PHP and PROGRESS DB

    Its not about Appserver. It is just to make an OpenEdge webservice and call this webservice from within your php application like you would call any webservice. Casper.
  6. C

    Snap-in failed to initialize. 10.1B explorer tool

    Is this issue on windows 2008 and higher?
  7. C

    Backup script

    I agree. Action has been taken. Regards, Casper.
  8. C

    Table repair question

    error in max length or precission can be fixed by running dbtool )option 2). still also wise to run update statistics: update table statistics; commit; update index statistics; commit; update column statistics; commit; you must run update statistics with dba rights (you can use the default...
  9. C

    Table repair question

    Did you run update statistics before you run queries on the database?
  10. C

    Can you shutdown _sqlsrv2 without stopping the _mprosrv server

    Use promon to kill a server. But If I guess you got a 'hanging' _sqlsrv2 process. If you check with _connect you probably see connections on that pid. 'Bad' queries (still in 10.2A) tend to clog up the _sqlsrv2 proces event thought the query is stopped. (Nicely or brutaly). You can see this...
  11. C

    _sqlsrv2 temporary files location

    That is correct, -T is a client parameter. Regards, Casper.
  12. C

    Spam

    Well, I woke up this morning finding a huge number of spam posted in this forum. There where from 3 different users more then 400 messages posted to this forum. Spam was all over the place. I banned the users and I am pretty sure I deleted all posts. Sorry for the inconvenience and hopefully...
  13. C

    how to upload text file

    In more recent releases of Progress binary upload is supported too. Casper.
  14. C

    Index usage within join

    Wow, that sure is interesting. What servicepack are you on? Many improvements have been made in SP9. SP9 also has a newer odbc driver (datadirect 4.1 if I recall correctly), it might help to use that one. Can it be that update statistics hasn't been run for a long period of time? It is important...
  15. C

    Retrieving Relation Information

    I believe referential integrity is still on the agenda....
  16. C

    Still missing picture and signature

    :-) .
  17. C

    Still missing picture and signature

    I can get to the forum admin page but I dont have rights to change most of the stuff there. I already tried contacting Chris on these issues and how to handle them. But I think we have to wait until he drops by. Casper.
  18. C

    Column not found/specified 7520

    Works for me though. Look at the field names: in your example vmsold should be a field of table vmhast. Is that the case? Casper.
  19. C

    PHP and PROGRESS DB

    You can use webservices or SQL. Casper.
  20. C

    Column not found/specified 7520

    How about: select vmsold from pub.vhmast where vmsold = 0; or select pub.vhmast.vmsold from pub.vmhast where pub.vmhast.vmsold = 0; HTH, Casper.
Back
Top