SQL Developer 3.0 EA1 creates account names case senstive

Hello

When you create a new account with SQL Developer 3.0 EA1, the username is enclosed in quotes. This creates an account name of case-sensitive which creates problems when you try to sign. Historically, the account names have been converted to uppercase internally and during the logon sequence this is expected behavior. Not sure why SQL Developer 3.0 EA1 team has chosen to start encapsulating user names when creating quotes?

Example of a create user statement of 2.0

-SQL USER
Why_this_old_way CREATE USER IDENTIFIED BY scott;

-ROLES
GRANT "RESOURCE" FOR why_this_old_way;
GRANT "CONNECT" to why_this_old_way.

Example of a create user statement of 3.0 EA1.

-SQL USER
CREATE USER 'why_this_new_way' IDENTIFIED BY scott;

-ROLES
GRANT the "RESOURCE" to "why_this_new_way";
GRANT 'CONNECT' to 'why_this_new_way ';

Having the names of case-sensitive objects significantly increases the complexity unnecessarily, please do not implement this approach.

Scott K.

There was a change made to address another issue that caused this problem. I supported this behavior will return following EA (when it exists) or the Production version.

Syme

Tags: Database

Similar Questions

  • Number of sql developer for single schema created sessions

    Hi all

    11.2.0.3

    RedHat 5

    I go into the architecture stuff and I know, that's a session connection to a dedicated database server process is allocated.hence for each session, there will be an id of operating processes and a SID on oracle

    But when I set a unique connection of sql developer I see two process IDs and two sid. Can someone by the light on it.

    5847 1 Oracle Sep25 0?        00:00:02 ora_i104_dev

    5851 1 Oracle Sep25 0?        00:00:02 ora_i105_dev

    5855 1 Oracle Sep25 0?        00:00:02 ora_i106_dev

    5859 1 Oracle Sep25 0?        00:00:01 ora_i107_dev

    5863 1 Oracle Sep25 0?        00:00:01 ora_i108_dev

    5867 1 Oracle Sep25 0?        00:00:01 ora_i109_dev

    5871 1 Oracle Sep25 0?        00:00:01 ora_i10a_dev

    5875 1 Oracle Sep25 0?        00:00:01 ora_i10b_dev

    5879 1 Oracle Sep25 0?        00:00:01 ora_i10c_dev

    5883 1 Oracle Sep25 0?        00:00:01 ora_i10d_dev

    5887 1 Oracle Sep25 0?        00:00:01 ora_i10e_dev

    5891 1 Oracle Sep25 0?        00:00:01 ora_i10f_dev

    5895 1 Oracle Sep25 0?        00:00:01 ora_i10g_dev

    5962 1 Oracle Sep25 0?        00:00:02 ora_smco_dev

    Oracle 22034 1 0 01:33?        00:00:00 /u01/app/oracle/product/11.2.0.3/db1/bin/tnslsnr-heriter listener

    root 22132 3202 0 01:37?        00:00:00 sshd: oracle [priv]

    Oracle 22136 22132 0 01:38?        00:00:00 sshd: oracle@pts/1

    Oracle 22137 22136 0 01:38 pts/1 00:00:00 - bash

    root 22162 3202 0 01:38?        00:00:00 sshd: oracle [priv]

    Oracle 22166 22162 0 01:38?        00:00:00 sshd: oracle@pts/2

    Oracle 22167 22166 0 01:38 pts/2 00:00:00 - bash

    Oracle 22189 22167 0 01:38 pts/2 00:00:00 sqlplus as sysdba

    Oracle 22192 22189 0 01:38?        00:00:00 oracledev (DESCRIPTION =(LOCAL=YES) (ADDRESS = (PROTOCOL = DOB)))

    Oracle 22228 1 0 01:40?        00:00:01 oracledev (LOCAL = NO)

    Oracle 22234 1 0 01:40?        00:00:04 oracledev (LOCAL = NO) (* this is the sqldeveloper *)

    root 22697 3202 0 02:19?        00:00:00 sshd: oracle [priv]

    Oracle 22702 22697 0 02:19?        00:00:00 sshd: oracle@pts/3

    Oracle 22703 22702 0 02:19 pts/3 00:00:00 - bash

    Oracle 22795 1 0 02:23?        00:00:00 ora_w000_dev

    Oracle 22865 1 0 02:29?        00:00:00 ora_j000_dev

    Oracle 22869 1 0 02:29?        00:00:00 ora_j001_dev

    Oracle 22872 22703 0 02:30 pts/3 00:00:00 ps - eaf

    Oracle 22873 22703 0 02:30 pts/3 00:00:00 grep ora

    Upstairs, there are two process of oracledev id once I plugged of sqldeveloper. While local connection for the same schema from OS creates only simple process.

    We create two

    1. the main connection for tree, spreadsheet reports, etc.
    2. secondary connection for the insight of code have - as you type in a worksheet, we ask for the names of objects, etc.

    However, you can have more than two. If you open a spreadsheet not shared, this will create a dedicated connection, new for this worksheet.

    In addition, if you open a repository, as for migration or unit tests, again, it is a new connection.

  • Queue in sql developer does not take into account the VALUE ECHO OFF

    I am a developer SQL 3.1.07.42 Windows 7 64 bit with java 1.7

    I have the following script very simple just to show the problem:
    SET ECHO OFF;
    SET FEEDBACK OFF;
    SET SERVEROUTPUT ON;
    SET VERIFY OFF;
    SET PAGES 0;
    SET HEAD OFF;
    
    SPOOL c:\test.sql
    SELECT 1, 2, 3 FROM DUAL;
    SPOOL OFF;
    /
    If I run into a FROG 10.6.0.42 it creates the file with
             1          2          3
    This is as expected (by me)
    If I run the same exact query in SQL Developer 3.1.07.42, it creates the file with:
    < SELECT 1, 2, 3 FROM DUAL
    1 2 3
    (the < above is actually ">" but software formatting CODE is screwing ' > ')
    but I don't want the ECHOed command to be wound. For the life of me, I can't find a way to turn off the ECHO of the queue in sql developer.
    Tried the same thing in 3.0.4 and 2.1.1 with the same (bad) result (more a few warning on some unsupported SET commands).

    Am I missing something obvious? Cause like that, control of the coil cannot be used in sql developer to generate a CSV file, for example, due to the echo command. And windows does not come with default SED so it's on. (more than my original script is integrated into a whole much broader and complex scripts and the main script, their use is run from Developer SQL as a company policy (so that everyone uses the same tool and the code runs the same for everyone))

    Any ideas/suggestions are welcome
    Thank you.

    Hello

    If you save your code

    SET ECHO OFF;
    SET FEEDBACK OFF;
    SET SERVEROUTPUT ON;
    SET VERIFY OFF;
    SET PAGES 0;
    SET HEAD OFF;
    
    SPOOL c:\testscript.log
    SELECT 1, 2, 3 FROM DUAL;
    SPOOL OFF;
    

    as a script, say C:\testscript.sql, then run from a worksheet like

    @\testscript.sql

    the output in C:\testscript.log will be

    1 2 3

    Kind regards
    Gary
    SQL development team

  • Restriction of SQL Developer 3.2.1 patch connection name

    I would like to know if this is a bug or feature SQL Dev complains about "the login name can only contain alphanumeric characters..." ».

    All my conn.descriptors defined previously (names) have a lot of 'standard tanks' then (ie. the IP address of the server) they were imported successfully after installing the latest patch, and since then, every time I try to rename one of them or make a new one with the help of my old naming scheme, I get the error.

    My approx. is Win7 (x 64), Java (TM) 1.7.0_05, SQL Dev 3.2.10.09.57.

    Thank you
    Zsolt M.

    This is a feature. See connection familiar name/description in 3.2.10.09.57 wire

  • Data Modeler SQL Developer 3.0 EA1: Auto Road off

    I admire the Data Modeler tries to automatically position the flow of data and relationships. I'm sure it's very difficult to automate, and I don't think it works very well in this tool.
    So, I'm happy you have the option to turn off 'auto road' I'm quite particular about how diagrams should look like.
    In the EA1, it seems that even with "auto road" shot, all connected relationships and that is repositioned automatically as soon as an entity or process box is resized or moved - even the smallest forest.
    I think that the tool does not reposition relations or traffic as long as their current position can be maintained after the process/entities connected is resized or moved. When the lines must be moved the tool should try to maintain a position close to the original as possible position.
    Let me know if there is a way to do this.

    Also, when relationships or that must be repositioned by the tool, I think they should be placed further from each other as possible (which gives more space for the labels). Currently, it seems that the default behavior is to bunch of relationships and who reconciled when they sign the same entities or processes.

    / Marc Oliveira

    Hi Jon,

    In the pop-up menu for the diagram - use 'right click' on the space empty diagram in order to get it.

    Philippe

  • Cannot use SQL * Plus connection under the sys account name?

    Hi all:

    As the title, is it necessary?

    user12086319 wrote:
    Here's the error using sys log in * 10 g XE *.
    ORA-28009: connection as SYS must be SYSDBA or SYSOPER.

    How can I use SYS to open a session?

    Thank you.

    Try

    sqlplus "/ as sysdba"
    
    OR 
    
    sqlplus /nolog
    connect / as sysdba
    
  • SQL Developer, wrong file name registration

    Hello

    I use generation SQL Developer 4.0.2.15 15.21 on Windows7 Enterprise 64-bit. Recently, I found that when I save the contents of the pane out of the Script (by clicking on the floppy disk icon) and use the select a file to replace dialog box, SQL Developer is overwhelming in fact another file in the same directory.

    I already tried to restart SQL Developer, restart Windows and rename the properties - preferences.xml to force SQL Developer for the re - create (in case it has been altered in some way), but I still see the same behavior.

    My current workaround is to manually type the name of the existing file in the dialog "Save" to save a new copy.

    Anyone have any ideas on what could be the problem or how I could try to fix this? I searched the usual sources (google, this forum and My Oracle Support) but have not found anything similar with the exception of "


    You sort by date or size in the first file picker?  A bug with the following title has been fixed for EA1 release 4.1:

    FILE SELECTOR RETURNS WRONG FILENAME OF EXPORT AFTER SORTING BY DATE/SIZE


    It was initially reported in this discussion: 4.0.3 export csv date modified

  • How to solve the problem of Oracle SQL Developer Connection?

    People,

    Hello. I use the Oracle 11 GR 1 material database. The database https://localhost.localdomain:1158 control console / em works correctly. I can create a database and a table with success.

    My OS is Linux and connects to the internet successfully.

    In order to execute SQL statements. We use Oracle SQL Developer. I connect Oracle SQL Developer in the following way:

    Connection name: DB1 (is my database name)
    User name: SYS (this is the user name I used to connect to the Console)
    Password: SYS (this is the password used to connect to the Console)
    Connection type: basic
    Host name: localhost
    Port: 1158
    SID: DB1 (it is created during the installation of the database)

    But the error message: "status: failed - IO exception Connection Reset."

    Can any folk tell me how to solve the problem of Oracle SQL Developer Connection?

    user8860348 wrote:
    People,

    Hello. I use the Oracle 11 GR 1 material database. database Control Panel https://localhost.localdomain:1158 / em works correctly. I can create a database and a table with success.

    My OS is Linux and connects to the internet successfully.

    In order to execute SQL statements. We use Oracle SQL Developer. I connect Oracle SQL Developer in the following way:

    Connection name: DB1 (is my database name)
    User name: SYS (this is the user name I used to connect to the Console)
    Password: SYS (this is the password used to connect to the Console)
    Connection type: basic
    Host name: localhost
    Port: 1158
    SID: DB1 (it is created during the installation of the database)

    But the error message: "status: failed - IO exception Connection Reset."

    Can any folk tell me how to solve the problem of Oracle SQL Developer Connection?

    user name: sys
    password: enter_your_correct_password given at the time of the installation of oracle

    role: select sysdba if you would connect as sysdba otherwise select normal for users other than the sys

    HostName: Enter your ip or hostname of the oracle example server address:-192.168.11.12

    to find the terminal/command prompt open hostname in oracle installed machine
    type---> hostname

    type ping hostname--->

    You can find the IP address of the server

    Port number: 1521 (default)---> I guess, otherwise check the port number in the file tnsnames.ora under your ORACLE_HOME/network/admin folder

    SID: DB1

    try it
    Good luck

  • SQL Developer DBA 4.1 Panel is not available

    I am unable to get the DBA browser to display the version 4.1.  1.13 of the section of the documentation says that I should be able to show that the Panel Navigator DBA via View-> options menu s/n, however, for me that the DBA option does not appear as a menu drop-down option.

    I am running SQL dev Version 4.1.0.17 build HAND - 17.29 on ubuntu 14.04 with Java:

    Java version "1.8.0_31".

    Java (TM) SE Runtime Environment (build 1.8.0_31 - b13)

    Screenshot from 2015-02-24 08:00:48.png

    You have a lot of menupoints missing from the view menu, for example. Maker of data, Data Miner, process and test unit. Using Oracle 64-bit on 64-bit JDK8 and SQL Developer 4.1 EA1 on Debian Jessie I never did face the problem like this (nor on the various installations of Windows).

    You have errors on the terminal where you invoked from sqldeveloper, or logging of the component view/Log page?

    You have the same display menu, if you do not import the previous version sqldeveloper preferences? Try to move ~/.sqldeveloper/system4.1.0.17.29 temporarily out of the way and see if you have the full view menu, including menu s/n on a clean boot.

  • Connection closed - is there a SQL Developer Tools &gt; setting Preferences?

    Is there a way to set a Pref that will keep my connections open (for long periods of time)?

    Hi Chuck,

    No preference for this, but, as far as I know, a third-party extension should be a help for versions of SQL Developer to 3.2:

    SQL Developer Extension Keep-Alive created!

    For 4.0, the third-party developer will have to update the extension.  Do not know if it took steps again:

    Keepalive Developer SQL does not work in 4.0

    Kind regards
    Gary

    SQL development team

  • SQL Developer 3.0 EA 1 Advanced support for the type of data in the unit tests

    Hello

    According to SQL Developer 3.0 EA 1 New Feature List (http://www.oracle.com/technetwork/developer-tools/sql-developer/rel3-featurelist-ea1-166831.html#ut)
    the EA 1 version 3.0 supported advanced data types in the unit tests. This means support the ANYDATA and RECORD types? I installed version 3.0 of EA 1 to CentOS linux, but it seems that those advanced types are not supported yet. When I try to add a unit test for a function that returns the record type, I get quick error: "the return of PL/SQL RECORD type is not supported. Cannot test (function_name) because 1 arguments have not supported for types". Also if I try to unit test procedure which parameter is of type ANYDATA, I get quick error: "the type UNDEFINED P_DATA argument is not supported. Cannot test (procedure_name) because 1 arguments have not supported for types". Are those advanced data types supported in SQL Developer 3.0 FINAL version?

    Thank you
    Miikka L

    Edited by: user12844253 the 27.10.2010 16:31

    Hi Mikka,

    Only simple PL/SQL records are currently supported i.e. those containing no optional or repeating components and where all components are themselves supported. This restriction is in place, due to the fact that we are using JDBC as a parameter mechanism which does not directly support the passage the PL/SQL record type.

    ANYTYPE and ANYDATA are currently not supported because they have a dynamic value type and must be set programmatically. In the future, it would be possible to support these via the dynamic value and and validation features.

    This will remain for the final version.

    Kind regards
    Richard

  • Different account for each installation of SQL Developer 4.1?

    Hello

    Some of my users want to download & install SQL Developer 4.1.

    Should each of them I create their own Oracle account?

    Or I can just have them use the installation media that I downloaded with my account? I have an Oracle account and I downloaded the installation media. There is no prompt for credentials during the installation.

    Some of my users want to download & install SQL Developer 4.1.

    Should each of them I create their own Oracle account?

    Or I can just have them use the installation media that I downloaded with my account? I have an Oracle account and I downloaded the installation media. There is no prompt for credentials during the installation.

    SQL Developer is a CLIENT tool and does NOT need credentials to install or run.

    It does NOT include a database, but you must be able to connect to a database of data and which requires to know a user name and password for the DB that you connect to.

    .

  • ((Password of SQL DEVELOPER user name? -access TABLES APEX))

    How do you get tables APEX SQL DEVELOPER?

    What should I use as a name of USER and PASSWORD
    inside SQL DEVELOPER?
    ____________________________________________



    Hello

    I installed on my APEX machine.

    WINDOWS 7 PROFESSIONAL 64-BIT.


    I also installed:

    ORACLE XE

    and

    SQL DEVELOPER.


    I have applications that I created in the APEX
    with different paintings.

    ________________________________________

    Question:

    **********************************
    How can I access my APEX tables of
    within SQL DEVELOPER?

    Should what USER name and PASSWORD I use?
    **********************************


    I can do this with
    HUMAN RESOURCES

    SQL DEVELOPER USERNAME = HR
    PASSWORD = HR

    It works very well.
    ..................................................................

    But what of my own TABLES APEX
    I created inside my own workspace
    inside the APEX?

    For example:

    CONNECT TO APEX:

    http://127.0.0.1:8080 / apex /.

    If my

    APEX DAVID_WS = WORKSPACE

    SCHEMA = DAVID_SC

    APEX USERNAME = DAVIDAPEX_UN

    APEX PASSWORD = DAVIDAPEX_PW

    ..............................................................

    LOGIN TO THE ADMIN OF THE APEX:

    http://localhost: 8080/apex/apex_admin

    APEXADMIN USERNAME = DAVIDADMIN_UN

    APEXADMIN PASSWORD = DAVIDADMIN_PW

    ..............................................................


    So, given the 6 above
    NAMES and PASSWORDS above:


    SQL DEVELOPER USERNAME =?

    SQL DEVELOPER = PASSWORD?

    ..............................................................

    Thanks a lot for your help!

    David

    ________________________________________________

    .

    Published by: DAVID888 on February 3, 2011 23:53

    You tables apex are in the schema attached to the workspace of your applications.

  • When you connect, SQL Developer, you use the schema to username and password
  • When you connect using your developer account, you use the Apex workspace account details (but when change the DB using the workspace that it accesses the schema using the schema and password you had linked to the workspace)

    Hope that's clear.

  • How to create Spatial indexes in SQL Developer Data Modeler 4

    Hello

    What is the procedure to create a Spatial index in SDDM v4? I found myself at an impasse because of the following problems:

    (1) retro-engineering rate the spatial index, then I need to add them manually.

    (2) adding an index does not allow me to check the 'spatial', and does not allow me to add the sdo_geometry column in the index definition.

    (3) for the registration of the spatial properties for a table, I can not choose the name of the Spatial Index.

    I came across an old post (Data Modeler - cannot create a spatial index), but this post is no longer valid because SDDM V4 does not allow me to create an index without columns (definition of the incomplete index).

    Help is appreciated,

    Kind regards

    Richard.

    Hi Richard,

    Thanks for your update.  I'm scared, I was assuming you were using the stand alone rather than SQL Developer Data Modeler.

    I tried using SQL Developer 4.1.0.18.37 (ai2) using a thin connection and got the ClassCastException you have found.

    But when I used ai2 autonomous, maker of data using the same login details 'Advanced', it worked OK and imported from the spatial index.

    (I'm puzzled as to why these two seem to behave differently, as this is the version ai2 data integrated with SQL Developer ai2 maker).

    I then plugged and reverse engineering the same tables (yet) in a new model.

    Funny is that there is no error in the external journal this time, but the spatial properties are still not retroconcues correctly.

    Is it possible that you have not set the option to import the spatial properties?  I expect that the spatial properties would be imported or that the error should be registered.

    SQL Developer ai2 imported properly the spatial properties and the spatial index, when I used a basic connection and specified host, port, and SID or Service name.

    Another issue: SQL Developer relies on a certain JDK / JDBC library?

    Any Java JDK 1.8 should be good.

    David

  • create a new user with password expire - problem SQL Developer

    Hi people,

    I use RDBMS 11.2.x on Solaris and Linux, and in the face of a problem that I hope someone can help me with.

    Our policy is to create a new account with a temporary password and force them to reset the password at the first login.

    Therefore, I use: "create user < username > identified by < user > password expire...» »

    The problem is that many users use Oracle SQL Developer and do not have access to SQL * more.

    When I user logs in the database for the first time in SQL Developer, he just tells them that the account is locked.

    It does not say the password is expired, and it does not give them a way to change this (that I can find it).

    I'm not familiar with SQL Developer and hoped for someone who has had a similar problem can offer some suggestions.

    Thank you.

    Jim

    Change password dialog is no longer Pop Up after ORA-28001 (password expired) (Doc ID 811736.1)

Maybe you are looking for