Search results

  1. sathish

    Crystal report through odbc using the openedge application in windows 7 is slow

    HI Rob, I have tried this in three different machine which has windows 7 and windows 7 service pack 1 and the same problem occur in three pc. i checked some of the option and searched the same in the crystal report channels but could not find any solution. we are not able to debug more when...
  2. sathish

    Crystal report through odbc using the openedge application in windows 7 is slow

    when running the crystal report using the openedge 10.2a application is taking 15 seconds in the windows 2007 where as same thing is executed in 4 seconds in the other os i.e, windows 2003 server and windows xp. when we debug through applciation we found the problem that when opening the report...
  3. sathish

    How is -n configured in case of Named Users

    thanks a lot, it is very clear. As a named user i can login from 2 different devices. But can i login from 2 different devices at the same time? I mean already logged in from (device 1) and now trying to login with same named user from (device 2). I assume it should not be, because named user...
  4. sathish

    How is -n configured in case of Named Users

    Can you be more clear on Named users and Registered clients? if possible with an example. What i thought was if it is named users, we cannot login from 2 different systems at the same time. It is allowed for user X to have multiple session from his PC but not to have more sessions to the same...
  5. sathish

    How is -n configured in case of Named Users

    Thanks this makes things more clear. Yes, that will be taken care that no additional named users are allowed than the bought licenses. According to my understanding - 1 named user can connect to the application database any number of times from the same system but not from 2 systems...
  6. sathish

    How is -n configured in case of Named Users

    Thanks for your quick reply. My concern was becuase it is a named user, i really do not know how many times the user might start the same application and this requires database connection everytime. So was bit confused of what the - n should be. So according to you we need to set - n to...
  7. sathish

    How is -n configured in case of Named Users

    i udnerstand that total number of concurrent users can be configured with the -n parameter. we need to change our application using progress named users, will there be any change in configuring named users using -n. In case of Named users, i understand that user can login using the same...
  8. sathish

    Disconnecting the database does not disconnect the database gracefully

    Tom, Thanks for your help. I have checked once again in my application and your correct the reference of the diconnected database still avilable as some files runs persistently before this actually disconnect happens IS there any way that i can remove the refernce of the disconnected...
  9. sathish

    Disconnecting the database does not disconnect the database gracefully

    I have tried with two methods Method - 1 Created x.p ------------------------------------------------------------------------------------- content: DISCONNECT VALUE("1-a"). CONNECT -pf VALUE("c:\5-E.pf") . parameter file(c:\5-E.pf) values -db 1-5 -ld rep-wsl -N TCP -S...
  10. sathish

    Disconnecting the database does not disconnect the database gracefully

    Tamhas , I have tried it but that was not succesfull. May be i will clear explain the problem i am facing again I am strating my application with the 4 database 1-a 2-b 3-c 4-d At certain point of time during some printing operation in the applciation i have to disconnect the 1-a and just...
  11. sathish

    How to know the user who has locked a record

    Agreed that the code written in the #4 does not determine the exact record that you want to update is locked ? But the code written #4 is just generic sample code just to get the user who locked the record If you can see in the #4 i have mentioned the following parameter in the code...
  12. sathish

    How to know the user who has locked a record

    FIND FIRST dbname._file WHERE dbname._file._File-Name = "tablename" NO-LOCK NO-ERROR . IF AVAIL dbname._file THEN DO: for each dbname._lock WHERE dbname._lock._Lock-Id > 0 AND dbname._lock._Lock-RecId = Recid("recid of the record which locked")...
  13. sathish

    Disconnecting the database does not disconnect the database gracefully

    Thanks Tamhas for your reply! I am using the three different procedure one for disconnecting the database("wsl") and another one for connecting the another database("rep-wsl") and then another procedure for running a program which has to use the database ("rep-wsl") Please let me know if...
  14. sathish

    Disconnecting the database does not disconnect the database gracefully

    I need to disconnect the database(ld-wsl) in runtime and need to connect to similar Replication database(logicaldbname-repl_wsl) with differnt logical name into the same session during runtime. The disconnected database is not shown any more in the datadictionary but the problem is the...
Top