Oracle Database Express and other editions Installation Doc difference

Hello, I'm a total newbie. Any help will be appreciated.
First of all, I tell you I want to be an Oracle DBA.
My question is; I read the database to Oracle 11 g R2 documentation at this link http://www.oracle.com/pls/db112/homepage

I spent a few days discovering all parts of installation including the class desktop and server configuration.

I learned, so I had already downloaded Express database Oracle 11 g R2 for win32.

I thought I had already done the installation guide that it is time to install the oracle now. I did, and what I've found, is there not an option during the installation I've read in above documentation.

While trying to find on this difference, I arrived on http://docs.oracle.com/cd/E17781_01/index.htm documentation

It is for the Express version only.

My question is, Express edition, which we use for the purpose of learning, but it's not like he has all the things we learn during the installation (after I have no idea right now).

And what are the documents I should follow my previous gave two links?

Published by: 994952 on March 19, 2013 23:15

Published by: 994952 on March 19, 2013 23:16

If your company has the oracle license you must download and learn that the version you need to use there IMHO.
You can get this version of OTN because it is available for this reason that I mentioned (learning and development)!

Tags: Database

Similar Questions

  • Using HTP and HTF in Oracle database Express edition

    Hi all

    I would like to know if it is possible to use the HTP package in Oracle database express edition.

    Thanks for your replies.

    Kind regards.

    ccaa52af-D591-4a07-95bc-4a021a71b4a2 wrote:

    Hi all

    I would like to know if it is possible to use the HTP package in Oracle database express edition.

    Thanks for your replies.

    Kind regards.

    Yes.

    Oracle XE comes with Apex as an administrator and developer web interfaces. The apex is web enabled the PL/SQL code. And such a code heavily used package HTP.

  • Oracle Database Express Edition used in a stand-alone database

    I have developed databases for years in access. I had a lot of people want me to databases for them. I don't want to make 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 does not work properly.

    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 on their computer and run it? Or do need to install the full Oracle Express? In other words, is there like a version of the Runtime?

    user13756579 wrote:
    I saw that you had to install twice last night, messed up my password. The only thing that that worries me is the database always current running on the user's computer, when well even that they could not use the database for months at a time. These databases are of small databases to keep the data of the members of the group. That is to say. name, address, phone number, personal information and perhaps a scanned document or two.

    I have looked at other database programs, but won't put a lot of money if I could develop only 3-5 small databases annually.

    You can develop your application in such a manner, that it will start service Oracle XE and stop it at the exit. Set the service to start manually. That's all.

  • Java class to connect to Oracle Database Express Edition11g and URL

    Can I use Oracle SQL Developer to do or use it as the value of the URL for the host name?

    I'm just starting to learn Java and with it, learn how to use the Oracle Database Express Edition11g and with it the Oracle SQL Developer...

    At this point, I have the Express Edition is installed and the SQL Developer installed and were able to establish a connection and to run a query and get a result.

    I use Eclipse for JAVA.  I have a work of class that performs a query on a database/table in MySQL.

    So now I'm eager to make the same use as the database Oracle Database Express Edition11g engine.

    And this means that two different versions of JAVA that I need to get the right to be able to do.

    The first is the value of the url variable.

    I now like

    String url = "jdbc:oracle:thin:@localhost";

    then

    Class.forName ("oracle.jdbc.OracleDriver");

    and then

    Connection connection = DriverManager.getConnection (url);

    The thing I'm puzzled on is in the URL where I 'localhost' was supposed to be the term generic and not so much as the text, you should use.

    I see in Web sites like 3 connection to Oracle Database XE

    and decrease example 3-2 by specifying the URL of database using the XE Client Setup

    There I see

    JDBC:driver_type: [username/password] @[//]host_name[: port] [XE]]

    And just what is and what is not is explained here.  So what I ended up with was

    String url = "jdbc:oracle:thin:@localhost";

    So if it was just a text to rest for a name I wonder just such a value or name might really where.

    I noticed that view that an app called "Oracle JDeveloper" has been used to create the values.   I don't have such a thing, or at least I don't think I do.

    Do I need?

    I have Oracle SQL DEVELOPER, where I used the following to connect to the database of the XE.

    My choice for Oracle's SQL Developer Help

    Name of connection: Connection1

    User name: Rod

    Password: myOracle11

    Host name: localhost

    Port: 1521, which is the default value

    SID: xe

    Above so I have to host name set to localhost

    Can I use Oracle SQL Developer to do or use it as the value of the URL for the host name?

    1. I do nothing

    2. While wouldn't you say it

    3. no results from the earlier assignment.

    I asked "'can I use Oracle SQL Developer to do or use it as the value of the URL for the host name?" "

    I showed the choice that I used in SQL Developer to connect to the schema.  And I was wondering, now that I had done this case those are the values that I could use in the Java class that I wrote.  The web site in the first post of this thread showed connection but he was using JDeveloper and SQL Developer.

    So I was wondering if the connection that I made using SQL Developer would do the same trick, and if I could use the values I did there.

    I'm happy to announce that YES, The values used to connect using SQL Developer work exactly like JDeveloper.

    So, given that in SQL Developer for Hostname I chose the value "localhost" "Rod" Username and password "myOracle11".

    I did the following JAVA CLASS that worked:

    package VC_2_9;

    Java for COBOL - copyright 1999 Doke & Hardgrave programmer

    import java.sql. *;

    public class DataBaseDemoOracle

    {

    Public Shared Sub main (string args [])

    {

    String CUST_LAST_NAME;

    / * String url = "jdbc:mysql://localhost/visualcafe";                     */

    String url = "JDBC: thin: @localhost';"

    / * String sqlQuery = "SELECT Name, SSNo, address, telephone OF THE customer;    */

    String sqlQuery = "SELECT CUST_LAST_NAME FROM DEMO_CUSTOMERS";

    //                                               |||||||||||||||

    Try

    {

    Class.forName ("oracle.jdbc.OracleDriver");

    Connection connection = DriverManager.getConnection (url, "Rod","myOracle11" ");

    Statement statement = aConnection.createStatement ();

    ResultSet rs = aStatement.executeQuery (sqlQuery);

    Boolean more = rs.next ();

    (more)

    {

    CUST_LAST_NAME = rs.getString (1);

    /* */

    System.out.println ("name:" + CUST_LAST_NAME);

    more = rs.next ();

    }

    RS. Close();

    aStatement.close ();

    aConnection.close ();

    }

    catch (ClassNotFoundException e)

    {System.out.println ("Exception caught" + e) ;}}

    catch (SQLException e)

    {If (e! = null)}

    {System.out.println ("SQLException taking" + e);}

    e = e.getNextException ();

    } / / end of while loop

    } / / end of capture

    } / / main end

    } / / end DataBaseDemoOracle.java

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

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

    Thank you.

    Hello

    of the product page (http://www.oracle.com/technetwork/products/express-edition/overview/index.html):

    Oracle Database 11 g Express Edition (Oracle Database XE) is an entry-level database, small footprint, based on the database Oracle 11 g Release 2 code base. It is free to develop, deploy, and distribute; fast download; and simple to administer.

    Herald tiomela
    http://htendam.WordPress.com

  • upgrade to Oracle Database Express Edition to (10.2.0.4 OR 11 g) release

    Hello

    I plan to install the SOA, but need more than the database version 10.2.0.4. How to change Oracle Database Express Edition to (10.2.0.4 OR 11 g) release? Thank you!!

    Hello

    I plan to install the SOA, but need more than the database version 10.2.0.4. How to change Oracle Database Express Edition to (10.2.0.4 OR 11 g) release? Thank you!!

    My I know that the current version of your database?

    Reference:

    * 316889.1 - checklist complete for manuals upgrades to 10 g 2 *.
    * 429825.1 - complete checklist for manual updates to GR 11, 1 material *.
    * 837570.1 - complete checklist for manual updates to 11 GR 2 *.

    Thank you
    A H E E R X

  • Client Oracle for Oracle database 10g and Windows 2003 operating system...

    Hi all
    I need an Oracle Client for Oracle database 10g and Windows 2003 operating system.
    I searched www.oracle.com it there as much of products so basically that I got confused.
    Could you guide me please?

    Hello

    Here is the link: download (Oracle Database 10g Release 2 (10.2.0.1.0) customer - 10201_client_win32.zip (475,090,051 bytes) (cksum - 946434250)).

    Oracle Database 10g Release 2 (10.2.0.1.0)
    http://www.Oracle.com/technology/software/products/database/Oracle10g/htdocs/10201winsoft.html

    Kind regards
    Hussein

  • With the help of OBIEE with Oracle Database Express Edition? SOLVED

    I have a customer who wants a quick demo of OBIEE. They sent us as data source csv files. I migrated the Excel files for ease of use, but Excel files seem to have limitations on how I can combine columns, such as the concatenation and formatting.

    I then loaded them in a database Oracle Express Edition, assuming that more "database" functionality would be placed at my disposal. I managed to load in the Administration tool, but the answers gives me the following error when I try to view the results of the Express database:

    ODBC driver returned an error (SQLExecDirectW).
    Error details
    Error codes: OPR4ONWY:U9IM8TAC:OI2DL65P
    State: HY000. Code: 10058. [NQODBC] [SQL_STATE: HY000] [nQSError: 10058] A general error occurred. [nQSError: 17001] Oracle error code: 12154, message: ORA-12154: TNS: could not resolve the connect identifier specified in the call to the OIC OCIServerAttach. [nQSError: 17014] Cannot connect to the Oracle database. (HY000)
    SQL issued: SELECT COURSE_ENROLLMENT. CAMPUS saw_0 FROM BI_DEMO ORDER BY saw_0

    Thanks for any help. This is my first attempt using OBIEE unguided.

    Published by: markstuartnelson on September 29, 2008 17:22

    Check your TNSNAMES file, see if it points to the correct server / db.

    Best regards, John
    http://obiee101.blogspot.com/

  • How to start the oracle database server and its client in windows 8

    Hi all

    I am a new entry in this forum and I am a beginner with oracle database.

    I always used SQL Server as the database, and it was easy to use after installation.

    With management program configuration of SQL Server I could to start service SQL Server (SQLEXPRESS) and the database server start!

    With SQL Server management studio, I was able to launch the client application, then was to establish a connection to the server and everything worked great!

    Now, how to work with the oracle database?

    I installed the oracle server and client version 11g R2 in windows 8, but how do I start the database?... and how can I start the client application to query?

    best wishes in advance.

    PS: Sorry for my English.

    If you are on the same machine, the only service that you absolutely need to start is the database service.  In your case OracleServiceSYSDBA (hmmm... How did you find with this name?).

    For queries, you can use SQL * Plus which should also be installed.  If you want something GUI, you can use SQL Developer (you need to install separately I think).

  • Retrieve Oracle database data and store it in a CSV file format

    Hello.

    I try to export a table in an Oracle database to CSV file with any Oracle adapter format and store it in a system of HDFS.

    How could I do?

    Thanks in advance!

    Xavi says:
    HI Charles. If I could use... Oracle Data Integrator Application adapted for Hadoop? For this purpose?

    Thanks in advance

    Perhaps. I must admit I'm not familiar enough with ODI to see if this is the extent of its means.

    You might see if there is a forum for ODI and ask your question to that.

    Charles Lamb

  • Link between Oracle database 10g and Oracle database 11g database

    We have a database from Oracle 10 g to which connect us with SID = mod

    The TNS names file is present in the directory Oracle NETWORK\ADMIN on the development computer contains the following two entries among others

    MOD =

    (DESCRIPTION =

    (ADDRESS_LIST =

    (ADDRESS = (PROTOCOL = TCP) (HOST = 10.70.10.23)(PORT = 1521))

    (ADDRESS = (PROTOCOL = TCP) (HOST = 10.70.10.21)(PORT = 1521))

    )

    (CONNECT_DATA =

    (SERVICE_NAME = mod)

    )

    )

    NEWMOD =

    (DESCRIPTION =

    (ADDRESS_LIST =

    (ADDRESS = (PROTOCOL = TCP) (HOST = 10.70.10.7)(PORT = 1521))

    (ADDRESS = (PROTOCOL = TCP) (HOST = 10.70.10.9)(PORT = 1521))

    (LOAD_BALANCE = yes)

    )

    (CONNECT_DATA =

    (SERVER = DEDICATED)

    (SERVICE_NAME = MOD)

    )

    )

    In the SQL client we can log on to the mod and newmod each with its own username and password.

    To create a link of database as follows

    CREATE newmod CONNECT TO DATABASE LINK Public user1 IDENTIFIED BY password1 USING 'newmod ';

    the database link is created without problems.

    However, in trying to retrieve data from tables in the database that uses 10.70.10.7 and 10.70.10.9 using a command like

    Select Column1 table1@newmod;

    We get the following error:

    ORA-12154: TNS: could not resolve the connect identifier specified

    How can access us the tables at the entrance to tns newmod because it resides on a server 11g, while tns mod entry is on a 10g Server? (both use the same service name, but are located on different ip addresses)

    Your help is very appreciated.

    Have you set TNS_ADMIN variable? Check if you have any additional TNSNAMES file. ORA in your ORACLE_HOME files.

    Point A of TN-entry NEWMOD to a host. Load Balancing is not needed.

    Try to create the dblink with the connect descriptor.

    create database DB_TEST link to connect to SCOTT

    identified by "password" ' (DESCRIPTION = (ADDRESS = (PROTOCOL = TCP) (HOST = 10.70.10.9)(PORT = 1521)) (CONNECT_DATA = (SERVER = DEDICATED) (SERVICE_NAME = MOD)))';

    Kind regards

    Suntrupth

  • Oracle database 11 g 2 after installation

    After Server installation Oracle to run all sqlplus the following error occurred

    error while loading shared libraries: libclntsh.so.11.1

    Your problem is that you have not carefully after the pre-installation checklist. The installation program will fail very rarely, if you follow the instructions. First, review the Setup logs and see why he abandoned.

    1 see MOSC Note 1073332.1 entitled "* / usr/bin/ld: cannot find - lxml11, Genclntsh: has no link libclntsh.so.11.1.

    2. change your .bash profile to include the CLASSPATH variable

    3 - set your LD_LIBRARY_PATH environment variable to include $ORACLE_HOME/lib and path should include $ORACLE_HOME/bin:

    export LD_LIBRARY_PATH = $ORACLE_HOME/lib

    export PATH = $PATH: $ORACLE_HOME/bin

    4. the "sqlplus: error while loading shared libraries" error can occur because DBCA missed during the connection and a d - link will remedy this error:

    Oracle > $ORACLE_HOME/bin/repeat all the

    If the previous steps do not resolve the problem, you can be better start-over and re - install the Oracle software.  This time, DO NOT ignore errors and carefully follow the pre-installation

  • Errors in Oracle database Mobile Sever 11 g Installation with a

    Hello

    I installed IBM WAS (WebSphere Application server) version 7.0 and I am trying to identify the basis for IBM WAS 7.0 installation directory. This information is necessary to install Oracle mobile server on my machine. Can you please help me find the location of the application server.

    I tried all possible paths of application server. Its gives me an error message "No. Application Server is found."

    I installed WAS in C:\IBM.

    At the present time, we don't certify against WAS.    If it is an application server is necessary you should channel a request via the support of oracle, and oracle sales representative.

    Thank you

    Mike

  • Whence (Oracle) OpenOffice writer (and others) certifications are going?

    Used to be a certification exam 1z0-885 for Open office (and calc etc.) writer: (see, for example: http://education.oracle.com/pls/web_prod-plq-dad/db_pages.getpage?p_org_id=378219 & page_id = 433 referenced at the time of the post).

    However, they seem to have disappeared without a trace!

    No retirement... just vanishment.

    While they were probably not popular once they price on offer from Mr. Gates double... (as oposed just under him when they were under the wing of the Sun).

    I understand the apache may have open Office gathered under his wing... but have no absolute reference on this.

    ......


    Still a pension or some kind of notice would be appropriate, such as Oracle was managing at any given time.

    Rgds - bigdelboy.

    You're right in that we did not announce this retreat on our site of certification. However, it is not like a typical pension and because of the volume low (almost nonexistent) percent of these reviews, we decided to focus our communication on other major issues in the weeks. You can find a press release on this one http://www.marketwire.com/press-release/oracle-announces-its-intention-to-move-openofficeorg-to-a-community-based-project-nasdaq-orcl-1503027.htm here.

    Kind regards
    Brandye Barrington
    Certification Forum Moderator

  • Oracle Application Express

    Hello

    I'm new around. Tell me, the documentation says: "Oracle Application Express is a declarative development hosted environment to develop and deploy _Web_ database-oriented applications. Can be used to develop applications for use outside of the Web as well. I do the accounting and payroll. I will for example be able to develop applications where I'll run the payroll and print care about payroll, financial statements, etc..

    When I go to the form, I usually get to Oracle Database Express and so I have to work my way to Oracle Application Express. How can I go directly to Oracle Application Express?

    Bennet

    Hello, Bennet,.

    There is the OTN homepage for APEX: http://www.oracle.com/technetwork/developer-tools/apex
    There are the home page general for APEX, which includes access to workspaces of demo (you can request a workspace to assess the APEX without having to install yourself): http://apex.oracle.com

    To answer your question: you can develop applications with APEX that could be used to pay-running, etc. Depending on the capabilities of your printer, you can even automate this. But begin to get acquainted with APEX before you head straight for advanced like this subjects. ;)

    -Udo

Maybe you are looking for

  • Issue warning of large Volume

    As you have perhaps lived, climb too high the volume of your iPod translates into a bet warned that the volume is too high. It's particularly embarrassing because it drains my battery while listening to music, and I understand if you live in the Unit

  • HP pavilion dv6 - product a1m22av dvd burner program

    Hi I just got this Hp pavilion dv6 - a1m22av produced by a friend of mine as a giift and I was wondering which program works best for the dvd burner, it seems that it came with the recovery disk. Any suggestions?

  • auto reset time

    I have attached a simple VI. In essence, is an inspection table. The first loop (looping) in four sequences works very well. During the second loop begins, the Zagarella engine Gets the command to come to the House, as soon as the engine returns the

  • Blocking of blue screen with the analog voltage (WinXP, PCI-6251)

    Hello I'm looking to solve a problem of blue screen with my measure blockingapplication, which I am developing with C++. Blocking seems manifesta little random after a variable amount (500-50 000) of voltage analogmeasures. My application needs to ma

  • Windows 7 Media Center will not download the new guide listings

    Hello I am really frustrated. WMC will not download the new guide listings and I tried all the patches that are supposed to be that I found in this forum. I also tried the system restore, which did not fix the problem. Obviously the problem is not af