Search results

  1. jdpjamesp

    Suddenly slow database and sometimes losing connection

    What's the Progress version? What is the difference in the IOPs of the 2 disks that were switched?
  2. jdpjamesp

    0 / 0 = ?

    My calculator is fine...
  3. jdpjamesp

    Answered Protop on premise

    Yes there is - you can have a private portal. There is obviously some cost involved here. For reassurance though, there is no reason for the admins to worry about the health data going to the cloud. There is nothing in there that will tell anyone anything about the data held within the...
  4. jdpjamesp

    Error ** More than 1024 items in a single statement. Use the -tok parameter. (136)

    Please take a look at my suggestion from May 13th. You could easily pass the customer numbers to the back end and build a temp-table there to do the query. Not only will the query not break -tok, it will also almost certainly run quicker.
  5. jdpjamesp

    Example on how to calculate the week number of the year from a date

    I was trying to get a .Net solution working last week which was why I asked if it's Windows or *nix. Unfortunately support for ISO 8601 was only baked into .Net Core and not .Net Framework. Core has an ISOWeek class that does all the magic with very little effort. But that's not an available...
  6. jdpjamesp

    Error ** More than 1024 items in a single statement. Use the -tok parameter. (136)

    Wow that is never going to perform very well. Why not make a temp table with the customer numbers and then make the query: FOR EACH ttCustomer, each order no-lock WHERE order.co_num = "1" and order.warehouse = "primary" and order.customer = ttCustomer.customer :
  7. jdpjamesp

    Example on how to calculate the week number of the year from a date

    Are you working on a Windows or *nix solution?
  8. jdpjamesp

    Progress 8.3e recovery

    Hi there. Please provide the full command you're using to start the secondary broker. Usually that error indicates a casing issue in a parameter, or a parameter it doesn't recognise. Although - looking further I found this: -ServerType is a database startup parameter introduced in Progress...
  9. jdpjamesp

    Question What version of 11.7 for PASOE

    Hi Ashwani, I've moved your question to a separate thread so that it doesn't derail the original question. It's a good question. One thing that's very important to note is the dates that various versions were released. 11.7.4 is really old. Think about how much the security world has moved on...
  10. jdpjamesp

    Question I'm back.... Starting fresh with PASOE 11.7

    If you're starting from scratch I would start on OE 12.2 if at all possible. If you really can't then definitely 11.7.12. There are a lot of improvements in PASOE that you really don't want to miss out on. I also wouldn't be developing a Webspeed application in 2022. I would convert all the...
  11. jdpjamesp

    Progress ABL to c# convert

    It's not as easy as just converting it. C# doesn't have direct access to the database, so you can't translate the logic at all. You're going to have to provide a lot more context.
  12. jdpjamesp

    OpenEdge GUI development tools on 4K laptop screens--yay or nay?

    I had a few issues with some programs. IIRC Outlook was a problem for a while. But yes, Eclipse was the worst.
  13. jdpjamesp

    OpenEdge GUI development tools on 4K laptop screens--yay or nay?

    They work fine in my experience so long as you set the High DPI Scaling Override correctly.
  14. jdpjamesp

    Question What does business-object mean ?

    The number you're getting is the integer value of the handle. As Tom says, I would search the code base for other examples of where this is used and use that to work out what to do with the handle. You seem to be asking some very basic application specific questions here that we cannot help you...
  15. jdpjamesp

    Webspeed 'crashing' every hour

    Places to look for errors are: DB Log file Webspeed Broker Server Log Webspeed Broker Agent Log Any client logs enabled
  16. jdpjamesp

    Calling function from .NET WebBrowser

    Considering you can't do OO development in the AppBuilder, probably not.
  17. jdpjamesp

    Question Display HTML File

    I think your biggest limiting factor is going to be your Progress version. As @Osborne says there are other options, but you will be severely limited to be honest.
  18. jdpjamesp

    MultiThreaded AppServer?

    Thanks Rob - I've split it out into a new thread.
  19. jdpjamesp

    Setup Pasoe

    asbman etc are utilities for the classic AppServer and not for PASOE, hence why they aren't available. You will have already come across tcman when creating your instance. There is a utility called oeprop that you can use to edit the properties file, or you can do it with your text editor of choice.
  20. jdpjamesp

    TRIGGER PROCEDURE FOR FIND Hide same records

    I can't stress this strongly enough. DO NOT DO IT. PLEASE! This is not the correct process. It is deliberately opaque, convoluted and hard to maintain.
Back
Top