Recent content by Joachim Rupik

  1. J

    Browser Extender version 2.8 is available

    We are glad to announce the release of version 2.8 of our Browser Extender plug-in. Hope you will like it. You can download Browser Extender 2.8 from Download section. For detailed information, please go to News section.
  2. J

    Spatial Index?

    Spatial indices are visible in browser, but index column is not visible.
  3. J

    suppress save dialog...

    You can check if window is executing (IDE_IsWindowRunning)and wait.
  4. J

    suppress save dialog...

    You can use OnWindowClose and return 2. This function allows you to take some action before a window is closed. You can influence the closing of the window with the following return values: 0 = Default behavior 1 = Ask the user for confirmation (like the contents was changed) 2 = Don
  5. J

    Q: why does Find database objects cause an option to commit?

    It is because every select statement over a dblink starts a transaction, and you should commit after every select over dblink.
  6. J

    Possibility to connect to database via full connect string?

    You can always write a whole connect string in a first field (username) on Logon dialog.
  7. J

    Enhancement Request

    Hello, You can do it easily using Browser Extender plugin. You can create a simply pascal extension with the following code in OnClick event: program t1; begin If IDE_WindowHasEditor(True) then IDE_SetSelectedText(IDE_GetEditorHandle, 'select * from #oowner.#oname;' + #13#10); end. When...
  8. J

    Broken links after upgrade

    Hello Marco, Unfortunately after UBB upgrade all cross reference links are broken! Is it fixable?
  9. J

    command window doesn't exit on exit

    Yes, when typed-in in an editor tab. It works on command prompt in dialog tab.
  10. J

    New. Current(!) execution time on Sql Window

    You can use Browser Extender plugin (starting from 2.7 version). Unfortunately the pascal interpreter is not multithreded so you can use the extension for a single execution. Below you can find an extension "Execute and show elapsing time": PL/SQL Developer Browser Extender Command [MAIN]...
  11. J

    Custom *Kill* in SESSIONS window?

    You can use Browser Extender plug-in, and create an extension which will be used in Session Window. Below you can find an example which disconnects session (alter system disconnect session '#sid, #serial#' post_transaction immediate). Copy and paste the "code" into a separate file with ".be"...
  12. J

    TOracleSession.ExternalLDA

    Please look into the following topic: Oracle 8 question . You can download a demo from there.
  13. J

    Possible bug? Export User Objects for partitioned tables

    or, you can use "Partition clause Regenerator" Browser Extender extension. You can read about it at our forum (bottom of the page). Using that extension you can for example hide system defined subpartinion names. We have also created an extension to better support dbms_metadata.get_ddl...
Back
Top