This post is how to get started with an underlying DB (oracle XE) and the required connection from Jdeveloper. Oracle XE is light weighted and suffice for all development work for ADF and other fusion middleware technology tech stack.
To download and install
To download and install
- Follow this link to download Oracle XE 11g release 2: http://www.oracle.com/technetwork/products/express-edition/downloads/index.html (It has link for both windows and Linux edition)
- To Install : Unzip OracleXE112_Win32 and run setup.exe from DISK1 folder.
- To start the Database
- On Windows: Click Start, point to Programs (or All Programs), point to Oracle Database 11g Express Edition, and then select Start Database.
- On Linux with Gnome: In the Applications menu, point to Oracle Database 11g Express Edition, and then select Start Database.
- On Linux with KDE: Click the icon for the K Menu, point to Oracle Database 11g Express Edition, and then select Start Database.
- OR, At the operating system prompt, enter the following command to start the SQL Command Line and connect to the database:
SQLPLUS / AS SYSDBA
- At the SQL Command Line prompt, enter the following command:
SQL> STARTUP
- Use the same SQL prompt to create the DB objects and when done type EXIT to come out of the SQL prompt.
- To Stop the Database
- On Windows: Click Start, point to Programs (or All Programs), point to Oracle Database 11g Express Edition, and then select Stop Database.
- On Linux with Gnome: In the Applications menu, point to Oracle Database 11g Express Edition, and then select Stop Database.
- On Linux with KDE: Click the icon for the K Menu, point to Oracle Database 11g Express Edition, and then select Stop Database.
- OR, At the operating system prompt, enter the following command to start the SQL Command Line and connect to the database:
SQLPLUS / AS SYSDBA
- At the SQL Command Line prompt, enter the following command: SQL> SHUTDOWN IMMEDIATE
