How Do I tile SQL Worksheets in SQL Developer 3.2.2

I've spent an hour trying to figure out how to tile SQL worksheet windows in SQL Developer 3.2.2. Help! Am I stupid or is it possible?
Thanks
Jamie

If you're referring to Windows vertical or horizontal window tiling, we don't support that with documents in SQL Developer. However, you can take your worksheets and create new tab groups. Just mouse-right on your worksheet tab and say 'New Document Tab Group.' You can repeat this as many times as you want.
You can also drag a Worksheet to get left/right or top/bottom worksheets so you can work on multiple documents/scripts simultaneously. Here's a quick example:
http://www.thatjeffsmith.com/archive/2011/11/sql-developer-quick-hit-split-and-side-by-side-editors/

Similar Messages

  • How to see the content of stored prodecure in sql plus worksheet or sql.plu

    Hi
    i want to see the content of the stored procedure on sql worksheet or sql plus. is there any command for this ?
    please let me know
    thanks

    Hi Anil:
    Following is for SQL*Plus
    If you are logged on to the schema that owns the stored procedure you can issue the following query:
    select text from user_source where name = 'MY_PROG_NAME'
    ORDER BY TYPE, LINE ASC;
    Where MY_PROG_NAME could be the name of a package, procedure or function. Note that when you look at a package source you'll get the specfification and the body listing, in that case you may want to split them into two with following queries:
    spool MY_PROG_NAME.spec
    select text from user_source
    where name = 'MY_PROG_NAME'
    AND TYPE = 'PACKAGE'
    ORDER BY TYPE, LINE ASC;
    SPOOL OFF
    spool MY_PROG_NAME.body
    select text from user_source
    where name = 'MY_PROG_NAME'
    AND TYPE = 'PACKAGE BODY'
    ORDER BY TYPE, LINE ASC;
    SPOOL OFF
    If you are logged on as SYSTEm, you can substitute USER with DBA and look at code for all schemas, however you may need to add OWNER to your query.
    DESC USER_SOURCE
    Name Null? Type
    NAME NOT NULL VARCHAR2(30)
    TYPE VARCHAR2(12)
    LINE NOT NULL NUMBER
    TEXT VARCHAR2(2000)
    DESC DBA_SOURCE
    Name Null? Type
    OWNER NOT NULL VARCHAR2(30)
    NAME NOT NULL VARCHAR2(30)
    TYPE VARCHAR2(12)
    LINE NOT NULL NUMBER
    TEXT VARCHAR2(2000)
    Hope this helps,
    Thomas

  • How to connect as different user in SQL Plus Worksheet in SQL Developer

    This is driving me nuts! I have a script with different "CONNECT" commands to different schemas. What is the right synatx when using SQL Worksheet in SQL Developer when connecting to a different user? Greatly appreciate help on this. Thanks!

    Which version of SQL Developer are you using? What syntax are you using?
    Using SQL Developer 2.1.0.63.73, running selected statements as a script, I could get connect to work fine with the following examples:
    connect
    select user, global_name from global_name;
    connect;
    select user, global_name from global_name;
    connect user/password@tnsalias
    select user, global_name from global_name;
    connect user/password@tnsalias;
    select user, global_name from global_name;Unfortunately, even though the connect on it's own prompts for user, password and tns alias (and says a blank tns alias is the current connection), the following don't work:
    connect user/password
    select user, global_name from global_name;
    connect user/password;
    select user, global_name from global_name;Also note that the connection performed by this only exists while the script is being executed - only the script stops/ends the connection is disconnected.
    theFurryOne

  • How to execute procedure in SQL Worksheet ?

    Hi, anybody know, how I can execute procedure here?
    I try EXEC sec_roles, EXEC security_admin.sec_roles, EXECUTE - there is a SQL statement error. When I use CALL - there is no such procedure (I have execute previleges).
    Although in SQLPlus EXEC works, but there are problems with standard SQL commands (all of them returns "2" no matter what content is).
    Any ideas?
    Regards
    Krzysztof

    exec procedure(parameters) is a sql plus (and a few others) shortcut for
    BEGIN
       procedure(parameters);
    END;So try that then pressing/clicking whatever it is in sql worksheet that makes a statement run.
    Note that if your procedure has parameters defined as OUT or IN OUT, you will need to supply a variable to accept the returned value(s).
    John

  • How can I turn off auto formatting whilst working in the SQL Worksheet?

    Friends,
    Hope you can help with a quick question.
    Is it possible to stop the auto formatting of SQL statements in the SQL worksheet?
    e.g. When I type select * from dual it auto formats to becomes SELECT * FROM DUAL when I hit return.
    I am using SQL Developer 2.1.1.64
    Thanks in advance

    Preferences - Code Editor - Completion Insight - uncheck Change case as you type
    Have fun,
    K.

  • Extension API 1.5.1: How can i open a SQL Worksheet ?

    Hi,
    i try to build a simple Table API generator. Everything is finish. The only thing i need is open the generated sql script inside a SQL Worksheet for preview. I try following code:
    RaptorDBAddin.getSqlOpener().openNewEditor("select sysdate from dual;", getDBObject().getConnectionName());
    But i get following compile error:
    Error(32,9): class oracle.ide.db.model.SqlNode not found  in class de.team.sqldev.generator.GenerateAction
    My extension.xml looks like:
    <extension id="team.sqldevgenerator" version="1.0" esdk-version="1.0"
    rsbundle-class="team.sqldevgenerator.Res"
    xmlns="http://jcp.org/jsr/198/extension-manifest">
    <name>team.sqldeveloper.generator</name>
    <dependencies>
    *<import>oracle.ide</import>*
    *<import>oracle.sqldeveloper</import>*
    *<import>oracle.javacore</import>*
    </dependencies>
    <hooks>
    <feature-hook>
    <description>This Extension provide generation of database objects based on table definition such like sequence, trigger, table-api-package</description>
    </feature-hook>
    <jdeveloper-hook xmlns="http://xmlns.oracle.com/jdeveloper/1013/extension">
    <addins>
    <addin>de.team.sqldev.generator.GeneratorAddin</addin>
    </addins>
    </jdeveloper-hook>
    <sqldev-navigator-hook xmlns="http://xmlns.oracle.com/sqldeveloper/sqldev-navigator">
    <descriptor>/de/team/sqldev/generator/table.xml</descriptor>
    </sqldev-navigator-hook>
    </hooks>
    </extension>

    If the WMVs don't contain DRM, use a product such as VLC.
    If the WMVs do contain DRM, no Mac OS X software will open or convert them.
    (120714)

  • How to show all available fields in the SQL Worksheet's Code Assist pop-up

    I have table with many fields and wanted to scroll through the fields list by typing something like:
    select a. from test a
    The Code Assist pop-up (after the 'a.') that shows the field list shows '...' as last available field before '*'. Many fields are not shown on the pop-up. I have to click on the '...' field to tell the pop-up to refresh itself with a full list of fields. Is there a way that I can configure SQL Worksheet to always show all fields on the pop-up, instead of having to select '...' on every attempt to add a field to the select SQL?

    Sure, happens to everyone ;)
    Not the case here, but often the OP gives credit to the first to respond rather than acknowledging everyone's effort and time invested, which of course is independent from posting order. Add that to the nicely conceived, but badly implemented reward point system. Should have moderators for that to work as it should. Sooo many questions remain unanswered and/or unrewarded. I even think you're the most underrated helping hand on the forum. Let's hope time will rectify all that...
    Regards,
    K.

  • SQL Worksheet unaccessible for keyboard

    Hi,
    I have SQL Developer on Ubuntu 8.10
    Platform      1.6.0_10
    Oracle IDE     1.5.4.59.40
    Versioning Support     1.5.4.59.40
    Sometimes I'm unable to type in SQL Worksheet area, mouse actions work good (like copy, paste, cut).
    Does somebody know how to solve it.
    Thanks!
    Andrey Dmitrenko

    Hi
    Thanks for the response, however even after loading the Default Accelorator preset & then restarting SQLDeveloper, I can't enter anything into the SQL worksheet. Is there anything further I can try (i.e. trashing the prefs etc)?
    Thanks for any assistance on this
    Simon
    P.S. Ubuntu 9.04

  • What happended to "Save As" in the SQL Worksheet?

    I am using 14.22 in Windows XP. In the previous version 13.43 I used to:
    1) Open a new SQL Worksheet.
    2) Type in statements.
    3) Press Ctrl-S to save the contents of the SQL Worksheet panel to a new file, an "Open File" dialog appeared.
    4) Enter file name for new SQL script file.
    Now when I press Ctrl-S I do not get the "Open File" dialog. The Ctrl-S saves the SQL Worksheet contents to a temp file in my user/.sqldeveloper/tmp directory. I have to copy the contents of the SQL Worksheet panel into a text editor and save it to a SQL file. Or I copy the SQL file in my temporary directory to the new file I want.
    I saw in another thread that the SQL Worksheet contents is not being saved to a temporary file to help prevent loss of contents if there were a machine outage. This change may have caused this problem.
    I use the "Save As" functionality in the SQL Worksheet a lot. That was how I create SQL files.
    How do I create a SQL script in SQL Developer now?
    Mike

    It got dropped by accident but it will be back in for EA7 that we expect to release any day now (just writing the release notes for it now). We have the Save As back in the menu and a right-click Save File from the Worksheet to save your work.
    -- Sharon

  • Invalid Column error in Access SPT & SQL Worksheet!

    SQLWKS> select x.rr,
    2> x.name,
    3> x......,
    4> x.mail_addr1,
    5> x.mail_addr2,
    6> x.mail_addr3,
    7> x.mail_addr4,
    8> x.mail_postcode,
    9> x....,
    10> x........,
    11> x........,
    12> x........,
    13> x........,
    14> a_b_c(x.mail_postcode) z 'this is the line that calls
    function 'a_b_c' (using x.mail_postcode as the variable) which
    throws the error below in access and sql worksheet.
    15> from x
    16> where (.........
    17> or ..... is null)
    18> and not exists
    19> (select 'x' from .......where .......=
    20> x.rr)
    21>
    a_b_c(x.mail_postcode) z
    ORA-00904: invalid column name
    If anybody has any idea how to get around this please email me
    or post you comments.
    Thanks
    Leslie
    null

    SQLWKS> select x.rr,
    2> x.name,
    3> x......,
    4> x.mail_addr1,
    5> x.mail_addr2,
    6> x.mail_addr3,
    7> x.mail_addr4,
    8> x.mail_postcode,
    9> x....,
    10> x........,
    11> x........,
    12> x........,
    13> x........,
    14> a_b_c(x.mail_postcode) z 'this is the line that calls
    function 'a_b_c' (using x.mail_postcode as the variable) which
    throws the error below in access and sql worksheet.
    15> from x
    16> where (.........
    17> or ..... is null)
    18> and not exists
    19> (select 'x' from .......where .......=
    20> x.rr)
    21>
    a_b_c(x.mail_postcode) z
    ORA-00904: invalid column name
    If anybody has any idea how to get around this please email me
    or post you comments.
    Thanks
    Leslie
    null

  • Formatting characters shown in SQL worksheet in version 2.1.1.64

    Hi,
    Using version 2.1.1.64
    When I type SQL in the SQL worksheet is it showing formatting characters - for example all spaces display as a light grey dot and a carriage return character appears at the end of every line.
    The formatting characters were not displayed initially when I started to use this version. Ì don't know how this setting got turned on but there does not appear to be a Preferences setting to turn it off. Any ideas?

    Tools -> Preferences -> Code Editor -> Display -> Show Whitespace Characters
    should take care of your problem.

  • SQL Developer 1.5.1 's SQL worksheet. - Verifying Results

    Using SQL Developer 1.5.1 's SQL worksheet....
    is there a way to get SQL Developer 1.5.1 's SQL Worksheet to display the number of records deleted, updated, etc? I just deleted a record and I couldn't tell if it actually ran or not.
    When I ran a 'select' it displayed the records in the results window. When I ran the delete, it didn't show anything. I just tried an update and it shows nothing either. I don't want to do a commit without knowing how many records were affected.
    Thanks...

    Assuming you are running your SQL as statements (F9), the status bar at the bottom left will provide the feedback for each statement - in the case of deletes/updates it should show the number of records deleted/updated. As the status line is overwritten with each statement, you will need to check after each statement completes. When running your SQL as scripts (F5) the feedback will be displayed on the Script Output tab.
    theFurryOne

  • SQL Developer// new install // SQL Worksheet will not open

    New install of SQL Developer 1.1.2.25 on WinXP. Oracle 9.2 database on same machine. Database connection to 10.2 database instance on other machine was successful. When I attempt to open SQL Worksheet on the client machine, I get the following errors:
    java.lang.IllegalAccessError: tried to access class oracle.ide.net.IdeURLStreamHandler from class oracle.ide.net.URLFileSystem$1
         at oracle.ide.net.URLFileSystem$1.createURLStreamHandler(URLFileSystem.java:87)
         at oracle.ide.boot.URLStreamHandlerFactoryQueue.createURLStreamHandler(URLStreamHandlerFactoryQueue.java:119)
         at java.net.URL.getURLStreamHandler(URL.java:1104)
         at java.net.URL.<init>(URL.java:393)
         at java.net.URL.<init>(URL.java:283)
         at oracle.ide.net.URLFactory.newURL(URLFactory.java:636)
         at oracle.ide.net.URLFactory.newURL(URLFactory.java:136)
         at oracle.dbtools.sqlworksheet.sqlview.SqlEditorNode.<init>(SqlEditorNode.java:65)
         at oracle.dbtools.sqlworksheet.sqlview.SqlEditor.openNewEditor(SqlEditor.java:1914)
         at oracle.dbtools.sqlworksheet.sqlview.SqlEditor.openNewEditor(SqlEditor.java:1973)
         at oracle.dbtools.sqlworksheet.sqlview.SqlEditor.openNewEditor(SqlEditor.java:1991)
         at oracle.dbtools.sqlworksheet.sqlview.SqlEditorWizard.invoke(SqlEditorWizard.java:109)
         at oracle.ide.wizard.WizardManager.invokeWizard(WizardManager.java:310)
         at oracle.dbtools.sqlworksheet.sqlview.SqlEditorController.toolbarAction(SqlEditorController.java:1008)
         at oracle.dbtools.sqlworksheet.sqlview.SqlEditorController.handleEvent(SqlEditorController.java:561)
         at oracle.ide.controller.IdeAction.performAction(IdeAction.java:551)
         at oracle.ide.controller.IdeAction$2.run(IdeAction.java:804)
         at oracle.ide.controller.IdeAction.actionPerformedImpl(IdeAction.java:823)
         at oracle.ide.controller.IdeAction.actionPerformed(IdeAction.java:521)
         at javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:1849)
         at javax.swing.AbstractButton$Handler.actionPerformed(AbstractButton.java:2169)
         at javax.swing.DefaultButtonModel.fireActionPerformed(DefaultButtonModel.java:420)
         at javax.swing.DefaultButtonModel.setPressed(DefaultButtonModel.java:258)
         at javax.swing.AbstractButton.doClick(AbstractButton.java:302)
         at javax.swing.plaf.basic.BasicMenuItemUI.doClick(BasicMenuItemUI.java:1000)
         at javax.swing.plaf.basic.BasicMenuItemUI$Handler.mouseReleased(BasicMenuItemUI.java:1041)
         at java.awt.Component.processMouseEvent(Component.java:5488)
         at javax.swing.JComponent.processMouseEvent(JComponent.java:3126)
         at java.awt.Component.processEvent(Component.java:5253)
         at java.awt.Container.processEvent(Container.java:1966)
         at java.awt.Component.dispatchEventImpl(Component.java:3955)
         at java.awt.Container.dispatchEventImpl(Container.java:2024)
         at java.awt.Component.dispatchEvent(Component.java:3803)
         at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:4212)
         at java.awt.LightweightDispatcher.processMouseEvent(Container.java:3892)
         at java.awt.LightweightDispatcher.dispatchEvent(Container.java:3822)
         at java.awt.Container.dispatchEventImpl(Container.java:2010)
         at java.awt.Window.dispatchEventImpl(Window.java:1774)
         at java.awt.Component.dispatchEvent(Component.java:3803)
         at java.awt.EventQueue.dispatchEvent(EventQueue.java:463)
         at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchThread.java:242)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:163)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:157)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:149)
         at java.awt.EventDispatchThread.run(EventDispatchThread.java:110)
    How do I fix this?
    Thanks!
    TL

    Solution: The Redneck Tuneup for Windows
    1) With the transmission in neutral, hold the gas pedal all the way down to the floor for 1 minute.
    2) Restart the computer.

  • Mac - SQLDev 1.5 - Unable to use carriage return/enter in SQL Worksheet

    This morning I brought up SQLDeveloper (1.5). I connected to a database. Started typing in a query and the carriage return (or enter) does not work. If I go to a menu or the list of files, it does work. Just not in the SQL Worksheet. I removed the application and re-installed. Still the same. I do not see this behavior in any other application or situation. Just within the SQL Worksheet of SQLDeveloper.
    As a check, I did exit all other applications, rebooted, and tried again. Still no joy. I have the latest updates of Leopard and SQLDeveloper. I am guessing it is not using the latest Java but rather what was deployed with SQLDeveloper.
    Any thoughts on how I could lose these two keys? There is no change to the system preferences for the keyboard. There is no setup to have the carriage return or enter key be mapped to anything else.
    Very odd. I tried looking around the application and only in the SQL Worksheet does it not work.
    Any ideas?
    Eric

    Ahh, I was pulling my hair out over this since last week (on a PC, not a Mac). I just couldn't figure out why I could no longer add a line feed on the SQL worksheet when I hadn't changed anything at all.
    Anyway, I still have no idea how the settings got changed, but resetting to defaults did the trick. Thanks!

  • DEL,BACKSPACE,HOME etc not responding in SQL Worksheet

    When I'm loading a snippet in the SQL Worksheet and trying to edit it, i can't use the home,del, backspace, home, enter keys of my keyboard. They are not responding, only the letter and numeric keys are working.
    Does anybody know how i can solve this problem?

    Please search the forum before posting.
    Now that you've posted already: Preferences - Accelerators - Load Preset - Default should do the trick...
    Hope that helps,
    K.

