Recent content by Atl_Chris

  1. A

    Generating diagram files programmatically

    I wanted to find out if anyone has had success programmatically generating the text for a diagram file? When I open the file in pl/sql developer and click the update from DB button I recent a "Not Logged On" error message. I am indeed logged on because I can open a new Diagram window and drop...
  2. A

    Long passwords overflow into the database name in saved connections

    Excellent, I'll give it a try. Thanks, Chris
  3. A

    Long passwords overflow into the database name in saved connections

    I've done some additional research and have determined that the issue is not the password length but rather passwords containing @ symbols. Thanks, Chris
  4. A

    Long passwords overflow into the database name in saved connections

    I've found that passwords over 11 characters in length will overflow into the saved connections history in pl/sql developer on oracle. The overflowed characters appear at the front of the database tns entry and the next time I attempt to login with that saved entry, the login fails because of...
  5. A

    Multi-byte characters not displaying in data grid.

    Thank you! That resolved the issue.
  6. A

    Multi-byte characters not displaying in data grid.

    I copied this info from the pl/sql developer support information. Thanks, Chris PL/SQL Developer Version 7.1.5.1398 01.52701 - 30 user license Windows XP Professional 5.1 Build 2600 (Service Pack 3) Physical memory : 2,086,956 kB (1,051,856 available) Paging file : 4,025,084 kB...
  7. A

    Multi-byte characters not displaying in data grid.

    Thanks, I've set the NLS_LANG in the registry to : AMERICAN_AMERICA.UTF8 . The character is still not inserting and displaying as expected. Should that work for what I'm trying to test or do I need to set it to a Chinese language_territory? I'm new to the multibyte characterset arena and...
  8. A

    Multi-byte characters not displaying in data grid.

    I have a test table defined as follows: create table CLH_VARCHAR ( VARCHAR_COL VARCHAR2(100), NVARCHAR_COL NVARCHAR2(100) ) Our database charactersets are: 1 NLS_NCHAR_CHARACTERSET AL16UTF16 2 NLS_CHARACTERSET WE8ISO8859P1 I run the following inserts: insert into clh_varchar...
  9. A

    toad like schema diff?

    Our team switched most of our db tool usage to pl/sql developer from TOAD last year. Our TOAD usage primarily consists of doing large schema diff's as well as using the Session Browser. We would like to get rid of TOAD completely, however, the schema diff options in TOAD provide what we need...
  10. A

    Automating the beautifier?

    Thanks! That is exactly what we needed! Best Regards, Chris
  11. A

    Automating the beautifier?

    I was wondering if anyone has any sample code for automating the beautifier? I'm interested because we have about 700 files on the file system that need to be beautified. I'm not really interested in doing this manually. :) It appears that pl/sql developer supports some command line...
Back
Top