Search results

  1. tamhas

    Question Proper way to enable SQL?

    Note that -n is not the same thing as licensed user count. It might be worth reviewing your type of user license, who is actually using it in which way (e.g., multiple sessions by the same person or on the same device), and the like. This might allow you to either raise -n and still be within...
  2. tamhas

    Select big table

    True ... so Squirrel support? :)
  3. tamhas

    Select big table

    Indeed, sounds like a call to support is indicated, provided the OP is on support. Further reason to do it a different way.
  4. tamhas

    Select big table

    While this doesn't answer your question, I wonder why you would use a SQL query to do what a dump already does.
  5. tamhas

    Select big table

    You might try showing the query and the table indices so that we have at least a little information to go on. One might also ask what use is a query that returns over 4 billion rows...
  6. tamhas

    Am I allowed to post a Job here?

    Scroll down, there are 4 jobs boards at the bottom.
  7. tamhas

    Ads

    Still no sponsor label under Tom's name ...
  8. tamhas

    Ads

    It is there for Rob and I.
  9. tamhas

    passing temp tables in a generic way

    No, I was only listing JSON as one of many ways to pass data. In order to make a recommendation of the preferable way to exchange the data, I would have to know more about your actual requirements. I might note that I tend to frown on passing temp-tables regardless. Better to encapsulate them...
  10. tamhas

    passing temp tables in a generic way

    For starters, I would recommend that you *not* do big complicated things in constructors. If they fail, you are left with a class that doesn't exist and the error handling is consequently more complicated. Better to initialize the class with a minimal constructor and then use an Initialize...
  11. tamhas

    Question Deleting a dynamic dataset

    "Looks like" is not confidence inspiring. One should "know" what will happen.
  12. tamhas

    Call .cls from other file

    It is very unclear what you are trying to do or expecting to happen. As Stefan said the USING statement has no function than to allow the use of an unqualified class name in the remaining body of the class. I.e., being able to reference just "base" instead of "ProcedureLibraries.base"...
  13. tamhas

    Ads

    Never have seen ads, but then I use AdBlock Plus.
  14. tamhas

    Anyone know transform designer bottomline ??

    Is it even Progress? Hard to imagine someone upgrading in 2020 from 4 to 9.
  15. tamhas

    Converting the given time to seconds

    There are many different answers, depending. Is the time you have a string or a date-time datatype or what. Are you looking for seconds since midnight?
  16. tamhas

    Question smtpmail.p; Can we save the email to *.eml

    Or better a bcc.
  17. tamhas

    Resolved Strange problem related to streams and break by totals.

    Point being, based on the code you supplied, the error message is reasonable.
  18. tamhas

    Resolved Strange problem related to streams and break by totals.

    In your code, you never set yesno, so it will be false and so you will not have opened the stream.
  19. tamhas

    Question Type-II-database again

    Tom, what about the wisdom of writing in chunks vs using LOBs?
  20. tamhas

    Why use substitute

    This is a plus for other uses of substitute as well, e.g., some kind of slice and dice where one could assemble pieces, but it would require additional logic to detect and handle unknown values.
Back
Top