SQL Developer window

Hi,
I have SQL Developer 1.1.2.25. I keep many sql windows open to do different. Whenever I go back from one window to the other and so on, all of a sudden, the windows come down to the bottom. This way, I can see both the windows in the same page, but then the problem is that the result shows up in such a small space that it becomes difficult to scroll down and it all looks so confusing. I dont want that happening. I want to be able to switch back and forth to any window i want. Please advise at the earliest. I'm going crazy with this sql developer. Pls advise soon. Thanks.

Hi,
I guess I have not mentioned my query clearly. Ok, in SQL Developer, for instance I hv two sql windows open, for eg. abc and xyz. i have done a select statement in the first sql window, for eg. select * from employee_information where employee_type = 'manager'. now in the xyz sql window, I have a select statement select * from employee_information where employee_type = 'administrative' . Now I hv two different results in abc sql window and xyz sql window. Now, for eg. I want to look at both the results, i go to abc, then xyz and so on by switching back and forth.
So after I do this couple of times, all of a suddent, automatically the second sql window (xyz) comes down, which means, instead of both the windows being vertical side by side, they now come horizontal. So my abc window is on the top, followed by the result of my sql query. Then comes my xyz window, followed by the results of the sql query.
I dont want that to happen. I want to be able to open any number of sql windows side by side vertically so that I can switch back and forth.
Any advises.

