Oracle Database Express Edition SQL Developer

Hi all,
I did download the Oracle Database Express Edition from Oracle's website and am trying to create a new connection with the following info
Connection Name: myconnection
Username: ora21
Password: ora21
Hostname: localhost
Port: 1521
SID: orcl
Note: I even tried to use xe as the SID since it's a express edition but it keeps telling me test failed: ORA-01017: invalid/password; logon denied.
Could it be because it's an Express edition? Please advice as am a new DBA and am practising on my own

@Jim: thanks for the reply! I just created the user ora21 but when I try to creat the connection again it gives error ORA 01045 : user ORA21 lacks create session privilege; logon denied.

Similar Messages

  • Using Oracle Database Express Edition in development environment

    Hi All,
    I have doubt regarding the usage Oracle Database Express Edition in Development environment. I am not sure weather I can ask a non technical question here or not. Pleas forgive me if I have done any thing wrong.
    I am working in an IT company where we take up projects outsourced by our clients. As part of our current project we are making some modification to a web application used by an institution. Our client is using Oracle Data Base standard edition. Due to budgetary constraints of our Company we can not set up a Oracle standard edition data base in our development environment.
    So would it be illegal if we use  Oracle Database Express Edition in our development environment?  We can guarantee that  only our internal development team which comprise a maximum of 10 people will have access to this development database and this development data base will never be opened to our Client for their business purpose(Who have their own Oracle standard edition in their environment). As part of the project we delver only table DDL script and stored procedure to our client and they put it in their environment.The sole purpose of a internal Express database will be development only.
    Could some one please tell me if it would be violation of license agreement if we install Oracle Database Express Edition in our development environment.

    Hi Paul,
    Actually I have already gone through the Oracle Technology Network Developer License Terms for Oracle Database 11g Express Edition . But was not quiet clear about the content. It says in the license terms that "We grant you a nonexclusive, nontransferable limited license to use the programs for: (a) purposes of developing, prototyping and running your applications for your own internal data processing operations". Does the term "your application" includes an application we are developing for another company. Since the Express database  is installed in the development environment only and is not opened to any one else not even for Our client it definitely falls under the term "internal data processing operations" right?

  • Oracle Database Express Edition 2 Day Plus Java Developer Guide??

    I posted in the JDeveloper forum, as well as sending email via your feedback link found on the tutorial but I am a little disappointed by this:
    The Oracle® Database Express Edition 2 Day Plus Java Developer Guide has some errors in it.
    in Windows, I simply chose, start
    -> programs -> Oracle Database Express Edition -> Go To Database Home Page -> click documentation from the link -> and run the Oracle® Database Express Edition 2 Day Plus Java Developer Guide tutorial.
    the problem is there are mistake(s) in the tutorial, for example: section 4-19 is this:
    "The complete code for the method should now be as follows:
    public boolean authenticateUser(String userid, String password,
    HttpSession session) throws SQLException { "
    it needs to be this:
    public boolean authenticateUser(String jdbcURL, String userid, String password,
    HttpSession session) throws SQLException {
    Also:
    there is no mention that :
    the port and SID must also be passed in the
    ds.setURL(jdbcUrl) found in the authenticateUser() method, or an exception is thrown. This differs from value of the jdbcUrl string found in the getDBConnection() , which makes it hard to figure out
    The tutorial is great even if it doesn't work out of the box, but I am disappointed that errata or completed code for this project is not available, especially when you explicitely point to it via the steps mentioned above.
    Thanks,
    Patrick

    The tutorial seems to be using the old JDeveloper 10.1.2.
    If you are aiming to learn JDeveloper then just use the tutorials linked from the JDeveloper home page.
    http://www.oracle.com/technology/obe/obe1013jdev/index.htm

  • Oracle Database Express Edition 10g; Designer, PL/SQL; Download

    Hi,
    I am new to this forum, I hope that I am posting in the right one :)
    I am refreshing my SQL knowledge an installed the "Oracle Database Express Edition 10g Release 2 (10.2)" which works fine. I now would like to learn PL/SQL and Oracle Designer.
    Are these 2 also offered as a free download for personal use? Since the Oracle website is pretty complex I am not sure what I should download.
    Can I run these programs on one WinXP Home machine?
    Thanks for your help!

    Designer is not free like Express Edition. You cannot use it for any commericial purpose without a licence.
    Designer is a big tool. I don't know why it shouldn't run against XE but it is a tough blighter to configure and install. It is also a moribund product, so the answer to this question:
    Is there a newer Designer version available?is likely to be "No" whenever you ask it.
    Cheers, APC

  • Connect Problems with Oracle Database Express Edition 11g Release 2

    Hello,
    I am a student trying to install Oracle Database Express Edition 11g Release 2 and SQL Developer on my home system, Win7 64Bit, in order to practice some things I've learned from me DBA class and Developer classes.
    Anyway, I have everything installed, but I am having difficulty connecting as SYS or SYSDBA in the 'Run SQL Command Line', I keep getting the ORA-01017: invalid username/password: logon denied.
    However, If i select the 'Start Database' I get this:
    C:\oraclexe\app\oracle\product\11.2.0\server\bin>
    and I can type sqlplus / as sysdba and it starts up just fine and show user lists me as "SYS".
    but if I go back to 'Run SQL Command Line' I still cannot connect as SYS or SYSDBA...I find this both confusing and frustrating. I don't know if I am in different instances or something like that, but I seem to be limited to connecting only as "SYSTEM". I need SYS because I want to practice creating datafiles, instances and things like that, but I seem to be lost.
    Also, I am trying to create a new DB connection with SQL Developer and I can only us SYSTEM for my login which, if I understand correctly, will limit my privileges. Again When I try to sign in with SYS or SYSDBA I get error'd out. When I installed Ora11gDBExpress I was prompted in input a single password that was supposed to grant me access as SYS or SYSTEM, but I am limited to only SYSTEM for some reason.
    So, I am looking for help/guidance as to what to do.
    Thanks in advance for any and all help,
    Warren

    General rule of thumb, don't use sysdba unless you want to shut down the database, or grant a database user privileges on a sys object.
    A SYSTEM connection is not "limiting", it has the DBA role which means a user with a system connection can do most anything needed, including select/update/delete/drop any user's objects as well as change parameters in the instance.
    The system user can indeed add datafiles, tablespaces, etc. The instance and database should already be created as long as the installer completed all its chores correctly. For XE, per the license agreement only one instance can run on one host. If you want to try creating a database, it will require shutting down the XE instance and creating a new database service, creating the database, and installing the system catalog and any other optional components desired. Good practice indeed, but a bit advanced for the new user.
    Do create users for schemas ... connect system; create user <username> identified by <password> and connect <username> for the schemas (a collection of objects) within the database. Grant the resource and create session privilege to <username> to allow the database user the ability to create tables, indexes, stored procedures, etc.
    There is no "or" in a sys as sysdba connection, from 10g onwards a sys connection requires using the sysdba privilege. To enable a sysdba connection, add your host user to the ORA_DBA group on the host. To verify the OS users in the ORA_DBA group, this might work for win7, in a cmd box ...
    $ net localgroup ora_dba
    ...If your OS user is in the ora_dba group the sys as sysdba password is not relevant, you can in fact type anything for a password. If you wish to connect with the sysdba privilege from a remote client, that is a bit different and requires knowing the password set in the instance password file. Which should be set the same as the system password defined in the installer, but you can change that by creating a new password file. Another slightly advanced topic.
    In Windows IMHO its better to leave the listener and database set to Manual start (in the services applet, Start/Run/services.msc) and start the listener, then the database, when its needed. At least for an XE instance, as its intended for practice and learning RDBMS management.
    Edited by: clcarter on Mar 2, 2012 6:19 PM
    fix typos

  • Compatibility of OMWB and Oracle Database Express Edition

    Hi,
    I have been searching all over but can't find information on migrating MS SQL 2000 databases to Oracle Database Express. When I perform the migration, all seems to go well, but then only the tablespaces are visible in Oracle Database Express Edition. No tables or views. Are they even compatible?
    Thanks for any help you can give!
    KJ

    Hi KJ,
    Have you taken a look at the newly developed SQL Developer Migration Workbench? it is now available as an Early Adopters Release. It requires an installation of version 1.1.2 of SQL developer. This release supports SQL Server 7, 2000, and 2005.
    You can find more about it athttp://www.oracle.com/technology/tech/migration/workbench/index_sqldev_omwb.html

  • Unable to start Oracle Database Express Edition (XE) on window 7 - 64 bit

    I installed Oracle Database Express Edition (XE) on a WINDOWS 7 - 64 bit machine. I tried "Get Started" and http://localhost:8080/apex. It does not start/connect of anything. Please help.
    Thanks.
    Debbie

    I received the following message from lsnrctl status
    and sqlplus / as sysdba.
    C:\>lsnrctl status
    LSNRCTL for 32-bit Windows: Version 11.2.0.2.0 - Production on 20-JUL-2012 17:09
    :16
    Copyright (c) 1991, 2010, Oracle. All rights reserved.
    Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=IPC)(KEY=EXTPROC1)))
    TNS-12541: TNS:no listener
    TNS-12560: TNS:protocol adapter error
    TNS-00511: No listener
    32-bit Windows Error: 2: No such file or directory
    Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=MW777SXH4ITNY4.dir.svc.a
    ccenture.com)(PORT=1521)))
    TNS-12545: Connect failed because target host or object does not exist
    TNS-12560: TNS:protocol adapter error
    TNS-00515: Connect failed because target host or object does not exist
    32-bit Windows Error: 1004: Unknown error
    C:\>sqlplus / as sysdba
    SQL*Plus: Release 11.2.0.2.0 Production on Fri Jul 20 17:10:04 2012
    Copyright (c) 1982, 2010, Oracle. All rights reserved.
    Connected to:
    Oracle Database 11g Express Edition Release 11.2.0.2.0 - Production
    SQL> select sysdate from dual
    2 /
    SYSDATE
    20-JUL-12
    SQL>
    Does this mean I am up and running? I selected from dual. I will continue to play with the DB.
    If I download SQL Developer, should the version be for 32-bit or 64-bit for PC - Windows 7 - 64 - bit?
    Thanks.
    Edited by: 893328 on Jul 20, 2012 2:58 PM
    Edited by: 893328 on Jul 20, 2012 2:58 PM

  • Is the Oracle Database Express Edition 11g Release 2 enough for preparing for the 1Z0-051 and 1Z0-144 Exams?

    I am planning on getting certified as an OCA PL\SQL developer. I will be teaching myself and I have all the material needed to prepare.
    Except, I don't have a database that I can solve exercises on and practice commands.
    The two exams I will be taking are the :
    1Z0-051 exam: Oracle Database 11g: SQL Fundamentals I
    1Z0-144 exam: Oracle Database 11g: Program with PL/SQL
    So is the Oracle Database Express Edition 11g Release 2 is enough ?
    If it is not what other options do I have (I am running Windows 8.1) ?

    Yes -- 11gXE should be sufficient for practicing the vast majority of the skills required for those two exams.  I *think* that PARALLEL is not enabled in XE, so you could not test the functionality referred to in the "Use NOCOPY hint, PARALLEL ENABLE hint and DETERMINISTIC clause" topic of 1Z0-144.  I don't consider that to be a significant problem, however.  The material from the manual should suffice for the questions you'll see.
    As for what other options you have, you could download and install VirtualBox (free from Oracle).  You could then make a virtual machine on your Windows 8.1 machine and install Oracle Linux (free from Oracle).  You could then download and install Oracle Enterprise for Linux and install it on your virtual machine (allowable under the licensing when used for learning purposes only).  I have a similar setup on my Windows 7 laptop that I use when I absolutely have to test some feature that requires Oracle Enterprise.  Mind you, when I have the VM running on my system... it is ssssslllllloooooowwwwww because of the memory requirements.  I talk about using virtual machines as a certification aid in the following article:
    There is virtually no excuse to lack hands-on experience - CertMag

  • Oracle Database Express Edition 10g Download Issue

    Hi everyone. I just downloaded the freeware Oracle Database Express Edition without any apparent problems. However, when I attempt to go to the Express Edition Homepage, which is location http://127.0.0.1:8080/apex,
    I get the message that my Internet Explorer cannot display the webpage. (It can, however, display other pages.) I cannot understand why this is the case since I successfully added Web site 127.0.0.1 in my Control Panel (as specified in the instructions.) Also, the instructions stated that HTTP port 8080 was the default port, unless my system said that this was not available (which it did not.) I also tried rebooting, which did not make a difference. Help!
    Thanks,
    Jason

    user13176791 wrote:
    Hi everyone. I just downloaded the freeware Oracle Database Express Edition without any apparent problems. However, when I attempt to go to the Express Edition Homepage, which is location http://127.0.0.1:8080/apex,
    I get the message that my Internet Explorer cannot display the webpage. (It can, however, display other pages.) I cannot understand why this is the case since I successfully added Web site 127.0.0.1 in my Control Panel (as specified in the instructions.) Also, the instructions stated that HTTP port 8080 was the default port, unless my system said that this was not available (which it did not.) I also tried rebooting, which did not make a difference. Help!There is a forum dedicated to Express Edition, in which we have discussed a lot of the variants in failure that causes this problem. At the top of the page you are reading, there should be links like "Forum Home » Database » Database - General". The middle one will get you to a list of all Oracle forums and after the first 5, the rest are alphabetical - XE is pretty far down that page.
    (You might also note that there is an Installation forum next to this one. That might be better suited to the task than the 'catch-all' general forum.)
    The most common issues are related to not preparing the operating system properly. For example, if you use a laptop you probably use DHCP to get a different address from the various sites you connect to. However, Oracle works as a server and depends on having a well known address. In fact, it tends to bind the IP address at install into it's configuration files. Therefore it is critical to use the loopback adapter in such situations.
    Other issues are dependent on the actual OS into which you install. For example, Ubuntu (Linux) has very differnet install philosophy as Red Hat / Fedora, and requires a different install technique. Then again, on Windows, it is nearly impossible to install anything Oracle on a Windows 'Home' OS, and XE generally has not even been tested against Windows 7.
    Other common reasons include anti-virus; firewall; not having appropriate operating system level permissions; in Windows - using a Domain-based userid instead of a local administrator; and just general finger issues.
    Express is considerably different in the install behaviour and runtime behaviour. For example. it uses RPM and MSI instead of Oracle Universal Installer. It does not include Java in the database, which limits a lot of functionality. And it uses the built-in PL/SQL Web Gateway instead of any external HTTP server. As a result, it can be quite a shock to mmany of the regular inhabitants in this forum.
    I strongly encourage reading the documentation for XE. In particular, reading the install doc. Start at http://tahiti.oracle.com and look for the Oracle Database 10g Release 2 Express Edition documentation. (Just below the Oracle Database 10g Release 2 documentation.)
    G'luk

  • Oracle Database Express Edition used in a standalone database

    I have been developing databases for years in Access. I have had alot of people want me to make databases for them. I do not want to make the databases in access and then have to worry about sending a database to a different state and then find out that the user has a different version of access installed and it is not working correctly.
    Can I use Oracle database express edition to create a database with a front end that I can send to others and they can install it on their computer and run it? Or do they need to install the full version of Oracle Express? In other words is there like a Runtime version?

    user13756579 wrote:
    I saw that had to install twice last night, messed up my password. The one thing I am worried about is the database running all the time on the users computer, even tho they might not use the database for months at a time. These databases are small databases to keep the data of group members. ie. name, address, phone, personal information and maybe a scanned document or two.
    I have looked at other database programs, but do not want to put out alot of money if I might only develop 3-5 small databases a year.You may develope your application in such manner, that it will start Oracle XE service and stop it on exit. Set the service to start manually. That's it.

  • Is Oracle Database Express Edition 11g Release 2 free ?

    Hi all,
    is Oracle Database Express Edition 11g Release 2 free ?
    Thanks.

    Hi,
    from the product page (http://www.oracle.com/technetwork/products/express-edition/overview/index.html):
    Oracle Database 11g Express Edition (Oracle Database XE) is an entry-level, small-footprint database based on the Oracle Database 11g Release 2 code base. It's free to develop, deploy, and distribute; fast to download; and simple to administer. Herald ten Dam
    http://htendam.wordpress.com

  • OIM on Oracle Database Express Edition 11g Release 2

    Hi,
    is it possible to use the last version of OIM on Oracle Database Express Edition 11g Release 2 for a Development Environment?
    Thanks in advance,
    Max

    Last means Latest ... yes it support.

  • Oracle Database Express Edition - install on WIndows XP laptop

    I downloaded the Oracle Database Express Edition to my Lenovo T61 laptop - Windows XP professional, execute the setup.exe and load the software fine. When I press the Finish button on the final dialog, the Oracle Database 11G Express Edition Install Wizard is highlighted in the task bar, as if it is awaiting a response from a prompt. The Oracle Database 11G Express Edition option appears in the Start|Programs with the following sub-options: Backup Database, Restore Database, Start Database, Stop Database, Get Help, Get Started, and Run SQL Command Line.
    The Get Started option doesn't seen to do anything. This is the third time I've re-run the setup program, as i thought perhaps the Ad-Aware spyware program was blocking the Finish process.
    Any help would be greatly appreciated. Thank you, in advance, for your help.
    James

    Hello James,
    Windows XP professionalI assume you use the 32bit version?
    Are you logged in with administrative privileges?
    When I press the Finish button on the final dialog, the Oracle Database 11G Express Edition Install Wizard is highlighted in the task bar, as if it is awaiting a response from a prompt.Seems as if it's hanging at that point. Could you check whether the Oracle Services the installer created are up and running? Taking you other comments on "Get Started" into account, I wouldn't think so.
    In that case, you should start digging for errors in the log files created during your installation.
    -Udo

  • Oracle Database Express Edition 11g Database; Tables bigger than 11 GB

    Dear all,
    is it possible to make a part of big Tables (14 GB) visible in Oracle Database Express Edition 11g Database?
    If yes, it would be nice to get the correct development.
    Thanks in advance.
    Regards
    Peter

    972703 wrote:
    Does impdp application have any parameters for it See documentation library for regular editions, the Database Utilities manual covers Data Pump import and export tools
    or maybe there is another software which can import only specified number of rows/bytes? Then you would need to export according to "another software" rules/format as well.
    As the table is not that big, one could copy the table, delete selected rows large enough, and export from that table copy instead.
    If it's not possible, could you please be so kind and provide the full test-version of Oracle database without 11GB limitation?Oracle provides, under the OTN downloads license, SE and EE editions. See http://www.oracle.com/technetwork/indexes/downloads/index.html

  • Oracle Database Express Edition 11g Database home Page is not Displaying

    As I am Java Developer and wanted to do JDBC connection for Java.....
    So I Have Installed Oracle Database Express Edition 11g......
    But the home page on url...http://127.0.0.1:8080/apex/f?p=4950
    is Not Working.....
    I am Using Windows Xp....SP 3.....
    Help Me for this....
    Thanks & In Advance.....
    Jugal Thakkar

    972423 wrote:
    As I am Java Developer and wanted to do JDBC connection for Java.....For Java, JDBC and JDeveloper related discussions, you'll find plenty of forums:
    https://forums.oracle.com/forums/category.jspa?categoryID=285
    https://forums.oracle.com/forums/category.jspa?categoryID=500
    So I Have Installed Oracle Database Express Edition 11g......
    But the home page on url...http://127.0.0.1:8080/apex/f?p=4950
    is Not Working.....Just installed? Never worked before? Unreachable 'Get Started' page usually indicates that install was not completely successful, database creation failed because of OS misconfiguration.
    Before even trying that url you should see a endpoint with port 8080 in Endpoints summary from lsnrctl stat command.
    Use search and have a look through previous threads for this FAQ.
    E.g. https://forums.oracle.com/forums/search.jspa?threadID=&q=%2Bpage+%2B4950&objID=f251&dateRange=thisyear&userID=&numResults=15&rankBy=10001

Maybe you are looking for

  • Saving information in pdf created in Adobe forms

    I am certain there is a simple solution to this issue but I cannot find the answer. I have created some template forms in FormCentral that I use in a therapy clinic. Once I have created the forms I save them as a pdf. I then enter the information rel

  • File to IDoc Scenario exception handling

    I have configured Time bound File to IDoc scenario with processing mode in Sender adapter as 'Delete'. And it is running perfectly. I am trying to add additional functionality to the scenario, i.e.,if a file does not exist on the ftp server, a mail s

  • Question mark instead of icon in dock

    I'm seeing a question mark instead of the VLC icon in my dock. Does anyone know why?

  • In/Out not saving in preview clips

    I can't get the IN/OUT trim points to save on preview clips, am I doing something wrong: 1) In "Organise" mode 2) Double click the clip - preview window is displayed. 3) Drag in/out markers to right place 4) Click the "X" top right to close it 5) Re-

  • 2nd level padding

    Hi guys, Anyone knows where to configure and set the padding for the tabs on the 2nd-level navigation? I can see tat the padding done for 1st-level navigation is at System Admin > Portal Display > Top Level Navigation but not for 2nd-level.