Recent content by protos

  1. P

    Saving UTF-8 encoded files?

    Ok! Nice to hear.
  2. P

    Saving UTF-8 encoded files?

    No, our database is CL8MSWIN1251. We use export in UTF for source control.
  3. P

    Saving UTF-8 encoded files?

    Hi. Why tool "export user objects" does not use encoding options and always export in ANSI (in my case). Is it a bug? pl/sql developer v12
  4. P

    Working with different schema

    Hi. What about whis problem? Main problem - When current schema changed in initializations SQL Sсript (connection manager), than PLSQL developer not display compilation errors. It's makes use extremely uneasy.
  5. P

    Working with different schema

    We have limited connections per user.
  6. P

    Working with different schema

    Yes, but after changing current schema PLSQL developer not understand this and some functionality does not working. Such as describe table, or code assistant, or ctrl-click on table or package. I believe that is because PLSQL Dev thinks that he is in original schema.
  7. P

    Working with different schema

    it's working only for one schema. If I want to change current schema after connection, I forced out to reconnect to connection with different initialization script. It is not handy.
  8. P

    Working with different schema

    Hi. In our organization all developers login in database with his own usernames/passwords. Then change current schema and working with objects in that schema. In toad there are useful functionality - combobox for change current schema. PLSQL Developer not perfectly working in this case, even...
  9. P

    string buffer too small when calling DBMS_OUTPUT.get_line

    Output truncating not reproduce, when I change nls_lang from "AMERICAN_AMERICA.CL8MSWIN1251" to "AMERICAN_AMERICA.AL32UTF8" on my PC. But it is not a solution, unfortunately.
  10. P

    string buffer too small when calling DBMS_OUTPUT.get_line

    I have 9.0.6. But output truncated. And my DB use UNICODE, if it is important in this case.
  11. P

    string buffer too small when calling DBMS_OUTPUT.get_line

    Hi. Is this PL/SQL developer restriction for output string with length more than 4000 characters? In next example I see only first 4001 characters in output: BEGIN dbms_output.put_line(LPAD(' ',4000,'1')||LPAD(' ',4000,'2')); END;
Back
Top