Search results

  1. A

    Reading from file

    Main semi-colons is "," - sub-semi-colon is "|". From line: ,,,,"abc,def,g|hi|||", I want to get abc,def,g Comma "," is a delimiter. So basically this char is reserved. It can not appear in any element of list. But i have 1 element where this comma is placed. The "|" are separators...
  2. A

    Reading from file

    The file is read by the lines. Each line is a list of elements where delimiter is "," (comma). Problem is that for example on 5th place can be character value with "" (semicolon) with comma inside i.e. line = ,,,,"abc,def,g|hi|||", the problem is that i can not read entry(5...
  3. A

    OpenEdge Debugger - doesn't work

    I use OpenEdge Architect Release: 10.2B. When i set brakepoint and run debug mode, then nothing happen. I see debug process in task manager - active, but Architect doesn't stop on then brakepoint line. When i close Architect i got error 4348 - Lost connection to Progress Debugger. (4348)...
  4. A

    Database Hot backup

    That is what I though. Sorry for my English. What I read, was fully understanding. Thank you.
  5. A

    Database Hot backup

    Now, we lose any data from today, if we restore system from backup. I would like to explain that I am not an Administrator but I am System Engineer, so administration it's quiet not know for me. The requirements are that system must work on-line all the time. Recovery database let us to...
  6. A

    Database Hot backup

    DB have more than 50GB. But files are about 2GB. Now we are doing off-line buckup. Stoping database, and then filie systems are copied. It takes about 30 min and some other tasks takes 1h. So, 2 h database is unavailable. In on-line buckup i would like to start after 00:00. A think it takes...
  7. A

    Database Hot backup

    I mean on-line backup, system must be available all time during backup. 24 hour per day, 7 day in week.
  8. A

    Database Hot backup

    Is there any tools to make hot backup? (OpenEdge 10.1.A) I mean database should work 24/7 and backup should be made every day.
  9. A

    IDE for Open Edge

    how can I set up? I am able to make rcodes from my procedures in OEA. But I have to pack them to my system library. Can I do this in OEA also? something like : $DLC/${KAT7}prolib ${RCODE}/<my_library> -create -pf ${RCODE}/prolib.pf -nowarn
  10. A

    IDE for Open Edge

    Yes right, there is JDBC connector, but in OpenEdge. I have started: proserve -db <dbname.db> -S 8030 -L 15000 -B 40000 -Mf 3 -s 91 -n 60 and then OEA have easy way to connect. But Progress 7 doesn't have JDBC, am I right?
  11. A

    IDE for Open Edge

    This tool is great. I am wonder how can I connect to Progress Database in version 7.
  12. A

    IDE for Open Edge

    I am downloading now, thanks. Yes it is big step for me. I try to put out samba server on linux, and then connect OEA to database. Thank you for help.
  13. A

    IDE for Open Edge

    thanks for answer, I found more posts about OpenEdge Architect: http://www.progresstalk.com/showthread.php?113406-Open-Edge-Editor I work on OpenEdge Release 10.1A02 for linux with licence, so I supposed that I don't have licence for OEA, but I don't know where can I check it? Is it...
  14. A

    IDE for Open Edge

    I am looking an editor for Progress 4GL or ABL procedures. Now I am using standard edit on linux Open Edge Database via putty. I heard that there is a plugin for eclipse. thanks for help.
  15. A

    Load df file in Data Dictionary

    It is working - thanks also the environment variables PROCFG should be set on $DLC/progress.cfg. Before I used different key.
  16. A

    Load df file in Data Dictionary

    I dumped table to df file in Data Dictionary. df file was generated, listed below: ADD TABLE "table-name" AREA "Schema Area" DESCRIPTION "text" DUMP-NAME "filename" ADD FIELD "a" OF "table-name" AS integer DESCRIPTION "text" FORMAT ">>>>>>>9" INITIAL "0" LABEL "text" POSITION 2...
  17. A

    Progress "extend fields" via JDBC

    ok, fine - issue is solved. Thanks. I found that character "Ś" (one of the field value) was making this problem in my situation. After change to "S" both selects are working.
  18. A

    Progress "extend fields" via JDBC

    PRO_ELEMENT("adres",1,1) - it's working. Great thanks. by the way select adres from customer; works as well, but before I had exception : [DataDirect][OpenEdge JDBC Driver]Transliteration failed, reason: invalid UTF8 data - something wrong whith text coding.
  19. A

    Progress "extend fields" via JDBC

    I can't get into extend field from DbVisualiser. I use JDBC driver. Field PUB."adres" in Progress is an array composed with 4 field in character types. In procedure editor I get o this field like below: find first customer where adres[1] = "....". or disp adres. (which gives me 4 fields...
  20. A

    Generating PDF

    I use linux and OpenEdge 10 A. Looking free and easy solution to generate PDF-file using Progress procedures. any ideas?
Top