Step 1 Oracle 11g Enterprise Server Installation
Step 1 Oracle 11g Enterprise Server Installation
Version: 1.0
Status: Complete
1
Table of Contents:
2
The installation steps to install Oracle Enterprise Database Server are
as below:
1. Install RDBMS software.
2. Create the Siebel DB Instance
3. Creation of the Siebel Tablespace.
4. Install RDBMS client software on machines where you will install
Siebel Server, Siebel Tools other products that will connect to the
Siebel Database. In the current exercise, the Oracle Server and
Client are installed in the same machine. The Oracle Client
installation is described in another document.
3
1 Install the RDBMS Software:
1) Navigate to Oracle Installation Directory bin\oui.exe (Oracle Universal Installer).
Double Click. Keep Clicking on Next Button, unless specified otherwise. Go to the
Next option to start the RDBMS software install. Click on install to install the
database server.
2) Select the base location and home location for the DB server installation. These
locations appear pre-fetched; you can make changes to them if needed.
4
5
Ensure that all pre-requisite checks are done. Java may need to be installed.
6
4) The progress bar shall appear as displayed below:
7
8
5) On successful installation verify Oracle tns listener and iSQLPlus services are
started on the server. Also verify that the expected entries for SQL+ and
Configuration Wizard have been created in Program Files.
9
2 Create the Siebel DB Intance:
10
2) Select the ‘general purpose’ template for creating the database.
11
4) Define the Administrative Password to be Siebel
SIEBEL
12
13
5) Choose Unicode Character Set. Also, specify the ‘National Character Set’
parameter as ‘AL16UTF16 – Unicode Universal’.
14
15
16
17
18
The Siebel Database instance ‘SIEBELDB’ is now created.
19
3. Creation of the Siebel Tablespace:
In this step, the Table spaces need to be created for use in Siebel. The Siebel tables
will be using these table-spaces for handling queries efficiently. For instance, there
are certain demanding tables like:
S_SRM_REQUEST
S_ESCL_REQ
S_PARTY
There are 3 Tablespaces which need to be Created and used. Appropriate Space also
needs to be provided for these TableSpaces:
Connect to Siebel Database SIEBELDB, using SQLplus to configure the table spaces.
Use the following credentials:
User: SYSTEM
Password: SIEBEL
20
3.1 Create Tablespace:
COMMIT;
21
3.2 Create User and Table Owner
Run grantusr.sql script which is available as part of Siebel installation. This creates
tableowner, user and provides access to users.
If you have not installed the Siebel DB server as yet, use the sql script as below. Run
the below script using sqlplus connecting to SIEBELDB under SYSTEM/SIEBEL login.
rem
================================================
==
rem Create db account and roles for Siebel table owner
rem
================================================
22
==
rem
================================================
==
rem Create db accounts for Siebel users
rem
================================================
==
23
alter user LDAPUSER temporary tablespace temp_siebel;
commit;
This completes the Oracle Database Server Setup and customizations for Siebel.
24