|
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:
- CREATE USER "EJB" PROFILE "DEFAULT" IDENTIFIED BY "ejbuser"
DEFAULT TABLESPACE "SAMPLE" QUOTA UNLIMITED ON SAMPLE ACCOUNT UNLOCK;
- GRANT CONNECT TO EJB;
 
- 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.
|