Search results

  1. M

    How to migration from openedge 10.0B to 10.1B / 10.0B to 10.1A?

    How to migrate from openedge 10.0B to 10.1B / 10.0B to 10.1A? Hi, I facing 3 problems down here. 1) can 10.1B framework able to migrate 10.0B database to 10.1B? 2) if possible to migrate ICFDB 10.0B to 10.1B. all the object/application that we previously created one. can be use back? or...
  2. M

    table buffer

    hi elise, table buffer also is very useful when you want to do "find/for each" in the same looping for the "for each". example: /*======= error 's statement =========*/ for each tableA. find first tableA. end. /*==============================*/ /*======= Correct 's statement...
  3. M

    how to separate gst_audit table to another new database

    ok. actually at my environment, i did used different storage area like /dev/sda1 and gst area storaged in /dev/sdb1 but our concern is if gst_audit table too huge .....easy corrupt and slow. mmm.... headache (=,=).....
  4. M

    how to separate gst_audit table to another new database

    hi TomBascom, i think it can't because icfdb already connected using this logical name "icfdb". because of the openedge progress are already compiled using icfdb as logical name to the dot R file. therefore, i tried on changed the source code to point to icfdbgst, it works. but some of the...
  5. M

    how to separate gst_audit table to another new database

    i have do what ever you said. but, when i start my icfdb login. it prompted me that gst_audit table was not found. even i have set another database connect below the <service> icfdb already. may be the source code that compiled by progress is using icfdb.gst_audit prefix? even like that, I try...
  6. M

    how to separate gst_audit table to another new database

    :sulk: why mr Daved0331....never reply one? T.T....
  7. M

    i want to separate out gst_audit from icfdb

    hi~ can i do something like, separate out gst_audit table out from icfdb? like remove existing icfdb.gst_audit and create a new database icfdb_audit.gst_audit, thereafter, i connect both together. the audit will still proceed as normal? Thx :)... Regards, T@nMH
  8. M

    anyone know abt OpenEdge10.1B?

    Dear All, I having a problem when i trying to migrate my Object , my SDO , my viewer , browser ...etc... to OpenEdge10.1b, i found out that, the migration is totally different with last time migration, last time, we only need to run dynamic utilities and migrate. but now, i think structure...
  9. M

    Question about "AppServer://ServerName:5162/asbroker1"; Appserver URL

    Dear all, Can someone help me on the how to I get Appserver URL 's username, password and appserverinfo? in the progress procedure we can get it by using: cAppServerInfo = SESSION:NUMERIC-SEPARATOR + SESSION:NUMERIC-DECIMAL-POINT + SESSION:DATE-FORMAT +...
  10. M

    How to deploy Prodataset?

    thank you. and another way. if for the .net openclient. all the procedure need to use proxy generator to generate to dll? so that, .net can use it as reference?
  11. M

    How to deploy Prodataset?

    Dear All, Can someone show me how to code the prodataset step by step? coding sample? (^.^)... Thank you. Regards, TanMH
  12. M

    How to add multipule input transactions into a temp table.

    /*=================your coding==============*/ define variable i as int. do i = 1 TO 10: CREATE temp_table. ASSIGN temp_table.field1 = field1:SCREEN-VALUE NO-ERROR. temp_table.field2 = field2:SCREEN-VALUE NO-ERROR. temp_table.field3 = field3:INPUT-VALUE NO-ERROR. temp_table.field4 =...
  13. M

    How to add multipule input transactions into a temp table.

    input one record at a time? meaning input different batch of records into one same temp-table in the same time?
  14. M

    Calendar Control

    double click on the selected day.
  15. M

    How to add multipule input transactions into a temp table.

    define temp-table tempdb field a as character field b as integer. define variable i as int. do i = 1 to 10: Create tempdb. assign a = string(i). assign b = i. release tempdb. end. then it will create 10 records.
  16. M

    Front End using .Net back End database using Progress database

    hi, If i want to use ASP.net as my front end, and my back end database how am i going to update directly using ASP.net? another question is, how do I going to do if front end is ASP.net and backup end still use back the 4GL procedure? Thx Regards, TanMH:blush:
  17. M

    how to separate gst_audit table to another new database

    yes. I want more information about that. because i also looking that kind of solution.
  18. M

    how to separate gst_audit table to another new database

    thx. currently, what i have set is, i separate out the schema area, which mean /dev/sdb store non gst area, but /dev/sdc store gst area. because as i can see that, icfdb 's transaction very high, and required higher speed. i'm using Redhat8.0 and also Redhat Advance Server 4.0
  19. M

    how to separate gst_audit table to another new database

    mm...... because i found out most of the gst_audit might corrupt the database, therefore, i want to separate it and if really happend, i can create a blank gst_audit. table without corrupted by icfdb i'm using OpenEdge 10B03 and dynamics2.1A03 (with 9.1D09)
  20. M

    how to separate gst_audit table to another new database

    we have a problem on gst_audit table keep on growing until the size of the datbase very big, and we want to keep our database safe from unestimated growing.... can anyone tell me how to separate our gst_audit table to a new blank database?:confused::confused:
Back
Top