Recent content by Matias Borra

  1. M

    OpenEdge 10.2B03 - Linux - Access to data administration

    Understood. I'll have to use binary dump/load. Thanks again for your time. Matías.
  2. M

    OpenEdge 10.2B03 - Linux - Access to data administration

    Hi all. I've attached an image with the result of the showcfg command. I can't beleive that I need to have development license for loading D files. I may understand if LOAD DF file is unavailable, taking into account that I should recompile after loading a DF file, and for compiling I need...
  3. M

    OpenEdge 10.2B03 - Linux - Access to data administration

    I don't think that I need a development license because Load DF file is available, but after loading the database structure (and validating it was correctly loaded) the Load D file is unavailable, just like some other options.
  4. M

    OpenEdge 10.2B03 - Linux - Access to data administration

    Hi there... I'm trying to access data administration to load d and df files on a new database. I've read that the command should be /usr/dlc/bin/mpro -rx -p _admin.p. This command opens an application similar to data administration but saying Data Dictionary, and I just have some options...
  5. M

    Connecting Progress DB in ASP.Net

    Hi, I´m developing an ASP.Net project (C#) connecting a Progress 9.1E04 database. The problem that I have is that the application connect the database correctly, the database send the data correctly, but it never disconnect the user used to establish the connection. So, everytime I run a...
  6. M

    ASP.Net with Progress DB

    Fortunately SP9 is installed. I understood your ponit and while I was reading I figured out the way to resolve it. I can try a connection to the database with the usr/pwd entered by the user and if it returns no error, then OK else WRONG. Thanks again.
  7. M

    ASP.Net with Progress DB

    Casper, First of all, I work for a software development company which has a customer who has decided migrate its Business Logic from Progress to .Net. In a first stage, they will migrate just the logic, but in a second stage (not sure when) they will migrate the database to probably Oracle...
  8. M

    ASP.Net with Progress DB

    Hi there. I'm currently migrating a progress application to .Net. I'm having some problems with the ODBC driver, but I will post one by one. The first problem that I have is with the users validation, because in the progress application the password has been encoded with the ENCODE...
  9. M

    Concatenated SELECT

    I've found another solution. I don't know if it's better but I think it could be easier. FOR EACH Relacion_Tabla NO-LOCK: RUN mostrar.p RTA_Nombre_Tabla RTA_Campo_descripcion. END. Program mostrar.p FOR EACH {1}: DISP {1}.{2}. END. Thanks anyway for your cooperation. Matias.
  10. M

    Concatenated SELECT

    Hello, I'm trying to carry out a query (FOR EACH, SELECT or whatever) from a table which name is in another database field. Pseudo Code: FOR EACH related_table.table_name NO-LOCK: DISP related_table.field_to_show. END. where related_table.table_name contains the name of the Progress...
  11. M

    How to dynamically sort a Browser

    Excelent !! It worked. Thanks for all. Matias.
  12. M

    How to dynamically sort a Browser

    Hi there ! I'm trying to develop a standard window to use it as a template. So I want to sort its browser by a column after clicking in the column name but without specifying the name of the column in the open-query. For example with: ON start-search DO: open query ... by 1 /* where 1...
Top