Similar Messages

  • SQL Developer: Windows 7 64-bits double numerical entries

    I am using sql developer windows 7 64-bits version 64-3.2.20.09.87-no-jre.
    I am entering data directly on tables.
    Sometimes when I use numeric pad to enter numbers, double entries appears on the first digit.
    For example: entering 1234
    it appears 11234 - with first numeric entry appearing twice.
    This also happens with the past versions, different notebook brands.
    How do I solve this problem?

    997844 wrote:
    Hi can anyone advise
    The Problem
    We are currently using Oracle SQL Developer 1.2.1.3213 to administer to the oracle database, unfortunately, this version does not play well with a 64 bit environ. The current airbus standard for Oracle SQL Developer which is happy with Windows 7 64 bit is version 3.1.07, again unfortunately, this version does not support versions of the Oracle database less than I think it is 8. Budget precludes the option of upgrading to a newer version of dbase.
    The Question
    Is there a version of Oracle SQL Developer that will meet our needs for windows 7 while remaining on the same version of the oracle database, or are there other competing products that you could recommend that will fit the bill. The product will require a GUI I don’t want to go back to entering SQL at the command line.
    regards
    Kevin" this version does not support versions of the Oracle database less than I think it is 8."
    What do you mean by this statement?
    SQL Developer is just a client. Clients do NOT have to be exactly version matched to a database. I am running SQLDeveloper 3.2 on a Win 7 Pro 64-bit desktop and my databases are a mix of 10.2.0.4 and 11.2

  • Issue Install SQL Developer - Windows 7 64 Bit

    I am trying to install SQL Developer 3.2 on my Windows 7 - 64 bit laptop. When I attempt to install and put in the Java path I get the following error:
    "Cannot find a J2SE SDK installed at path: ;C:\Program Files\Java\jdk1.7.0\bin."
    I tried using the version 6 path and it did not work either.
    Can someone please advise?
    Thanks for your help!
    NS

    Does your path really start with ';' - if so, that's wrong.
    Also, take out the \bin, should look something like this
    C:\Program Files\Java\jdk1.7.0_05

  • SQL Developer: Windows Authentication on Linux

    Hello.
    I have trouble getting SQL Developer to authenticate using "windows authentication" and a MS SQL server 2005. I'm on a Linux OS. Authenticating "normally" is no problem, however only windows authentication will be allowed in near future. Does anyone have success using this option? It simply gives me an error that it is unable to login.
    Hope anyone can be of help. Thanks in advance.
    Stefan

    Just wondering why the option would be there in the linux version (which is different in other areas than the windows one).
    Is it not possible using Kerberos perhaps?
    regards

  • Sql developer + windows authentication

    Hi,
    Is it possible to use windows authentication to connect to windows databases when using sql developer? From what I have seen, it seems that it is not straight forward.
    Is ther any kind of work around?
    Thanks in advance for any help
    Seastian

    It is, but it it's complicated - at least from what I have experienced.
    First you need the jtds-1.2.1.jar on your machine (a tutorial here..http://www.oracle.com/technology/products/database/sql_developer/files/viewlets.html) - it doesn't mention that you need to unzip the file (from sourceforge.et) and add the SSO directory to your windows PATH variable.
    It gets complicated depending on the Win Server (e.g. clustered)
    On the Hostname I had to add this "ip adress":1433;instance=CVDEV instead of just the server's ip\CVDEV as you would do in a win connection
    And you get disappointed, from what I found out, you need a connection for each of the databases there (e.g. master, temp, etc) it doesn't show all the databases on the server under the same connection

  • SQL Developer Windows Config

    Hi all,
    I used to have a window in SQL developer which would display information on my stored procedures such as compiled, compiled with errors etc. It also gave a list of compile errors and gave line numbers.
    I seem to have lost this window from the bottom of my screen and cannot seem to get it back.
    Is anyone aware of how I can return to the default layout or get this window back?
    Thanks for your help

    A question in a similar vein, if I may...
    I've been trying to find the Compiler-Log window off and on all day...and I just can't find it!
    I created a package that returned a warning that it did not compile properly, but I cannot find the list of statements that caused the errors.
    In SQL Developer 1.5.5 I was able to see an option to Compile the package when I right-clicked on the package. That would open up a 'Compiler - Log' window and show the error messages and the lines they occurred on.
    However, I am now using SQL Developer 2.1.1 and when I right-click on the package I do NOT see the option to Compile. I see a list: Edit / Run / Debug ... instead of: Edit / Open / Run / Compile / Compile for Debug.
    I am assuming that the Compile and Compile Log options were not removed from SQL Developer (cause that would be more than just a pity), and that I am missing something so obvious that I can not see it.
    Can anyone tell me how I can see the list of errors and the lines they are on so I don't have to keep running SQL Developer 1.5.5 just to see them???
    Thank you.

  • Running SQLs in background in batch mode via SQL developer ( windows 7)

    Hi
    Can anybody share any tips to run a set of SQLs in background in batch mode via SQL developer in Windows 7 environment
    am trying something as below but not succeeding though
    1) Create a .txt file name 'mysqlfile.txt' in desktop which contains the below statements
    Create table A
    Create table B
    2) Create a .bat file name 'run.bat' and kept in desktop which contains the below statements ( syntax may not be correct though)
    sqldeveloper -s <DBusername>/<pwd>@//<Hostname>:<port>/<SID>@<C:\Users\<username>\Desktop/mysqlfile.txt>
    3) Double click 'run.bat'
    Regards
    -Learnsequel

    SQL Developer doesn't have a command-line interface to support what you're looking for.
    You could use SQL*Plus.
    We have some requests on the Exchange in this area you could add your vote to. This is an area we are investigating for future releases.

  • Using the equivalent of a BREAK ON command in SQL Developer SQL window

    Folks.
    In SQL*PLUS "BREAK ON Col1 ON Col2;", I can generate a report similar to the following:
    Col1Value1 Col2Value1 Col3Value1
    Col3Value2
    Col3Value3
    Col2Value2 Col3Value1
    Col3Value2
    Col3Value3
    Col1Value2 Col2Value1 Col3Value1
    Col3Value2
    Col3Value3
    Col2Value2 Col3Value1
    Col3Value2
    Col3Value3
    etc.
    I want to be able to do the same thing in my SQL Developer SQL window so that I can export the results to a spreadsheet file.
    Does anyone know if this is possible?
    I've tried using the SQL*PLUS BREAK command in my SQL Developer window but it appears to be ignored. My resultset looks something like
    Col1Value1 Col2Value1 Col3Value1
    Col1Value1 Col2Value1 Col3Value2
    Col1Value1 Col2Value1 Col3Value3
    Col1Value1 Col2Value2 Col3Value1
    Col1Value1 Col2Value2 Col3Value2
    Col1Value1 Col2Value2 Col3Value3
    Col1Value2 Col2Value1 Col3Value1
    Col1Value2 Col2Value1 Col3Value2
    Col1Value2 Col2Value1 Col3Value3
    Col1Value2 Col2Value2 Col3Value1
    Col1Value2 Col2Value2 Col3Value2
    Col1Value2 Col2Value2 Col3Value3
    .

    OK thanks.
    I did get around this by using SQL*PLUS to generate an output file with a separation character between the columns and spooling the SQL*PLUS output to a text file.
    I then open the text file with Excel and specify the same character as a column separator. Seems to load properly into Excel.

  • Top 10 Obstacles to Sql Developer Becoming a World-class Tool

    I've been working with Sql Developer day and night for the last 6 months.
    On a positive note, the SqlDeveloper team has been the most responsive Oracle product team I've worked with in the 19 years I've been working with Oracle tools. They pay attention to their customers. It's noticed and much appreciated!
    I thought I would share the biggest problems that I face with the tool on a daily basis, the kind of problems that make me want to work with a different tool each and every day.
    My intent isn't to gripe, it's to focus attention on the biggest productivity drains I face using the tool. Others may have a different list, based on their needs. Without further ado, here is my top 10 problems list:
    1) Quality Control.
    I cannot count on critical portions of the tool working correctly. This includes an oracle database development tool that is incapable of extracting oracle ddl correctly and which is incapable of correctly displaying information about SQL Server data and database objects. It also includes destroying connection files and losing keyboard settings. When the product was installed, it was incapable of properly displaying code in a worksheet when I scrolled thru the code. The details are listed in other postings of mine.
    2) Quality Control.
    See #1.
    3) Quality Control.
    See #1.
    4) Very badly done threading.
    The tool locks up on a constant basis when it does a many tasks. Rather than let me work on some other task, I have to wait for it to complete. My current work-around is to have two or three sql developer windows open. That sucks life out of my RAM supply, but at least I can get some work done. And, of course, it will often completely lock up and never return, which means I lose all unsaved worksheets. This forum is full of postings about these issues.
    5) Memory Leaks / Internal memory corruption.
    If I've had the tool open for a few days, or really worked it hard for a day, I will get bizarre compilation errors that make no sense. If I exit the tool, re-enter the tool, and compile the exact same code all will be well.
    6) Awkward and slow data entry interface for frequently performed tasks.
    Example: I create a new table and want to start defining columns for it. I remove my hands from the keyboard to press the + button, then I have to set focus on the column name field (it should do that for me!). Now that my hands are back on the keyboard, I have to backspace the dummy "column name" value in the column name field (it should ditch that dummy value for me). Only after all that can I actually enter a column name. When I want to add a new column, it's back to the mouse again, for the same drill. The down arrow key should take me to a new column record, as should pressing return at the end of the last field in the column row.
    7) Destroys code
    Changing a column datatype from varchar2 to nvarchar2 destroys the length of the column. Changing a field on a view destroys the instead of triggers. This is bad. There is no warning that this this is about to happen, which would at least give us a chance to avoid the problem. Better still, of course, would be not destroying that data.
    8) Inaccurate checking for record locking.
    When I try to edit records in a data grid for a table, I often get an error message telling me the data was modified in another session. It is simply not true. A hand-written update statement in a sql worksheet will work just fine. I've seen posts in the forum discussing this issue. An Oracle database development tool unable to reliably update oracle data tables is embarrassing. See Obstacle #1.
    9) Unicode support
    Sql Developer is heads above all the other tools I've tried out on this topic.
    However, the configuration of the tool to provide unicode support needs to be simplified.
    The tool needs to recognize the encoding of the files that are being opened up. On Windows Vista, Notepad seems to infallibly pick the right encoding for the file when I open it. Sql Developer should do the same. Files have specific encodings, the tool should have a default encoding (that I can override). Right now, the tool has a specific encoding and expects all files to match it. Extracting ddl to a worksheet does not respect the encoding choices of the tool, either. It only works with a limited set of tool encoding choices.
    10) Resources
    Does the sql developer team have the resources they need to compete with vendors like Microsoft? One really big reason for picking sqlserver over oracle is the ease of use of the Microsoft front-end tools. It's not until later that they may realize that Oracle has more capability, but that's still a lost sale.

    We are acutely aware of quality and with each release work at improving this. Providing a polished, professional and ultimately user friendly and useful tool is our constant goal.
    The broader our customer base grows, the more demands we have. This is a good and exciting position to be in, although it might mean that we need to slow down on our release cycles.
    Release 2.0 should address more of the threading and memory leaks displayed as the team have rewritten some of the sections. As for resources, it's true we're a small team and we get on with the work that we do.It might be a little slower than some would like, but I'm not convinced that having large team is necessarily always the answer.
    As ever, some of the points mentioned could be added to the Exchange. We'll be reviewing and updating the Exchange again in the New Year.
    I think there is another point to add to your list. A lot of what the tool is and will become is from a positive customer interaction we have had to date. While we continue to grow this, I think the product will grow and improve. The forum and all the positive interactions that happen here are key to taking the product forward.
    Regards
    Sue

  • SQL Developer 1.51.5440 high CPU + frozen screen

    Hi,
    Using SQL Developer 1.51.5440 on WinXP. The laptop has 2 GB and decent CPU, the OS is well maintained and in good working order.
    From times to times, the SQL Developer window becomes unresponsive (with a gray background). Either it freezes in this state or takes 2 to 5 minutes to becomes responsive again.
    I started using SQL Developer last week (I am new to Oracle), I have already had 3 times where SQL Developer consumes a lot of CPU, make the CPU fan spins, and stay in this state permanently. I had to kill the process to make it stop. Not sure how to reproduce this issue but I suspect this could be clicking on a connection where the Oracle server is not accessible.
    Is it a confirmed issue or is it specific to my laptop?
    Thanks in advance for any help.

    There are some reported problems where SLQDeveloper uses a lot of CPU. I don't know if the development team have got to the bottom of them, though.
    If you can confirm the steps to reproduce, it would help the team.
    Anti-virus software can cause general slowness in Java apps, but if Task Manager is showing SQLDeveloper using CPU rather than the virus scanner it probably isn't that.

  • SQL Developer 3.0.04.34 ZIP file corrupted

    I have tried downloading SQL Developer(Windows 32 bit) numerous times with and without JDK and on multiple computers from Oracle.com, but every time I try to open the zip file it says that it is corrupted. Has anyone else experienced or know of an alternative download site?

    I have seen this several times.
    I bet you are trying to download from the office.
    There are certain firewalls that corrupt the file.
    Yes I know you can download other files and they work fine.
    Download it from home onto a flash drive and take it into the office.
    Michael

  • SQL Developer not working

    I installed SQL developers dot rel. 3.2.20.09.87 in my windows XP machine today. The downloadable zip file is available at oracle website http://www.oracle.com/technetwork/developer-tools/sql-developer/downloads/index.html.
    Version I downloaded is :
    Windows 32-bit - zip file includes the JDK1.6.0_35      Download Download 209 M
    On clicking sqldeveloper.exe , the small Oracle SQL Developer window pops but it goes away in few seconds.
    Any pointers to resolve this issue is highly appreciated !

    Hi,
    To avoid losing the window before you can read what went wrong, run the sqldeveloper.exe version in directory
    <SQLDev_Install_Dir>\sqldeveloper\sqldeveloper\bin\sqldeveloper.exeinstead.
    If you should need to do a more in-depth investigation, the following offers some good advice on debugging:
    http://www.thatjeffsmith.com/archive/2012/06/how-to-collect-debug-info-for-oracle-sql-developer/
    Regards,
    Gary
    SQL Developer Team

  • SQL Developer cannot execute multiple queries in one connection

    Hi,
    Using : SQL Developer 1.2.29.98, Oracle Database 9i on Windows XP.
    Currently I have TOAD and PL/SQL Developer to handle things related to Oracle Database.
    I found this SQL Developer tools as an interesting tool which might replace PL/SQL Developer (I assume).
    I opened two SQL Worksheets and tried to execute 2 queries (time consuming one) simultanously, suddenly it freezes (the window become grayed). Just like TOAD, we cannot smoothly execute multiple queries on single connection on SQL Developer
    I can monitor the query process using TOAD (Session Browser) and found both queries are running while SQL Developer window become grayed and seems not functioning. After the queries have been finished, I mean both of them, the SQL Developer window become normal and "alive" again showing the expected results.
    Well, however PL/SQL Developer could handle this. Executing multiple queries in single application is just its unbeatable features.
    We can view the query result once its finished instead of until the others being processed, by just only switch the SQL Windows.
    Is it true that SQL Developer doesn't support executing multiple queries?
    Or is it a feature which we should request?
    Or we have to activate this feature by doing some changes on configuration / preferences?
    (Do we need to open two SQL Developer instances? what a memory consuming solution).
    Regards,
    Buntoro

    SQLDeveloper connections are single threaded and also rather single minded (in that you can't do much else while a long query is running.)
    There is an existing feature request http://apex.oracle.com/pls/otn/f?p=42626:39:3685254426061901::NO::P39_ID:4202 for which you can vote.
    The workaround is to have multiple connections. Not brilliant but it works.

  • SQL Developer from JDev

    I am doing the « Database Development with JDeveloper » tutorial. In the tutorial we create two SQL scripts that we can run with SQL*PLUS from inside JDEV. The tutorial asks us to use sqlplusw.exe. However I don’t have sqlplusw, I only have sqlplus.exe, the command line version.
    When I saw SQL Developer was claiming “Oracle SQL Developer is a graphical version of SQL*Plus” (First sentence of Online Help), I naively thought that I could use sqldeveloper.exe instead of sqlplusw.exe.
    When I try to run the SQL script from JDEV, it seems to open an empty SQL Developer window in JDEV, with no possibilities of running scripts.
    I know that in the next version of JDev SQL Developer should be integrated but, in the mean time does anyone know a way to open and run a SQL script from JDEV using SQL Developer as the tutorial requires it?
    I'm not sure if this makes sense.
    Message was edited by:
    dfullum

    You can use the sqlplus.exe instead of the sqlplusw.exe the results should be the same.

  • SQL Developer Keeps finding updates (1.2.1.32.02)

    Hi,
    I have just patched my SQL Developer (Windows XP Pro) (extensions tab shows version 1.2.1.32.00) and the automatic update wizard keeps finding a new patch (1.2.1.32.02).
    It says it's installed it, but after a restart (including an additional manual one) my extensions tab shows version 1.2.1.32.00 and the update wizard finds the new update again.
    Help! (or is it the "Groundhog Day" patch).
    Thanks,
    Paul

    Hi Matt,
    Yes, there is a new Check for Updates. It should force the second restart we require and it should update the front panel in the Help -> About to 1.2.1.32.05. If you were on a 1.2.1.32.00 build then the only extension that is updated under your extensions list is the SQL Developer extension, which is 1.2.1.32.05.
    You can run the Check for Updates against a 1.2.0.29.98 build (i.e. the initial 1.2 release) or against the new 1.2.1.32.00 build.In both situations had you run the Check for Updates last week, this update will clear the issues you might have encountered.
    You should not keep getting prompted for repeated updates. While it's starting to feel like my stock answer these days, please restart your install and this should clear.
    Regards
    Sue

Maybe you are looking for

  • How to connect my iMac to AV receiver?

    I want to watch movies on my iMac but use Cambridge audio Aero 5.1 speakers through AV receiver Cambridge Audio Azur 751R. How do I connect my Mac to the av receiver? What cables/connectors do I need? thank you for your help!

  • Colour Profile Confusion

    I'm new to calibration and a bit confused. I've calibrated my monitor with Spyder Express and it looks fine. However there is a colour difference when I view a photo of a blue flower in Aperture depending on whether I use proofing or not. If proofing

  • I can only sync once a day with Hotmail on ZTE Open phone

    1. Each morning when I fire up my ZTE Open phone I can sync with my Hotmail account. Anytime after that it simply will NOT sync again for the rest of the day 2. I have yet to actually read an email on my Firefox ZTE Open phone, once I choose any emai

  • Odd graphics failure in Premiere Pro using Lion

    Just fired up Premiere Pro for the first time since the Lion update, and it's having some issues. See in the work panes at the bottom, that's one audio clip. When I move it about it ghosts like an old school Windows graphics error, and goes mental. I

  • Logout / Sign-Out Button in Portal

    Hello Experts, How can I add "Logout" / "Sign Out" functionality/button in the SCSM End User Portal? I have disabled the SharePoint bar at the top as it exposes other settings other than that logout menu selection that end user should not see. I was