Search results

  1. P

    How can I extract a specific line from Hosts and Services File?

    hello go to C:\WINDOWS\system32\drivers\etc Edit hosts file and add the sever IP (if the server is not the localhost) Eg:- 10.202.0.13 Sever Computer name (I think it is case sensitive) Then Edit services File and add the line for each DB started in the server sports2000...
  2. P

    Behaviour of Find statement

    May be ur issue is related to the following :- If there is a one exact match, even though it is a substring of another match, then it is considered a unique hit. It will NOT be considered AMBIGUOUS. Consider the following example: FIND testfile WHERE a = '1' AND b BEGINS '1234'. If there are...
  3. P

    Combo Box/Drop Down List Problem in 9.1

    If my understanding is correct .This is known issue Please refere KB P101031 Regards Philip P oommen
  4. P

    Behaviour of Find statement

    please double check following with the local db 1. Index rebuild (May be index corrupted) 2. No-error is using with the Find statement ? 3. Data is same ? Regards Philip P oommen
  5. P

    Warning in DBanalysis

    FYI What is the RM Chain? The Progress Database manager maintains a list of blocks in the database which have free space in them, and are therefore eligible for record additions. This list is called the RM Chain. It is important to note that this list does not contain ALL blocks in the...
  6. P

    Close frame and return to previous

    If it is window it should work. If it is multiple frames then u have to hide the active frame. MOVE-TO-TOP() and MOVE-TO-BOTTOM() methods or the HIDE and VIEW statements to manipulate the frames at runtime. Regrds Philip P oommen
  7. P

    Close frame and return to previous

    Instead of quit Try APPLY "CLOSE":U TO THIS-PROCEDURE. Regards Philip P oommen Code: on choose of btn_exit do: quit. end.
  8. P

    Creating a useful file from a binary dump

    Status: Unverified GOAL: How to migrate a Progress database to MS SQL Server using Progress Utility FACT(s) (Environment): Progress 9.x OpenEdge 10.x FIX: The easiest way is to use the Progress to SQL Server utility From Data Administration. 1 Have an existing MS SQL SQL Server Database to load...
  9. P

    Dynamicly capture Tables

    If the code is an executable code then we can find out the read frequency in the db with the help of a VST table called _Tablestat. You have to start the session fresh and execute the mentioned the code and run the following code For Each _tablestat no-lock : Find _file where...
  10. P

    Dynamic Fill In

    For each k: CREATE FILL-IN hFillin[k] ASSIGN ROW = k + 0.24 COL = 2 WIDTH = 38 HEIGHT = 1 NAME = "Fillin-" + k FRAME = FRAME frame-b:HANDLE VISIBLE = TRUE SCREEN-VALUE = k. End. Is the underlined statement u r expecting ? Or k...
  11. P

    string search and replace

    Please try the following for a replace DEF VAR s1 AS CHAR INIT 'c:\junk\test.txt' FORMAT "x(20)". S1 = REPLACE (s1,'\','\\'). Disp S1 Regards Philip P Oommen
Back
Top