Search results

  1. TomBascom

    NEXT-VALUE throws 12747 ERROR (You must provide valid connected database name to dynamic....)

    https://community.progress.com/s/article/P80479 Maybe you have somehow managed to connect more than one database? Does your code use CONNECT statements?
  2. TomBascom

    NEXT-VALUE throws 12747 ERROR (You must provide valid connected database name to dynamic....)

    Thanks for the complete error message. I was mistaken, that IS a dynamic something. Have you tried using NEXT-VALUE( dbName.sequenceName )
  3. TomBascom

    NEXT-VALUE throws 12747 ERROR (You must provide valid connected database name to dynamic....)

    That code that you are showing is not a dynamic anything so… either the error message is erroneous or you are looking at the wrong bit of code. Seeing the full and complete error message would, of course, be helpful. And if there are multiple errors occurring please share all of them.
  4. TomBascom

    PUG Challenge 2024

    If you have been waiting on the detailed schedule - it's up!!! Prague Schedule Boston Schedule If you are already registered: Congratulations! You're going to have a great time and learn a TON about OpenEdge. If you're not registered: What? Why Not? What are you waiting for! Get to PUG...
  5. TomBascom

    Question Command to stop PAS

    On the other hand... You're doing this "so that we can backup the db". Why? Are you unaware of "probkup online"?
  6. TomBascom

    Question CIM function

    CIM is a very QAD/MFGPro specific bit of tooling. You would be better off asking in the QAD/MFGPro forum.
  7. TomBascom

    OERP with managed databases

    No. Adding dsrutil capabilities to the admin server commands (maybe “dsrman” or “rplman”) is similar to some long-standing enhancement requests though. For instance: https://openedge.ideas.aha.io/ideas/OPENEDGE-I-830
  8. TomBascom

    Question Way to delete records of table from database? (DBA related query using and utility)

    Two other common reasons for an urgent need to purge data: 1) Someone thinks that it will solve a performance problem. If that turns out to be true then the real problem is the quality of the WHERE clause or the lack of proper indexes to support that WHERE clause 2) You're hiding something...
  9. TomBascom

    "Conversion" of NetCode to 4GL | PdfSharp

    For starters, OE uses ":" where C# uses ".", and "." where C# uses ";".
  10. TomBascom

    Question Way to delete records of table from database? (DBA related query using and utility)

    Sure, anyone with permission can delete records. If you want to delete an entire table there is always "drop table". Performance will pretty much suck if the table is of non-trivial size. If you know that a certain table will need to be frequently purged completely (maybe it is a "scratch"...
  11. TomBascom

    "Conversion" of NetCode to 4GL | PdfSharp

    So you are simply trying to copy & paste the C# code into an OpenEdge editor? Do you have any OpenEdge experience at all? Or are we starting from scratch?
  12. TomBascom

    "Conversion" of NetCode to 4GL | PdfSharp

    What have you tried? What does you attempted translation of that code look like? And what is the nature of the "difficulties" that you are experiencing?
  13. TomBascom

    Resolved Progress 12.2.14 - using SQLEXP ends in Exception at (date): java.lang.OutOfMemoryError

    Thanks for reporting back! It's always good to know that a proposed solution worked. Future readers won't be wondering about this one.
  14. TomBascom

    PUG Challenge 2024

    I cannot emphasize enough - if you are serious about working with OpenEdge, you need to attend PUG Challenge! The wealth of information and experience being shared is incredible. It is easily the most bang for your buck in the OpenEdge world. We are going to talk about old stuff and new stuff -...
  15. TomBascom

    PUG Challenge 2024

    One Great Conference - Two Great Locations! Prague, September 18-20 or Boston September 29 - October 2 The countdown to PUG Challenge 2024 has begun! Join us for an exciting event where innovation and expertise converge in the world of Progress OpenEdge technology. This year's conference...
  16. TomBascom

    Failure of a trigger to record the data

    The correct answer is to update to a supported version of OpenEdge and to then use OE Auditing. You claim to be running 10.02B which, so far as I know, is not an actual release. Did you perhaps means 10.2B? (no extra "0"). OE Auditing does exist in that version, it was introduced with 10.1B...
  17. TomBascom

    Conversion.

    You have added some code page conversions to one of those DLCs but not to the other. So do whatever you did to the one that has them to the one that does not. You might also want to compare $DLC/startup.pf in the two DLCs and see if there are relevant differences. This might be a good place to...
  18. TomBascom

    Conversion.

    There is no such thing as "32 bit database", there are databases that were started with 32 bit executables and there are databases that are started with 64 bit executables. If your mpro startup parameters do NOT contain -S portNum then you are trying to connect via shared memory. In that case...
  19. TomBascom

    We need to use test server and test databases as a prod.

    In that case your requirements for db admin and application admin are basically the same as "old PROD". I can't see why anything would change there. You might have to update your various scripts and config files to reflect new host names, IP addresses and ports and paths but that's not really a...
  20. TomBascom

    Conversion.

    Databases don't have "bitness". The installed executables do. There is no conversion of databases between 32 bits and 64 bits. There is nothing to do. You access the database with either 32 bit or 64 bit executables. If you are making shared memory connections everything needs to run from the...
Back
Top