Recent content by toby.Harman

  1. T

    PROREST from tape problem

    You could try using the -vs parameter to specify the tape volume size, though I must confess I have never seen this behaviour in Progress.
  2. T

    OpenEdge Reserve Words

    CAVEAT - V9 and below! In your DLC directory where Progress is installed there will be a series of files with the name "newkw*". The one called newkywd will contain the keywords that have been introduced since the most recent version.
  3. T

    Best Configuration

    Two machine - 1 Client - 1 Server. Client 1GB Ram Locally installed copy of Progress Client Networking. 1 CPU Server. As a general rule, this is where the money goes! As much much memory as you can afford. As many spindles as you can squeeze into the chassis. At least 2 CPUs...
  4. T

    DB Extent Size

    Q. Advantages in having all extents of Approximately equal size? A. The DBA can say "I have 43 extents of 200MB each so my database is roughly 8.6GB. That's about all! Q. Is there any reason to limit an extent to 2GB A. History! Is there any reason to make it bigger than 2GB? I don't think...
  5. T

    Tuning AI and BI

    You always ask the interesting ones Ron! THIS IS NOT A RECOMMENDATION!! To increase the percentage of BIW writes, go into the R&D options of Promon and start tinkering with the BIW tuning options. Whether or not this will help is a matter of trial and error. I've never found it necessary to...
  6. T

    Slow Performance - Indexes?

    Ok - Let me get this straight. You have taken tables that were in 5 seperate databases and put them all into 1 database. Now performance is suffering, but you have not changed the structure or indexing of each database. Suggestions. 1. Did you add all the space from the -B in the 5 old...
  7. T

    Read Uncommitted

    It's called no-lock in Progress. Not quite the same thing, as it will only show you the data before the transaction commenced, but it will allow you to read records that are locked.
  8. T

    Rule of thumb for BI Size?

    OK - Lets see if we can help you out a bit. Rule 1. The only thing about BI size that matters is that it shouldn't "just keep growing". There is no rule 2 (except on older versions on Progress where 2GB was the hard limit for BI size) Tuning the BI. You should be aiming for checkpoints...
  9. T

    CyberQuery Error

    Hi You'll probably do better with this query on either the DB Admin section or the ODBC section. It sounds like either a) There is no ODBC started for the databases b) Cyberquery doesn't know where to find the ODBC connection. Toby
  10. T

    Progress9 Windows XP Database server

    Presuming you are using the 4GL client rather than the SQL client... It's not so much that both want the same table, its that both want the same record. find <table-name> exclusive-lock where <field> = <criteria> and .... NO-WAIT no-error. The NO-WAIT tells the program not to stop if...
  11. T

    Defrag Utility for Progress

    There are various tools to re-organise the data and indices, some of which are Version Dependant. Check under Database Administration Utilities in the Database Admin Guide and Reference.
  12. T

    Newbie with OLD Progress

    First - you need to be able to get into the progress editor. next - in your start script (to get into the editor) you need to declare an enviornment variable called PROPATH and set it to the directories where the source code is. in your editor you type compile <program-name> save...
  13. T

    How to find the last day of the month

    FWIW, my personal favourite is function Get_Last_Day returns DATE (input v-date as date): def var v-last as date no-undo. assign v-last = (date(month(v-date), 28, year(v-date)) + 4) v-last = v-last - day(v-last). return v-last. end. Short, sharp and uses...
  14. T

    prob. with excel

    Try chr(9) which is a TAB. I've found this to be the most useful one!
  15. T

    NSW-APUG Next Meeting 14 Oct

    The next User Group meeting is announced below but first some important news from our August meeting. At the August User Group meeting, new committee members were elected for the new year and they are: President Nigel Allen - Prosmart Treasurer Toby Harman - Morningstar...
Top