How good is sql developer?

I am pretty new to Oracle, and like using sql developer most of the time. Is it well regarded by those of you that work with Oracle day to day? I think I've seen some bugs but most of the time is seems to do ok. SQL Developer is installable on almost any workstation which is also a plus.
But I was wondering, are there any comparable or better graphical oracle interfaces tools out there? I have looked at Toad but have not formulated any opinion re is it better that sql developer. I am not really considering any commercial (ie pay) packages because I'd like to be able to use the tool at various locations.

TOAD is much friendly and easy to use compared to SQL Developer.
But this may not sound as an appealing reason for the management to choose between a licenced product and a free product which can handle most of the functionalities required for a development team.
TOAD has extra features like Session Monitor, DBA tools, export, Import, Compare etc etc. But how often your developers need to use them?
I have used both , initially I was reluctant to use SQL Developer, but soon I got used to it. Certain nifty ways of saving/generating insert scripts etc were missing though.
One thing I liked about SQL developer is the grouping of open connections, it allows you to see two connections on the screen as vertical tiles. ALso SQL Developer can be integrated to a source control system like SVN, where you can do check-out, check-in etc though the tool itself.
Also SQL Developers works great for migration from non-oracle databases.
I suggest you list down the functionalites mostly used in TOAD by your developers and do a comparsion of the same features in SQL Developer.
Here are some more differenences.
http://itknowledgeexchange.techtarget.com/eye-on-oracle/oracle-sql-developer-vs-toad-users-speak-out/
Thanks
Satishbabu Gunukula
http://oracleracexpert.blogspot.com/

