Search results

  1. durkadurka

    _sequence jumps by total record count through odbc .newval

    i thinking you mis-spell "thank you" lol
  2. durkadurka

    Schema upload (.df) through cmd line

    Maybe try this is your ~/.ssh/config ?????? Host 10.128.80.88 ServerAliveInterval 45 ServerAliveCountMax 6
  3. durkadurka

    Drop procedure error

    Hello my main man. Sorry cant be more help but it sometime happen to me too, best bet is restart db if possible and making sure none else is connect. Also making sure u not having progress data dictionary or procedure editore open and connected at database at same time. It seem not like that...
  4. durkadurka

    _sequence jumps by total record count through odbc .newval

    AND I ASSUME THAT U TRIDE ALSO SELECT pub.orderheadseq.nextval FROM SYSPROGRESS.SYSCALCTABLE MY MAIN MAN???
  5. durkadurka

    Drop procedure error

    Mak sure u r simply runnign 1 qry at a tiem my main man. Jdbc driver not handling concurrent updates brother!!!
  6. durkadurka

    Can we connect to Sqlite Database from Progress?

    No progress don't let u connect to non-openedge database silly lol. Only raeson language exist is for talking w/ openedge database!!! Maybe u could using sockets from porgress to connect to db like riak or couchdb, who come with rest-ful interface?? Y u want to downgrade to sqlite ne way...
  7. durkadurka

    _sequence jumps by total record count through odbc .newval

    TRICK IS NEXTVAL ACUALLY RUN FOR NUMBER OF RECORDS RETURNED IN "FROM". YOU CAN TRY SELECT TOP 1 pub.orderheadseq.nextval FROM PUB.orderhead OR EBEN BETTER SELECT pub.orderheadseq.nextval FROM SYSPROGRESS.SYSCALCTABLE CUZ THAT TABLE IS SMALL AND HAVE ONLY 1 RECORD!!
  8. durkadurka

    Some ideas

    wow u power trip much MOD? i thoght u brits are having stiff upper lip? besides was just funny picture, not making fun
  9. durkadurka

    Some ideas

    <snip><snip>
  10. durkadurka

    Some ideas

    and how does progress do TDE? u looking at their source code here or just some design docs that progress publish? i'm guessing it's not the source code because progress is a closed source company from mouth to sphincter. if it's the second case then u are just taking them at their word - if...
  11. durkadurka

    Some ideas

    u have benchmarks i can run to back this up? or is just progress sales flyer / corporate buzzword TLA game?
  12. durkadurka

    Some ideas

    yes, either built-in or with the pgcrypto module for advanced features Yes, Postgres has had schemas for many years, which provide multitenancy in a single database
  13. durkadurka

    Some ideas

    The OpenEdge DB (should be called ClosedSludge) is nowhere near as good as Postgres, the latter of which is actually both open and free. OE is unlikely to ever catch up to Postgres, which has been iterating quickly due to so many people jumping ship from MySQL due to the Oracle buyout. Check...
  14. durkadurka

    wait for the last async response

    Why not queue the waits in a temp-table? DEFINE TEMP-TABLE ttWaitList NO-UNDO FIELD hWait AS HANDLE. DO i = 1 TO 500: RUN <WSmethod> IN <WebService> ASYNCHRONOUS SET hProc EVENT-PROCEDURE "pExportResponse" (INPUT Ip1, OUTPUT Op1) NO-ERROR. CREATE ttWaitList. ASSIGN...
  15. durkadurka

    Progress Software does a 180… and goes back to the future?

    What is BPM supposed to be, anyway? The Wikipedia entry uses so many enterpisey buzzwords my head is spinning. I'm surprised "synergy" isn't in there somewhere. I'm guessing it uses some type of Markov chain engine internally to generate long strings of English sentences that make grammatical...
  16. durkadurka

    OpenEdge SQL: 'variable' feature similar to Oracle PL/SQL "RETURNING INTO"?

    I'll ask here since I didn't get a response on Progress's official Jive forum or SO: Is there any way to store a session variable in OpenEdge SQL similar to how Oracle's RETURNING INTO clause works? I need a column value set by a trigger to be available after running an INSERT without having...
Top