Recent content by Mr. Liu

  1. M

    Selected text position in plugin

    IDE_GetCursorX IDE_GetCursorY may help.
  2. M

    Keyboard shortcuts don't work

    What I found with PL/SQL Developer 16.0.2.2154 is that some keyboard shortcuts have gone if the UI language is Chinese! For example, I can not press ALT+A to replace all on find&replace window (see the screen shots).
  3. M

    Will the table alias affect SQL parsing?

    Hi, I have encountered the situation as follows: --The two following select statements works well: SELECT T.*, ROWID FROM SETT.T_PUB_AREA T; SELECT T.*, T.ROWID FROM SETT.T_PUB_AREA T; --But these two following select statements report the same error: "ORA-00923: FROM keyword not found where...
  4. M

    How to close a Command Window automatically after execution?

    In the editor of a Command Window, the command EXIT [APPLICATION] and QUIT [APPLICATION] both mean to quit a running script, instead of closeing the Command Window, so I have no idea how to close the Command Window automatically when the script has been executed. Is it possible that one of the...
  5. M

    Bugs on temporary table

    To create indexes on temporary table, PL/SQL Developer will apply the statement like this: -- Create/Recreate indexes create index RISKDATA.idx1 on RISKDATA.T_NOR_STOCKACCOUNT(stock_account); However, if you export this temporary table, you may see the statement like this: -- Create table...
  6. M

    How to export user objects with the owner prefixed the output file name?

    When exporting user objects by clicking the Export User Objects button on the Tools ribbon with FilePerObject option, is it possible that every output single file name is prefixed with the owner(e.g. scott.emp.tab instead of emp.tab)?
Back
Top