Search results

  1. rzr

    tool to read LOG-MANAGER output

    Hello, Is there any tool, utility or program that can help with reviewing the output of LOG-MANAGER? I am analyzing a production issue and ran a trace using LOG-MANAGER. The logmgr.log is large and was wondering if there were any options to easily digest this output. For now, I'm working...
  2. rzr

    Question Connect Salesforce to Progress

    Team, hope you are all keeping safe. We are on OpenEdge 10.2B08. Our current web apps and CRM connect to our OE databases through a custom JAVA Webservice layer. The JAVA layer does AppserverS:// connection into OpenEdge. Both Java (hosted on JBoss) and Progress are in same datacenter on...
  3. rzr

    Question Real Time Data Replication for BI Reporting

    Need inputs / suggestions. We have 15-20 production databases (10.2B). Schema is always in sync across these databases. Currently for BI reporting, we either dump data from specific tables into flat files or a ODBC connections into DB. How have other companies managed BI reporting from...
  4. rzr

    Answered Hung Appserver..

    Hello, The DBAs use the OEM interface to check status of the app servers. This does show error state or offline. Unfortunately, this still doesn’t show a state where the app server is online but hung. Is there any other way to identify hung AppServer state?
  5. rzr

    Question Concurrent Appserver Connection

    We are working on renewing licensing with Progress. Is there a way to know how many concurrent AppServer connection are being made for a given appserver (from VST or log files)?
  6. rzr

    Question How To Check Is File Is Writable On Unix

    Is there an easier / alternate way to check if user has write permission on a file? Here's what I'm doing now. I load the ls -lrt result into cResult and parse it to check permissions. DEFINE VARIABLE cOSCommand AS CHARACTER NO-UNDO. DEFINE VARIABLE cResult AS CHARACTER NO-UNDO. cOSCommand...
  7. rzr

    Tool For Customer Service Reps - Offtopic

    In our company, the customer reps skim / scan / search through thousands of warranty PDF documents stored on shared network drive manually each time they get a call warranty call from end customers. Are there any tool, similar to Dr. Watson, that can help them in this search process? What I'm...
  8. rzr

    Question Unix - How To Check If File Is In Use?

    Progress 10.2B / CHUI / UNIX. How do I check in UNIX if a file is already open and it's content being read by another program? Is this possible in UNIX. At the moment I'm thinking of creating a temp log file ( or a temp db record ) when this program executes, so if any other process were to...
  9. rzr

    Answered Chui Debugging

    Can I use ProSpy Plus to debug CHUI applications or is there an CHUI equivalent for ProSpy Plus? I'm currently using LOG-MANAGER system handle to trace the program flow in CHUI application.
  10. rzr

    Happy Holidays !!

    Hope you all had a wonderful Christmas .. Wishing you all a very happy new year in advance....Hopefully each of you had a busy and eventful year like I did with Progress 4Gl / OpenEdge ABL...Looking forward to an equally rewarding and satisfying 2015 :) :) ... And a BBBIIIIGGGGGG THANK YOU ...
  11. rzr

    Question How to Dynamically Delete Table Records

    Is there a way to dynamically delete records of a table? In my below code what goes with the DELETE ? DEFINE VARIABLE cTableName AS CHARACTER NO-UNDO. DEFINE VARIABLE iFieldCounter AS INTEGER NO-UNDO. DEFINE VARIABLE iExtentCounter AS INTEGER NO-UNDO...
  12. rzr

    Question Find total rows & columns in xlsx

    Hello All, It may be very obvious but can't figure this out this afternoon. I'm trying to load a xlsx file into a temp-table. Before I do that is there way to determine how many rows and columns does this file contain, so I know how many rows & columns I need to loop through?
  13. rzr

    Announcement from Southeastern Progress Users Group - Meeting March 25th @ Bravepoint in ATL‏

    this was posted on LinkedIn SEPUG group. Join us this month on Tuesday the 25th at Bravepoint in ATL for our long awaited REVIVE the SEPUG Meeting! Yes, it have been awhile since we have had an meeting (over 2 years), but there is a lot of exciting things going on in the Progress community...
  14. rzr

    Resolved Strange behaviour leading to Error# 11353

    OE10.1C / Windows 7. One of my team mate ran into error# 11353 while updating a field of a maintenance table we have. here is the code: FOR EACH Table EXCLUSIVE-LOCK WHERE Table.Field1 = "xxx" AND Table.Field2 = "yyy" : ASSIGN Table.Field3 = Table.Field3 +...
  15. rzr

    Question PROFILER - GUI

    Is there a better GUI program that I can use to view the profiler output file? I have one from http://communities.progress.com/pcom/docs/DOC-2808 that for some reason refuse to open. I keep running into a field not found compile error, the field is already defined in an include & the include is...
  16. rzr

    Question IF CAN-FIND() THEN FIND...

    Is it a better programming practice to do a CAN-FIND(Table...) and then FIND Table if record exists? IF CAN-FIND(FIRST Customer WHERE Customer.CustNum =1 ) THEN FIRST Customer WHERE Customer.CustNum =1 NO-LOCK NO-ERROR. Does this improve performance and/or decrease db read...
  17. rzr

    Answered Get User Name from OutLook

    How can I retrieve the user full name as dispalyed / stored in MS OutLook? I'm able to retrieve the login id of user on Windows using the below API. If it possible to use this login-id and then 'query' the MS OutLook to get the user full name? DEFINE VARIABLE chrUserID AS LONGCHAR NO-UNDO...
  18. rzr

    Answered _Connect - which db??

    Does _Connect show the details of the first connected database? If I have multiple Db's - how do I know which Db's info does the _Connect display.
  19. rzr

    Any advice ?

    At the place I work, we were expecting a Progress project to come along but that did'nt happen. The existing project will END SOON/IMMEDIATELY. We are being offered an option to move to "Middleware" technologies.... I'm just looking for your thoughts on what / how you would handle this...
  20. rzr

    Error # 44 when connecting to DB

    10.1C, Windows. All, I installed ProKB on my machine and I'm trying to connect to ProKB from datadictionary. I get below error: ** Database has the wrong version number. (db: 8365, pro: 8342). (44) I was able to figure out that value of "pro" is calculated as below for 10.1C / block size 8K...
Top