Maybe you are looking for

  • Migo reference document not appearing in miro for frieght conditions

    Dear all, I ahve done migo for a po and i have checked GR based invoice in PO.When i am doing MIRO i am not getting the migo reference number for frieght condition where as the migo reference number is appearing for base price.How to get that migo re

  • Can't see full picture in photobook only the thumbnail on page view

    I made a photo book of my wedding and everything looked good. Then one day i opened it up to look at it and order the book and now all i can see for one of the pictures is the thumbnail at the top of the screen. It does not show up in the main view o

  • IMac G5 with Built-In iSight - System Freezes

    Hi, I have the new model iMac G5 that is now consistantly freezing. When I say freezing, I get the spinning wheel and nothing is accessable. I have to hold down the power button to reset it. I have called Apple and reset NVRAM, clear the cache's, etc

  • Can't install iTunes 10 due to Bonjour issue

    I have been issued new iPhone 4 from my employer. I needed to upgrade the version of itunes - and i can't due to the inability to remove the old version of Bonjour. I have searched the internet and completed numerous suggestions, including deleting a

  • WindowsLookAndFeel problem

    I'm running into a problem when I set the WindowsLookAndFeel as the default "skin". Basically, I get dots under text for menus, tooltext, etc. This isn't something crucial obviously, it just looks dumb. To get an idea what I mean, visit: http://www.t