Search results

  1. Y

    Force Agent to stop...

    Hi all. I had a big problem. Recently we work on a project and it has bunch of report. Our biggest mistake is that some of the reports runs on huge data and will take almost forever. FOr the users, if they were bored to wait, they'll simply close the window and open another process. But the...
  2. Y

    Creating AutoNumber field

    If SQL-Server has an 'Auto Number' datatype, how can I make an autonumber on Progress? I'm having a hard time with this, for often I had concurent events that cause duplication on my autonumber which caused error as it is a unique field. Please help....
  3. Y

    My oh my index.....

    Have you ever notice this? I'll try to explain it in code: DEF TEMP-TABLE tmp_table FIELD tmp_a as char FIELD tmp_b as int INDEX tmp_idx1 is primary unique tmp_a INDEX tmp_idx2 tmp_a tmp_b. CREATE tmp_table. SET tmp_a = "A" tmp_b = 1. MESSAGE "LETS START CONFUSING LOOP"...
  4. Y

    Setting OS-GETENV("PWD") to get Broker

    I used to use OS-GETENV("PWD") to get my broker's workDir. And it worked. It returns my WorkDir correctly. E.g. /wrk/trial/ But some time ago I have to work on a friend's server and OS-GETENV("PWD") didn't return my workDir as it's result. Sometimes it returns /www/html, the other time it...
  5. Y

    WARNING--TRANSACTION keyword given within actual transaction level

    Can anyone tells me what it was? How can I get rid of it? It happens when I check syntax on my .p. Progress Editor didn't tells where the problem is. I just wanted to know what cause the warning to appears? What did I do wrong. I really have no idea. Please help. My regards YoChan
  6. Y

    NO-WAIT and WAIT???

    Hi All! Really need a hand here.. http://progress.solvepoint.com/2007/11/30/openedge-record-lock-anti-pattern/ It tells about making PROGRESS waited for 60 minutes for a record to be available (If another user locked it first). Can anyone tells how to make it shorter? I only need to make...
  7. Y

    Webspeed displayed wrong values

    Hi All I have a problem that have been bugging me for ages, I don't know if any of you ever had the same problem, but some of my friends did.... I'm using OE 10.1B and webspeed. My problem begins when I'm building reports using webspeed. Just a simple report to display my table's contents...
  8. Y

    Using FILE-INFO

    can anyone tells me about FILE-INFO? How to use it? I need a folder's file list with each file's size to be displayed to my users via webspeed. Any help apreciated. Regards YoChan
  9. Y

    Check whether a file is xcoded or not

    Hi all I wanted to know whether a .p file is xcode-d or not. For I wanted my program to only allow execution for xcoded external source. E.g. I have a file A.p that calls B.p. how do I know (from A.p) that B.p is already xcode-d or not. Thanks in advanced. My Regards YoChan
  10. Y

    FOR EACH with EXCLUSIVE-LOCK means TABLE locking???

    Wanted to ask something. Using an EXCLUSIVE-LOCK on a FIND FIRST statement caused the current record to be locked so that other users can't change the record's contents (CMIIW). Only on a single record. But what about if I'm using EXCLUSIVE-LOCK on a FOR EACH statement? My senior said that...
  11. Y

    Executing dynamic user defined formula/string

    Is there any way that I can allow my user to enter his own formula to variable vFormula and let PROGRESS to evaluate it? Or just make it simple, can progress execute some string of syntax that we gave? As an example we had 'eval' syntax on javascript. <script language="javascript">...
  12. Y

    Missing '+' character on get-value

    Hi all. After using progress for about 2 years, i've just found a weird stuff. I'm currently using OE 10.1B on Linux platform. I'm using htm page for main interface, while for process I'm using .p. So for each transaction, I have to pass variable form my htm page to my .p for further process...
  13. Y

    creating new database

    Hi All! I'm still confused bout creating new database. such as how many extents vs size per extents. Plus which storage area do I have to choose. (I'm using OE 10.1B). And how can I measure how much do I have to put on -B and -L? For example if i'm bout to create small database with size...
  14. Y

    Flushing .P to be use with another DB

    Hi all! have a problem. I have few server accross city with the same database, e.g. like sports db. the only differences is customer data it contains. Like server with database Sports_1 contains cust-num 1 - 84, database Sports_2 contains cust-num 85-168, etc (but please consider it...
  15. Y

    Webspeed strange behavior

    Hi. I want to askif anyone of you have the same experience with me. I'm using opera as my default browser and set it to load every requested page directly from the server. (So there won't be any problem with browser's history). But SOMETIMES I met strange behavior. For each edit...
  16. Y

    Page Separated Display

    Hi All! I'm using OE 10.01B, I want to make a grid to display my data records. So I'm using standart <table> and <tr> - <td> to create rows and column. But the problem is when I need to display data with large amount of records i'm displaying all of the records at the same time. So the browser...
  17. Y

    Retrieve server's file list

    I wan't to make a download program that automatically display some files on server on a specific directory (e.g. all files that begins with "07March" that located in '/wrk/download/'). I can't do it manually for files will be added in the directory few times a day, and the file list MUST ALWAYS...
  18. Y

    Multi Volume Backup file/device name

    Dear all. I'm new to database administrating, so I need a bunch of yer help. I do backup everyday. But someday I realized that my backup file was exceed 8 GB. I do believe that my RHEL 4 system can't hold that large file. it's failing when I tried to restore it. So I think I must split my...
  19. Y

    failed upload text file to server

    Dear All I'm using OpenEdge 10.A on LINUX RED HAT AS 4 with Apache 1.3 as my Web Server. The problem is I can't upload any TEXT file to my sever. Yes, I have use the 'FileUploadDirectory', and a form with 'post' method and 'multipart/form-data' enctype like below. <form name="frmUpload"...
  20. Y

    My WsBroker Agents is missing....

    Hi all! I have a minor but serious problem here. I have a 5 user lisence webspeed. So when I started wsbroker I have five agents. The query result shown 5 agents available. But some times weird things happened. It's hard to explain (my bad english), but I'll give an example. I have a record...
Top