Recent content by yonderboi

  1. Y

    Missed syntax of create partitioned table table using Oracle 11.2

    The problem still exists, "enable row movement" option is not supported neither in table definition editor nor in ddl generator :(
  2. Y

    Highlighting savepoints

    A lot of enhancement has been done with Editor. Have you considered making savepoints highlighted as well? begin savepoint s1; rollback to s1; end; It would be nice of you to do it
  3. Y

    command window truncates numbers

    Sometimes command window truncates numbers. Here's an example: SQL> select 100/100000000 from dual; 100/100000000 ------------- 1E-6 SQL> select 100/123456789 from dual; 100/123456789 ------------- 8.10000007371 Using e-notation, it should've been "8.100E-07" of course
  4. Y

    Export as xls error

    "XLS Files(*.xls)"
  5. Y

    Export as xls error

    "Ask" is set
  6. Y

    Export as xls error

    Sure 1. select 1 from dual 2. Press "Export query results...", select "Excel file" 3. When selecting file type stay with "XLS-files", enter file name blahblahblah, then save. 4. The resulting file is blahblah.xlsx, not xls 5. Click to open it, you'll see "Excel cannot open the file...
  7. Y

    Export as xls error

    When I export a query as xls, the expansion of the resulting file is xlsx, but the real file format is xls. So when I try to open the file, an error message appears 11.0.6.1776
  8. Y

    Export user objects. Selecting objects

    When trying to export objects holding ctrl button, you can't select the bottom object in the export list.
  9. Y

    Cannot put non-latin strings

    What I noticed, editing clob field in "large lob editor" works properly
  10. Y

    Cannot put non-latin strings

    I'm not able to write any russian letter neither using real keyboard nor using on-screen keyboard
  11. Y

    Cannot put non-latin strings

    Starting from version 11.0.4, if I edit table data I cannot write non-latin letters in column fields. Copy+paste works fine, 11.0.3 used to work fine
  12. Y

    ORA-00933 in SQL Window

    Hello! Another problem with ORA-00933. Verson 11.0.3 How to reproduce it with HR schema 1) Open an SQL-window(tab 1) select * from jobs; 2) Using linked query go to employees table. So you have a tab 2 with select * from EMPLOYEES t where t.job_id = :m_job_id 3) Write down some text below...
  13. Y

    "Query data" dblink error

    Hello! Suggest I have a synonym of table in other DB, using dblink. When I put a cursor on a synonym and in a context menu run "Query data" I get an error "table or view does not exists". Plsqldeveloper is querying user.table, not user.table@dblink :(
Back
Top