Search results

  1. George Potemkin

    Setup Level II Storage Guide

    @Rob Fitzpatrick Hi Rob, I agree that 65 is more accurate estimation than 64. Cluster size: Richard Banville suggested to use a cluster size of 64 for index areas. However, I don’t understand the explanation. https://community-archive.progress.com/forums/00018/14487.html Should we always set...
  2. George Potemkin

    Setup Level II Storage Guide

    Hi Tom, > it works reasonably well in many cases. Sure, the mean size works, for example, for the “eco” table: Table Records Min Max Mean PUB.eco 10 215 234 216 But Min/Max record sizes would work equally well in this case as well. Mean size does not work for the LOB...
  3. George Potemkin

    Setup Level II Storage Guide

    For record sizes I used to check the "deviation ratio": Dev = (Max - Mean) / (Mean - Min) Table Records Min Max Mean Dev PUB.notes 276431 43 13795 248 66.08 PUB._File 361 284 3201 416 21.10 PUB.eco 10 215 234 216 18.00 PUB._Field 7097 250 1782 338...
  4. George Potemkin

    Setup Level II Storage Guide

    > I purposely don't have a precise definition for very large tables, i.e. tables that warrant their own areas. This is a trade-off between manageability and complexity, and different DBAs may decide this differently based on their needs. A very large table, in the mind of a DBA with a 50 GB...
  5. George Potemkin

    Setup Level II Storage Guide

    Since 11.4 you can use the -csoutput -verbose parameters with proutil -C dbanalys. No needs to parse dbanalys output anymore. Unfortunately dbanalys was and is still a poor tool to analysis data storage. You can improve it a bit by adding data from other sources. I'm combining data from...
  6. George Potemkin

    insufficient disk space or write access denied

    Insufficient disk space or Write access denied with error 291 when lots of disk space is available https://community.progress.com/s/article/insufficient-disk-space-or-write-access-denied-with-error-291-when-lots-of-disk-space-is-available Cause There are many "old" temporary files present in...
  7. George Potemkin

    insufficient disk space or write access denied

    Are there a lot of records in the mfg-tagm table? It looks like it's a sorting of BY phrase that causes the error. What is the -T directory?
  8. George Potemkin

    insufficient disk space or write access denied

    Can you check debug-list of get_stock_detail inv/inv310spsx3p.p? What is a operator in line 6684?
  9. George Potemkin

    insufficient disk space or write access denied

    Is the error 291 the only one that is reported in db log? No errors 6072?
  10. George Potemkin

    Progress 9.1D legacy server - no developer licence - need to dump data to .csv

    Exactly. xcode is a part of any development version of OpenEdge. I guess the evaluation versions include it as well. The size of the file: 10.2B 47,456 11.7 54,472 12.2 54,984 12.8 57,368 It's not exactly the same but I still believe the xcode.exe works for all versions.
  11. George Potemkin

    Progress 9.1D legacy server - no developer licence - need to dump data to .csv

    Start a session with the -rx option and Data Administration will allow you to dump data definition files. Run-time license allows to compile the xcoded sources. "Encrypted Compiler Mode" = "the -rx client startup parameter". Do you have xcode.exe in DLC directory? Update: I can be wrong but...
  12. George Potemkin

    Progress 9.1D legacy server - no developer licence - need to dump data to .csv

    What version of the operating system? Can you install the recent evaluation version of OpenEdge? Then you can convert your database and dump data using new version. Do you have a run-time license installed? Then you can dump and upload the .df files. And somebody can compile the dump programs...
  13. George Potemkin

    Question CODEPAGE-CONVERT for German, Greek and Latvian

    SUPPROMSGS/gre contains only 2 df's: gre851.df CODEPAGE-NAME IBM851 COLLATION-NAME GREEK gre1253.df CODEPAGE-NAME 1253 COLLATION-NAME GREEK Both these codepages you are already used. Internet gives other codepages for Greek language: 737 Code page 737 - Wikipedia 869 Code page 869 -...
  14. George Potemkin

    Need to find RCA even though .lk file exist Application team wont able to connect via ERP.

    Long time ago I wrote a script (logsem.sh) to read the database login semaphore. It was tested only on Linux and AIX but not on HP-UX. I don't know if HP-UX has the commands to get the requested information but why not? When nobody can't connect a database it's good idea to check what is going...
  15. George Potemkin

    Need to find RCA even though .lk file exist Application team wont able to connect via ERP.

    Some self-service process tried to log out. It took the USR latch and freed the slot in Connection Table. Then something gone wrong - the process hung and did not release the latch. I bet the process was still running while you tried to stop the database. For such situations watchdog can't...
  16. George Potemkin

    Need to find RCA even though .lk file exist Application team wont able to connect via ERP.

    BTW, 11.7.10 update provides a. Additional Usr latch protection at logout and login, b. Additional checking for USR latch at user disconnect c. Additional information is written to the database lg file should these be encountered This information is recorded in the following public Articles...
  17. George Potemkin

    Need to find RCA even though .lk file exist Application team wont able to connect via ERP.

    Most likely, a login semaphore or USR latch was locked. promon -F would connect the database (like proshut -F did) and would allow to find out a process that hold the USR latch. If it was the login semaphore, then OS commands would help.
  18. George Potemkin

    Question CODEPAGE-CONVERT for German, Greek and Latvian

    Use the "try and check" method. For Greek: CODEPAGE-CONVERT(string, "UTF-8", "1253"). If the conversion corrupts data then use "IBM851" instead of "1253".
  19. George Potemkin

    Question CODEPAGE-CONVERT for German, Greek and Latvian

    What is the value of SEESION:CPSTREAM? I18N: Code Pages and Possible Conversions Baltic - 1257 Greek - 1253, IBM851 Western Europe (*) - 1252, ISO8859-1, IS8859-15, IBM850, IBM037, IBM273, IBM277, IBM278 *German
  20. George Potemkin

    Read an AI file

    Recent thread: https://www.progresstalk.com/threads/getting-details-from-ai-files.203024/
Back
Top