Recent content by blogin

  1. B

    Error when renaming tables located in another schema

    Supppose, I am logged on to a SYS account and want to rename table SCOTT.TESTTAB to SCOTT.TESTTAB1. If so, I'm getting the following error: ORA-01765: specifying tables owner name is not allowed. PL/SQL Developer obviously tries to execute command: 'rename SCOTT.TESTTAB to SCOTT.TESTTAB1'...
  2. B

    Scrollbars disappear when resizing maximized SQL Window

    In my situation clicking in the result grid does not help - scrollbars are still hidden. Bertrand
  3. B

    Scrollbars disappear when resizing maximized SQL Window

    Hello, when I execute query, which result grid contains more row/columns than can fit into the window, then vertical/horizontal scrollbar appears and that's correct. But, when SQL window is in maximized state and the main window resizes (even just a bit) both scrollbars disappear. That will...
  4. B

    Session reconnect problem when sql windows opened

    Thanks for the tip concerning tunrning off multiple connections. If I may, I would say that the functionality of multiple connections should consider the user's habits of previos versions, just to avoid confusion which I (probably not only I) experienced. For example, I'm often using the...
  5. B

    Session reconnect problem when sql windows opened

    Hello, I noticed new behavior of the PLSQLDev v.9 which is quite dangerous to me. Given that I have PLSQLDev with some SQL windows opened, logged-on to production database. Then I relog to the test database. After that all windows are still logged-on to Production database which is not obvious...
  6. B

    Problems reading and writing UTF-8 characters when OracleDictionary.CharacterSize is True

    Unfortunately, recently I realized that we have to migrate our all projects to a library that provides a better support. We were waiting a long time to fix some bugs with no response, but our customers are becoming less tolerant of this waiting. It seems that the company does not have the...
  7. B

    Incorrect TOracleScript parsing when using CREATE JAVA SOURCE with RESOLVE keyword

    Is it already known when this bug will be fixed ?
  8. B

    Incorrect TOracleScript parsing when using CREATE JAVA SOURCE with RESOLVE keyword

    Thank you for your prompt response. Is there any chance, that it will be fixed ? Unfortunately I cannot use TOracleQuery, because I need to load multiple commands from a file (among which is the one, mentioned above) and then execute them one by one. I think, that it won't be possible with...
  9. B

    Incorrect TOracleScript parsing when using CREATE JAVA SOURCE with RESOLVE keyword

    There are some problems when passing the following text to the TOracleScript.Lines property: CREATE OR REPLACE AND RESOLVE JAVA SOURCE NAMED A.B AS public class Test { public static String test(String in) { String result; return result; } }; / In that case, property Commands...
  10. B

    Wrong select result (carriage return characters)

    Yes, I know, but I thought that there is a newer version of DOA with this bug fixed or changed dafault state of ConvertCRLF to false - after several months of coding, sometimes I forget that this parameter must be switched to false.
  11. B

    Wrong select result (carriage return characters)

    I encountered the same problem in DOA version 4.1 (Delphi 2010), so I've got a question: is this a bug of a DOA or Deplhi's VCL ? If the former: is there a newer version of DOA than 4.1 with this bug fixed ?
  12. B

    PL/SQL Dev Test Window Doesn't Terminate on Error

    We have the same problems sometimes. It would be very helpful to have the possibility to close such a hanging test window, regardless the cause (database error or procedure creator's mistakes).
  13. B

    Executing additional SQL statements after creating new sessions

    Thanks, that's exactly what I need. Kind regards
  14. B

    Executing additional SQL statements after creating new sessions

    Hello. Our company was forced to execute additional SQL statements after each Oracle session has been created. It is needed to get more privileges than our accouts have by default and achived by executing "SET ROLE ... identified by ..." statement. Without this feature we will not be able to...
  15. B

    Service crash (multiple threads)

    Very similar errors (AV inside OCI) I had, when executed TOracleSession.LogOn() (and LogOff too) at the same time inside many separate threads. My solution was to create mutex which prohibits more than one logon/logoff at the same time. Bertrand
Back
Top