Mouse moving issue in sql developer 3.2

Hi,
I'm using sql developer 3.2 in vmware .I'm facing issue  when i try to select the package/procedure from left side tree structure with mouse,mouse pointer  is moving to some other place.
If i try to click on one object name(procedure/package/function) then  mouse pointer is moving to other object name automatically.It is very difficult to work .Can some advice why it is ? And how i can resolve?
And at the same time no issue with  sql developer 1.1 .
Environment:
In side vmware
Os:Xp
Sql developer  Version 3.2.20.09

Enable security descriptors = Allow virtual applications full write permission to the virtual file system.
Here is how it looks like:
https://twitter.com/packageologist/status/462180503995813888/photo/1

Similar Messages

  • Serious UI issues in SQL Developer 4.0 for Mac

    I've encountered some serious UI issues in SQL Developer 4.0 for Mac (4.0.0.13) that impact it up to the point where it becomes unusable.
    If the database and tables are expanded in the "Connections" view, sometimes a node in the tree seems to become sticky. Whenever you scroll the up or down, it will immediately scroll back to make the old selection visible again. If you want to work with an item that's outside the current view (e.g. to collapse the "Tables" node), you can no longer use it. SQL Developer needs to be restarted.
    If the context menu is opened (ctrl click), it appears in the wrong place. It's too far to the right and bottom. If you then move the mouse pointer towards the menu, a rectangle appears and follows the mouse pointer as if you had initiated a drag and drop operation.
    If the "Data" tab of a table is selected and if a cell is clicked to edit the cell value, the text cursor is drawn in the wrong position. It can be off by more than one character and it is often drawn in the middle of a character instead of between two characters. It's hardly possible to edit the cell value as you cannot tell for sure where insertions and deletions will happen. You basically need to copy the value into a separate editor, edit it there and copy it back.
    The scrolling in the "Data" tab of a table is a pain. For no obvious reason, it first scrolls downwards a few rows and then jumps to the top (at least using a Magic Mouse). If all rows have been loaded, this problem seems to disappear. But generally, the scrolling distance is far too short. With a long finger swipe, one would expect to scroll the contents by several pages. However, it only scrolls about half a page. For shorter swipes, it's similar. It sometimes only scrolls by a few pixels.
    Am I the only one to experience these severe problems? Or is the Mac version not as mature as the Windows version yet?

    In terms of diagnosis, perhaps not -- probably very time-consuming to debug.  I did find some unpublished bugs against dual monitor use ...
    Bug 13727841 - FORUM: 64BIT WIN7 SOME DIALOGS SHOW ON DISPLAY 1 WHEN SQLDEV ON DISPLAY 2
    Bug 18504928 - NEW CONSTRAINT UI MENU IN TABLE DIALOG AT WRONG LOCATION ON DUAL MONITOR
    The first turned out to be an issue in the 64-bit Java AWT libraries, not the 32-bit libraries, and specifically for Windows 7 as opposed to, say XP, but this was all quite a bit in the past and was fixed for 4.0.   The second one (on 64-bit Linux), however, just came in yesterday, so you can wait to see if a fix for that also covers your situation or, if you are able, pursue it directly with Oracle Support.

  • Screen refresh issue with SQL Developer 1.5.5 on Vista 64 bit

    I am using the latest version of SQL Developer.
    I have screen refresh issues in sql developer. On scrolling up and down the display gets jumbled, some time screen do not display at all. Its making working with SQL Developer very difficult. I don't have such an issue with any of my other editors.
    Is this something specific to Vista? Is there any know solution to this issue.
    Thanks
    Edited by: user5899685 on Sep 1, 2009 11:14 AM

    Specific? Not really, but judging from the posts here Vista is more prone. It usually indicates incompatibility between Java and video drivers.
    If updating your JDK or video driver doesn't work or isn't an option, just disabling DirectDraw in \sqldeveloper\bin\sqldeveloper.conf usually works too:
    AddVMOption -Dsun.java2d.noddraw=trueHope that helps,
    K.

  • Issue with SQL Developer connect to SQL server

    I'm using "SQL Developer 2.1.1.64.45" to work on a migration project which needs to convert a SQL server database to a Oracle 11g database. But I got an issue when I setup the SQL server connection. The SQL Developer let me connect by selecting a SQL server database name (For example: Northwind), but once connected, it always connected to "master" database instead. The "SQL Developer" is running on Windows 7 Professional (x64) platform. My Oracle database is 11g, and SQL server database is SQL 2005. And my SQL server instance name is "SQL2005". Anyone have ever experienced this problem? Thanks in advance.
    Edited by: user8276338 on Feb 8, 2011 1:05 PM

    Hi Bob,
    Thanks for the feedback, lets stick with SQL Developer 3.
    Correct me if I'm wrong,
    You attempted to migrate from SQL Server to Oracle including target generation and datamove in one go, by filling in each step of the migration wizard to the end.
    During the datamove you got
    ORA-01000:maximum open cursor exceeded
    So it looks like SQL Developer during the migration is not closing cursors fast enough and hits the maximum number of open cursors in your Oracle database.
    I think the default max open cursors is 300 in Oracle.
    There are a few things we can do here.
    You should be able to see the new migration project in your Migration Projects navigator.
    By navigating down the project tree to "Converted Database Objects" we can attempt the data move again by right clicking and choosing "Data Move".
    But first I would restart SQL Developer so as to free up any lingering open cursors.
    That may allow you to complete the data move, as the only cursors being open are being used in the data move and not some cursors which may have been left open from previous steps in the migration.
    Now from my perspective I would like to identify where are we leaving open the cursors, so I'm going to setup some testcases my end to see if I can replicate.
    From your perspective Id presume you just want to move on with the migration.
    So if the above (shutdown and attempt just the data move) doesnt workyou could
    A) Increase the MAX OPEN CURSORs on your Oracle databases so it complete the data move
    or
    B) Use the offline data move technique.
    A) Increase MAX OPEN CURSORs
    This wiki explains how to do that, looks like 1000 is fairly common, but even a much larger number is not a problem
    http://wiki.oracle.com/page/OPEN_CURSORS
    ALTER SYSTEM SET OPEN_CURSORS = 10000;
    OR
    B) Offline Data Move
    If you are moving large amounts of data (say > 1GB), then the standard data move (we call it online), which just uses JDBC to SELECT * FROM and INSERT INTO may not cut the mustard.
    In this case you can try using our offline technique. SQL Developer will generate a set of scripts for you.
    unload_script.bat will use SQL Servers BCP tool to dump out the table data into DAT files.
    oracle_ctl.bat will load the data in the DAT files into Oracle.
    As we know the names of all the tables, columns ,both SQL Server and Oracle, we can generate fairly good scripts.
    The benefit of this technique is large amounts of data can be migrated and you get to use tools designed to dump data and load in data, so you have better error logging and tweaking.
    To attempt this in the Migration Wizard , Data Move page, select offline.
    If you can describe your database a bit (number of tables, number of procedures, amount of data to migrate) I may be able to define my testcase better so I can replicate the issue.
    Thanks
    Dermot
    SQL Developer Team.

  • Password issue for SQL Developer

    Hi All,
    I have downloaded the SQL developer and I am facing the issue with the username and Password while creating the new connection. Please let me know what is the username and
    password.
    Thanks in advance.
    Best regards,
    Pavan

    Please post your question in the appropriate forum.
    Database - General
    General Database Discussions
    SQL Developer
    SQL Developer

  • "Copy to Oracle" issue in SQL Developer 3.0

    Hi,
    I am getting a recurring issue when trying to use the "Copy To Oracle" table feature in SQL Developer 3.0.04 (build MAIN-04.34).
    When trying to move any table from a registered Sybase ASE database (12.5.3) to a test Oracle instance (11.2.0.2.0), I always receive the "Copy to Oracle finished" success window immediately, but also get the following message in the "Log" pane:
         Message:     “+Issue running BRIDGE command+”
         Source:     “+o.d.migration.copy.BridgeTableDef+”
    The table does not get created on the Oracle instance.
    Any ideas?
    Thanks,
    Michael

    Hi Turloch,
    The error seems to occur with all tables on any Sybase dataserver I have connected - most tables are quite simple (only simple datatypes etc.). Please find an example below:
    Source table: sybdb.dbo.fetch
    CREATE TABLE sybdb.dbo.fetch (
         f_id           numeric identity(18)      NOT NULL,
         s_id           numeric(18)           NOT NULL,
         added_date      datetime           NOT NULL,
         added_by      varchar(30)           NOT NULL
    INSERT INTO sybdb.dbo.fetch(f_id, s_id, added_date, added_by) VALUES (1080, 2944, '2011-08-05 03:36:10.64', 'User A');
    INSERT INTO sybdb.dbo.fetch(f_id, s_id, added_date, added_by) VALUES (1081, 2944, '2011-08-05 03:36:35.486', 'User B');
    INSERT INTO sybdb.dbo.fetch(f_id, s_id, added_date, added_by) VALUES (1082, 2944, '2011-08-05 03:36:54.24', 'User C');
    Target connection:     Connection to 11.2.0.2 database as a user with DBA role.
    I get the following error reported in the "Logging Page" pane in SQL Developer
    SEVERE     52     0     oracle.dbtools.migration.copy.BridgeTableDef     Issue running BRIDGE commandAppreciate you taking the time to look at this.
    Many thanks,
    Michael

  • SELECT returning different rows when issued from SQL Developer or Java apps

    Hi there. I'm facing a problem here: I'm trying to issue a SELECT from Java, which should return me 2 rows; but I'm getting just one. When I issue the SELECT directly through SQL Developer it gives me the expected result. I've pastebin the code at http://paste.uni.cc/11821, where I've described in details the problem.
    What could it be? Any help would be appreciated.
    Thanks in advance!

    Marco,
    I would code it a bit differently, but I don't think that would solve your problem.
    I suggest setting up the JDBC logging. I'm not promising it will help, but I guess it
    can't hurt. Here is a white paper about it:
    http://www.oracle.com/technology/tech/java/sqlj_jdbc/pdf/logging%20white%20paper.pdf
    You can also access that link from this Web page:
    http://www.oracle.com/technology/tech/java/sqlj_jdbc/index.html
    Good Luck,
    Avi.

  • Issue with SQL Developer connecting to databases

    Hi all,
    I would be really grateful if anyone could advise me on the below issue.
    I have 64bit laptop running Windows 7 and I get the following error message when I try to connect via SQL Developer to an external database for work purposes:
    Status: Test Failed: C:\app\Terra-PC\product\product\11.2.0\dbhome_1\BIN\ocijdbc.dll: Can't load AMD64-bit .dll on a IA 32 -bit platform.
    Thanks for your help.
    Luke

    Hi,
    Actually, I resolved this issue with the help of a colleague. SQL Dev was not able to see my TNSnames file, because the Oracle_Home path was not defined. Something like that, anyway.
    Thanks,
    Luke

  • 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

  • Performance issues for sql developer

    1.     Does leaving DB connection open from a SQLNavigator has any impact on the DB resources and performance?

    That depends.
    If you run a query or browse a table with parallel setup and leave a grid open - you could leave many processes sitting idle on the server waiting for you to fetch the records down.
    But in general, 'no.'
    Also, what do you mean by a 'SQLNavigator' - you mean SQL Developer, yes?

  • Migration issue in SQL Developer (from SQL Server to Oracle)

    Dear All,
    I am using SQL Developer 3.0 to migrate data from SQL Server 2008 to Oracle 11gR2. I used Quick Migration Wizard for migrating and everything was Ok but when it was running migration process, I got this message: “Migration actions have failed. Check the migration reports for details. : null”
    But there was not any report to check. Does anyone know how I can do it without any problem?
    Thanks in advance.

    I am working on a project to migrate from SQL Server 2008 to Oracle 11gR2. It includes some tables, views, indexes, triggers and store procedures. At first I worked on SQL Developer 2.1.1.64 but it doesn’t support SQL Server 2008 (I had to use SQL Server 2005 in its offline options). I got a lot of error when I used the offline options. I know that I may be having some problem in table or view definition in my SQL Server but if I don’t have any log file I can’t solve them.
    Unfortunately, in SQL Developer 3.0 there isn’t any option to generate a SQL comments from objects (convert to Oracle) because I need to rewrite comments if they have problem. For example I have a filed named USER that it’s a reserved word in Oracle so I have to change this field name.
    I also can’t use “Translation Scratch Editor” because it has some error to convert. For example when I use it for the following code:
    CREATE TABLE [dbo].[Table1](
         [ID1] [int] IDENTITY(1,1) NOT NULL,
         [Name1] [varchar](50) NULL,
         CONSTRAINT [PK_Table1] PRIMARY KEY CLUSTERED
         [ID1] ASC
    )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
    ) ON [PRIMARY]
    CREATE TABLE [dbo].[Table2](
         [ID2] [int] IDENTITY(1,1) NOT NULL,
    [Name1] [varchar](50) NULL,
         CONSTRAINT [PK_Table2] PRIMARY KEY CLUSTERED
         [ID2] ASC
    )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
    ) ON [PRIMARY]
    I receive a wrong code like this:
    CREATE SEQUENCE Table1_ID1
    START WITH 1
    INCREMENT BY 1;
    CREATE TABLE Table1
    ID1 NUMBER(10,0) NOT NULL,
    Name1 VARCHAR2(50) ,
    CONSTRAINT PK_Table1 PRIMARY KEY( ID1 )
    CREATE OR REPLACE TRIGGER Table1_ID1_TRG
    BEFORE INSERT
    ON Table1
    FOR EACH ROW
    BEGIN
    SELECT Table1_ID1.NEXTVAL INTO :NEW.ID1
    FROM DUAL;
    END;
    CREATE SEQUENCE Table1_ID1
    START WITH 1
    INCREMENT BY 1;
    CREATE SEQUENCE Table2_ID2
    START WITH 1
    INCREMENT BY 1;
    CREATE TABLE Table2
    ID2 NUMBER(10,0) NOT NULL,
    Name1 VARCHAR2(50) ,
    CONSTRAINT PK_Table2 PRIMARY KEY( ID2 )
    CREATE OR REPLACE TRIGGER Table1_ID1_TRG
    BEFORE INSERT
    ON Table1
    FOR EACH ROW
    BEGIN
    SELECT Table1_ID1.NEXTVAL INTO :NEW.ID1
    FROM DUAL;
    ENDCREATE OR REPLACE TRIGGER Table2_ID2_TRG
    BEFORE INSERT
    ON Table2
    FOR EACH ROW
    BEGIN
    SELECT Table2_ID2.NEXTVAL INTO :NEW.ID2
    FROM DUAL;
    END;

  • Noticed issues with SQL Developer 3.0

    Not sure where to file these found issues (and post them here until someone knows where to...)
    - Create TAPI PL/SQL wizard doesn't take into account tablenaming (and columns) which uses all possible 30 characters and therefore generates code that can not be compiled while adding extra characters.
    - In the "create index" wizard (right click when in "table" section), it is possible to click and add values which will generated the following (when executed the database will not except the syntax of course)
    create index index01 on table01 (column01, column01, column01, column01, column01)

    Buntoro wrote:
    For creating TAPI, basically, I am not certain what is that actually?
    Is it creating PL/SQL (stored proc / function)?
    Which part that causes the naming restriction being overruled?
    A simple step to reproduce is more than welcome.Can't be reproduced and its that simple that dev. people involved will know what I mean
    >
    For creating index, I believe that should be marked as a bug. SQL Dev should remove the selected column name to avoid being chosen again.
    Thats also a way to solve bugs --- grin --- (snik smiles are not allowed anymore on the OTN forums, beats me why)
    For DDL generation script, I believe SQL Dev relies on DBMS_METADATA, therefore this issue implies on your case.
    Perhaps you can give any idea to enlighten the developer on how to provide the correct result for XML type.Will report it to the xmldb dev team when beta trails begin, somewhere in the future I guess, for Oracle 12. It has no hurry, there are more XMLDB features not properly supported in the common development Tools (also for all those not Oracle, like toad)
    Edited by: Marco Gralike on May 18, 2011 7:04 PM

  • Issue with SQL Developer 4.1 Early Adopter 2 - start sql-script by "@"

    Hi,
    today i realized, that starting a sql-script by writing @scriptname.sql in a sql worksheet and press F9 to start the script, does not work anymore.
    With EA2 there is always an error message shown like "unkown command" with some strange characters "�������������������������������" in the script logging window.
    The sql-scripts are located in a filesystem folder the os environment variable SQLPATH points to.
    In Version 4.0.x this worked perfect! Is this a planned "feature" or just a bug in EA2 fixed in later EA versions?
    In addition, when i open such a sqlscript with the file open menu in sqldeveloper the content of the sqlscript is not shown in the script window. There are only some none printable characters "�����" displayed in the sqlworksheet, and not the "select ..." a normal texteditor shows.
    Thanks in advance
    Matthias

    Hi,
    with encoding set to utf8 it does not work. Don't know why. After setting the encoding to "cp1252" everything works fine again! Thank you very much!
    Matthias

  • Connection Issue - SQL Developer 1.5.1

    I have an issue when trying to create a new connection, but only on one PC. When I try to create the connection by selecting TNS in the connection type drop-down none of the Network Aliases are available for me to select.
    I can set up the conection on another machine, log off, log back on to this machine and the connection is there for me to use. However, I then get the following error whe I try to use the connection:
    Invalid Connection Information Specified.
    Verify the URL Format for the specified driver.
    Vendor Code 0
    Has anybody come across this error before? Does anyone have a solution?
    Regards,
    Nick

    Clients installed for the following clients 6i, 9i, and 10g each in their own Oracle Home. We don't use tnsnames.ora at all for our location any longer. We had used onames services and moved about two years ago to LDAP. So we configure our machines to use SQLNET.ora and the LDAP.ora files right now for each machine. LDAP does not work with anything prior to 9i if my memory is right so I only have the SQLNET.ora/LDAP.ora files in the 9i and 10g client folders. I thought this could be an issue of SQL Developer using an Oracle Home as it's default and I don't have the files it needs for LDAP or something so I have tried to reveiw all of my Oracle Homes. I also have a tool to switch your default home and I have tried that to see if that would change where SQL Develeoper is looking for the LDAP.ora file. In my 6i home I have the sqlnet.ora file that still works with onames services to resolve names.

  • Oracle SQL Developer issue when using VPN (Cisco)

    All,
    We've got a somewhat obscure issue with SQL Developer connectivity to our databases from a remote employee's laptop.
    The database is hosted inside our firewall and when the employee tries to connect to the database he receives the following error:
    +"Error Encountered: An error was encountered performing the requested operation: The network adaptor could not establish the connection. Vendor Code 20"+
    I believe I may have seen the following error at one point as well...
    Status : Failure -Test failed: IO Error: The Network Adapter could not establish the connection
    Note: He gets this error when logged into our VPN & while he can connect via SQL*Plus to that same database. He gets the error regardless if he uses the tnsnames entry option in SQL Developer or if he is using the "Basic" connection type.
    What's interesting is that if he disconnects from the VPN, turns off his wireless connectivity and then hard-wires into our network he can connect, no issue.
    The strangest part for me is that while he can not connect to the database via SQL Developer, he can connect via SQL*Plus. He can ping the source IP address fine, he can tnsping the database no problem, he can connect via SQL*Plus, he just can't connect via SQL*Developer. Since SQL*Plus and tnsping are working, I know he can access the db server via port 1521, so I don't think it's a port issue.
    Another strange thing: When he connects to our network via an "old" VPN (open VPN) he has no issues.
    His machine is Windoz 64 bit (HP laptop) and he's using the latest version of SQL Developer and a newer JVM.
    Also interesting: I also have a Windoz 64 bit laptop (Lenovo) and I do not have the same issues as he does. I however am running an older version of SQL Developer and probably an older JVM.
    I dug around a bit, seems like perhaps this has something to do with IPv6? No idea what to do next except have my network guy look at firewall logs to try to capture where the connectivity is being dropped.
    Any thoughts or suggestions would be appreciated. I've tried all kinds of things (giving him my tnsnames.ora and sqlnet.ora file, manually editing those files, tried IP addresses instead of host names, tried host names with the .doman.org extensions, etc.).
    Again, any suggestions would be appreciated and thank you very much.
    Rich
    Edited by: rmurnane on Oct 23, 2012 10:58 AM

    Since SQLPlus is installed and works fine you could try to set
    Tools -> Preferences -> Database -> Advanced -> Use OCI/Thick driverThis should enable SQLDeveloper to use the same oracle client SQLPlus is using to connect to the database.
    Mind that by setting this option you need to have an 11g client (or instant client) installed that matches the ojdbc6.jar version used by SQLDeveloper, so if you are using an older client this may not be a usable solution.

Maybe you are looking for

  • Removing Crop Marks

    I have a 65 page PDF file that I need to cut all of the crop marks out of. Is there a tool In Acrobat Professional 6.0 which can trim all of the crop marks off all of the pages for me? I do not have access to the document that created the 65 page PDF

  • Photos not available for downloading to word.  Photo booth comes up instead

    I downloaded an update to my iMac today and now I can's access my photos for Word.  Photo Booth comes up instead.

  • Foreign trade - legal control.

    Hello, Could you please tell me what skills/informations are needed to configure the Legal control? I mean although I understand the function and know how to configure, I have to read the foreign trade law to map the law into the system. I think the

  • HT5312 how to creat a rescure email address ?

    hi I have ann Apple acount but I dont have a rescure email address, how can i add a rescure email address to my account?

  • After Effects CS4 error

    I installed after effects CS4 on the school pc, it works fine until I login into student user login and when i open up after effects it comes up with this error. "Adobe effects error:finding preferences folder - no such directory (-120)" I search in