Similar Messages

  • How to use SQL Developer Debugger

    I'm using SQL Developer Version 3.2.20.09 and want to use its debugger option. I tried to get "how to use SQL Developer Debugger" by using google.ca but didn't get any tutorial. I really appreciate if someone suggest me any good and simple tutorial regarding SQL Developer Debugger, Thanks in advance.

    Hello,
    you can find a tutorial here:
    http://www.oracle.com/webfolder/technetwork/tutorials/obe/db/devdays2012/mod2_sqldev/mod2_sqldev.html
    Joop

  • How to start SQL Developer for 11g in Oracle Enterpirze Linux

    I have installed oracle 11g in Oracle Enterprize linux. Please tell me how to start sql developer there?

    I think you have to install sql developer at first and then start it....
    actually, I'm not so much clearly understood what is your question.

  • How to install SQL Developer Data Modeler 3.1.1 for Mac OS X?

    How do I install SQL Developer Data Modeler 3.1.1 for Mac OS X? I downloaded the file "datamodeler-3.1.1-703-macosx.gz" from OTN, but there is only a single file inside this archive - "datamodeler-3.1.1-703-macosx". What am I missing here?
    Thanks in advance...

    Extract that file and then run it.
    Once you installed the tool to your Applications folder (if you choose to move it to Applications), you'll need to install Java (maybe).
    What version of OS X are you on?
    In a command window/terminal, type 'java -version'
    If you get something back like 'java version "1.6..." then you're all good.
    If you're on Mountain Lion, then type 'java' instead. That should download java for you.
    Once you've got java available, then launch SQL Developer Data Modeler.
    The installation notes are here if you want the official list of instructions
    http://www.oracle.com/technetwork/developer-tools/datamodeler/downloads/mac-installnotes-1716514.html

  • HOW TO: Open SQL Developer from a batch file with specific tables opened

    I use SQL Developer daily as I develop database intensive programs.
    ** Question **
    How can I define a specific configuration of tabs (i.e. tables, procedures, etc) to be opened upon startup of SQL Developer?
    For example, creating a .BAT file to open SQL Developer with a specific set of table tabs already opened. This will save me the time every morning I use to open SQL Developer and configure all the tables I need opened.
    NOTE: I have tried various options of appending a table name to a command line starting sqldeveloper.exe. For example: ..\sqldeveloper.exe mydatabase.mytable. However, this only opens a worksheet tab with the name "mydatabase.mytable" but does not open my actual table.
    Any help will be appreciated.
    - Gary Davis

    what version are you using? Sql Dev 1.5?
    Not an exact answer, but you could try using Table FILTER
    click on your connection
    right button on TABLES
    click apply filter
    as for your question, check out:
    Re: EA1 - Automatically open connection list at startup?
    or
    SQL Developer

  • How to connect sql developer OE schema and Hr schema,

    Hi ,
    I downloaded Oracle 10g express edition and SQL developer downloaded in my computer, I don't know how to connect to OE and HR schema, by default the SQL developer and Oracle 10g has only sytem and sys database. And as well I wanted to migrate datas from third party datas , could anyone please , pllease guide me. I am new to this field and just started to learn. what is listener and how to activate Listener and Repositary
    Please guide me.
    Thanks in advance
    Chan

    The HR schema installs fine in XE, but the OE schema doesn't quite. I've done it, but there will be errors. The reason is that the OE schema uses some features of XML DB that are not supported in XE. If you want to use the OE schema in XE and you don't mind if it isn't a complete OE schema, then you can get the installation scripts from an Oracle SE or EE installation.
    You can also get it from the companion disk for Oracle SE or EE, but this is a bit challenging, because you can't get it by running OUI unless you first install Oracle SE or EE. You need to run an archive utility like WinZip or 7-Zip and look for the scripts inside a compressed file - I forget which one, but I'll look it up if you like. Oh, and since the OE schema isn't really supposed to be installed on XE, Oracle does not support any of the methods for putting it there.

  • How to force sql developer to prompt for user input for every execution ?

    Hi Folks,
    Environment: Oracle 11g (on Windows 7)
    SQL Developer: *3.1.07*
    I am executing a PL/SQL code off Sql Developer. The code uses substitution variables to prompt user for input. However,I am only prompted for the user input for the very first run of the code. For the subsequent executions, the code simply picks up the user input from the very first run. This behavior persists for all subsequent runs of the code.
    I have executed the same piece of code from SQL*PLUS and the behavior seems normal (i.e. I am prompted for fresh input for every execution)
    How can flush out the old user input so I can be prompted for new user input for every run of the code in sql developer?
    Thanks in advance
    rogers42

    Hi Rogers42,
    1/try
    undefine
    undefine fred
    select '&&fred' from dual;
    [run this multiple times]
    [prompts gere]
    old:select '&&fred' from dual
    new:select 'a' from dual
    'A'
    a
    [prompts here]
    old:select '&&fred' from dual
    new:select 'b' from dual
    'B'
    b
    2/try
    exit (requires recent version of sql developer: tools->preferences->Database->worksheet->Re-initialize on script exit command)
    select '&&fred' from dual;
    exit
    run this multiple times
    [prompts here]
    old:select '&&fred' from dual
    new:select 'x' from dual
    'X'
    x
    Commit
    [prompts here]
    old:select '&&fred' from dual
    new:select 'y' from dual
    'Y'
    y
    Commit
    3/use &fred instead of &&fred
    For background see
    http://totierne.blogspot.co.uk/2010/04/substitution-and-bind-variables.html
    -Turloch
    SQLDeveloper team

  • How to start sql developer

    Hi,
    I installed the oracle 11 free version in my windows machine couple of days ago. I guess I have forgotten my SID. And now when I am trying to open a connection using sql developer, a dialog pops asking for connection, user, password etc. But I am not sure what to use for connection field. I thought may be I have to use the SID entered during installation. But I have already forgotten that SID. In that circumstances, how to connect to a database using sql developer? I would really appreciate some help.
    Thanks.

    another way to find out your sid could be to just look in your database folders
    ...\product\11.1.0\db_1\computername_sid
    os if your computername is oracleserver and your service id is orasid then your folder should be
    ...\product\11.1.0\db_1\oracleserver_orasid
    the same is for the folder
    ...\product\11.1.0\db_1\oc4j\j2ee\OC4J_DBConsole_oracleserver _orasid
    there is the case that instead of your computer name in the second folder you would see localhost
    i apologize for writing someting not eligible to the forums guidelines as has been noticed by another attendee.
    but it was a joke anw...
    Edited by: vasileios on 21-Jul-2010 22:21
    Edited by: vasileios on 21-Jul-2010 23:00

  • How to upgrade SQL Developer from 1.1. to 1.5?

    Hello,
    I downloaded 1.5 and tried starting it in order to upgrade from 1.1 which came with the Oracle 11g package.
    It shows the splash screen briefly then it disappears.
    How can I install/upgrade it?
    Thanks,
    Gabor

    Hello Jim,
    Thanks for the response.
    I did what you suggested. Yes, it does open the console window and tons of messages scroll through it while the splash screen is shown. The both the console window and the splash screen disappear and that's it.
    The OS is XP SP2.
    The exact version of SQL Developer is 1.5.1.54.40.
    Regards,
    Gabor

  • How to uninstall SQL Developer from XP

    I tried using "Add/Remove Programs" from the Control Panel, but SQL Developer does not show up.

    Thank you ANUP_SLIM, both of your suggestions were helpful and accurate. I performed a search on "sqldeveloper.exe" and the executable is in the obscure directory that I unzipped it in, and was nowhere near my OracleHome. There was also a similarly named file in "C:\Windows\Prefetch". Not sure why that one is there, but my plan is to remove it. However; I will wait and see if anyone provides reasons not to.
    Not sure how to be clearer SOMEONEELSE, that in my situation the default behavior WAS NOT to create and ICON or shortcut. Are you suggesting that any and every time a person simply unzips a file, that the default behavior is for some "Magic Thingy" to create ICON's on your desktop?
    I apologize if my response seems negative, but there is a generation that seems to feel that it is OK to respond disrespecfully to a sincere question, even when the offendin party doesn't know what they are talking about. I am merely combating these types of occurences as neither SHOBLOCK's nor ANUP_SLIM's advise was applicable or accurate in this specific situation.

  • How to use sql developer to connect informix

    hi, everyone,i want to use sql developer to connect to informix database.
    i have added the informix jdbc driver,but when i create a new connection,i can't find the informix database.
    does it not support informix?
    please help.
    Edited by: 917391 on 2012-2-27 下午7:10

    SQL developer supports (as listed in the release notes: http://www.oracle.com/technetwork/developer-tools/sql-developer/sqldev31-ea-relnotes-487612.html) only these foreign databases:
    Third Party Databases
    SQL Developer supports IBM DB2 UDB LUW , Microsoft SQL Server and Microsoft Access, MySQL, Sybase Adaptive Server and Teradata.

  • HOW TO CONNECT  SQL DEVELOPER FROM REMOTE DATADASE 11g SEREVER

    HI
    WE ARE USEING ORACLE 11g AS PRODUCTION DATA BASE SERVER ON (O.S -WINDOWS SERVER 2008 WITH JAVA 1.5)
    I WANT TO CONNECT ORACLE 11g(PRODUCTION DATA BASE) FROM THE SQL DEVELOPER(VERSION -sqldeveloper-3.0.03.45)--- installed on (WINDOWS XP PROFESSIONAL VERSION 2002 SP 3) but iam connect ing iam getting error like THIS
    AFTER ENTERING USERNAME,PASSWORD,HOSTNAME,PORT,SID
    THEN
    I CLICK TEST
    I FOUND THIS STATUS :FAILURE -TEST FAILED:IO EXCEPTION:BREAK PACKET WAS RECEIVED.
    CAN ANY ONE PLEASE PROVIDE SOLUTION FOR THIS PROBLEM
    THANK AND REGARDS.
    ANJANEYULU.n
    DBA-UEPL.
    Edited by: 794752 on May 16, 2011 11:06 PM

    Hi 794752,
    -Does remote sqlplus work from the same XP machine?
    -Have you tried thin (default) or thick (with 11.2 instant client) in SQLDeveloper?
    -Have you other Oracle software on the XP machine? If so you may have to set ORACLE_HOME in your cmd session to the SQLdeveloper software such that %ORACLE_HOME%\jdbc\lib exists, (so SQLDeveloper does not try your existing ORACLE_HOME).
    Please do not use all CAPITALS.
    -Turloch
    SQLDeveloper Team

  • How to start sql developer(1.1) on mac osx

    After download and unzip it, just double-click the sqldeveloper icon, doesn't it?
    But after i double-click it, there is an icon on the bottom for a while, very soon. then it disappears.
    Any help will be highly apprecaited!!!

    Hi
    I've got the same error starting SQL Developer 1.1.2 on mac os 10.4.9. In my case this was because I've had a blank in the path.
    I've initialy located my SQL Developer on a USB Stick with the name "no name" which was mounted on /Volumes/no name path to SQL Dev was /Volume/no name/oracle/sqldeveloper/......
    After changing the name of the stick to noname the path has changed to /Volume/noname/oracle/sqldeveloper/.....
    and then everything worked fine.
    An other hint, If you copy sqldeveloper.sh into sqldeveloper.command you may start the Developer with a double click.
    By the way, I'm using the multiplattform package of the SQL Developer and put it on a USB Stick. I'm now able to take one copy of SQL Developer and Configuration with me and start it on Mac OS and/or Windows.
    Regards
    Stefan
    Message was edited by:
    oehrlis

  • How to connect Sql Developer with Oracle 11g Xe

    Hi all.
    I am new in the mac os x world and i want to now if it`s possible to connect the sql developer (running at mac os) with oracle xe (running at windows 8 at parallels vm).
    Thank u all.

    Perhaps the Building ASP.NET Web Applications with Oracle Developer Tools for Visual Studio from the Oracle By Example series will be enough to get you going.

  • Does anyone know how to connect SQL Developer to Oracle BI?

    I've tried placing bijdbc.jar into the third party extensions and restarting SQL Developer, but that did not work.

    I believe you naeed the Apple ADC to DVI adapter.

Maybe you are looking for

  • Can Contribute edit a DW template and allow it to propagate?

    I've created a fairly straightforward html/css site in DW CS3 based around a template and have uploaded both the site and template to the client's web server. There's a little set of static text on the template which cross-populates all the html page

  • Stop JcomboBox dropdown

    Hi everyone, I have a requirement to not allow the dropdown list of JComboBox to pop up in certain situations. I could disable the combo box, but that is not the preferred option. I tried to over write JComboBox.firePopupMenuWillBecomeVisible(). The

  • The application HP device monitor quit unexpectedly window keeps popping up

    Help I installed driver from HP for my version 10.5.8 and I now get the above message popping up every 5 seconds and I cannot get the printer to work. How can I remove this message and get printer to work wirelessly? I have removed all the files (HP)

  • Repeating Subforms and Duplicating Tables

    Hello, I am a novice in Javascript and desperately need some help. I have been all over the internet in these forums trying to find a solution but with no success. I have found some bits of information that were similar to what I am trying to do but

  • ACS with Aruba Controller

    Dears hi  i would like to ask you if we can restrict wireless users to be authenticated from 3 devices only via ACS. currently wireless users are authenticated via MSCHAPv2 PEAP from local ACS database. but we have a request that user can be authenti