Oracle Enterprise Beans Configuration

Step 1 Step 2 Step 3 Step 4



Since many of the Enterprise Bean Samples require database access, it is required that you follow the instructions for Database Configuration before configuring and running Enterprise Beans.


Step 1: Create a Database User.

  • Create an Oracle user named EJB for the SAMPLE tablespace.

  • Using the Oracle SQLPlus Worksheet, enter:

    1. CREATE USER "EJB" PROFILE "DEFAULT" IDENTIFIED BY "ejbuser"
      DEFAULT TABLESPACE "SAMPLE" QUOTA UNLIMITED ON SAMPLE ACCOUNT UNLOCK;
    2. GRANT CONNECT TO EJB;


Take Note!
  • The password for EJB(all upper case) is ejbuser, all lower case.
  • The EJB user may have already been created as a part of the installation process. In that case, you may use this existing EJB user provided the EJB user has access to the SAMPLE tablespace.