0% found this document useful (0 votes)
17 views24 pages

Step 1 Oracle 11g Enterprise Server Installation

Uploaded by

jayamalapv
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOC, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
17 views24 pages

Step 1 Oracle 11g Enterprise Server Installation

Uploaded by

jayamalapv
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOC, PDF, TXT or read online on Scribd
You are on page 1/ 24

Oracle 11g Enterprise Server Installation

Version: 1.0

Status: Complete

Author: Jayanta Mookerjee

1
Table of Contents:

1 Install the RDBMS Software:...........................................................................4

2 Create the Siebel DB Intance:.......................................................................10

3. Creation of the Siebel Tablespace:..........................................................20


3.1 Create Tablespace:.....................................................................................22
3.2 Create User and Table Owner.....................................................................23

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.

3) Select Install to start the Oracle Db software installation.

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:

1) Use Database Configuration Assistant to create a new Siebel db instance. This


process will create a new database for Siebel. The Siebel Database Server
Configuration process will use this database to install the Siebel Repository and
internal tables.

10
2) Select the ‘general purpose’ template for creating the database.

3) Name the database SIEBELDB

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:

1. Temporary Tablespace (5GB)


2. Data Tablespace (5GB)
3. Index Tablespace (2GB)

Oracle recommends the above Tablespaces to be of above size for a normal


installation to go through.

Connect to Siebel Database SIEBELDB, using SQLplus to configure the table spaces.
Use the following credentials:
User: SYSTEM
Password: SIEBEL

Create a folder in your C OR D Drive named as SIEBELDATASTORE. Configure table


spaces, logspace, and other elements for the Siebel Database.

Login as SYSTEM / SIEBEL

20
3.1 Create Tablespace:

Run the commands below for creating the table-spaces.

CREATE TEMPORARY TABLESPACE temp_siebel TEMPFILE 'C:\


SIEBELDATASTORE\siebel_temp1.dbf' SIZE 2000M;

CREATE TABLESPACE siebel_index DATAFILE 'C:\SIEBELDATASTORE\


siebel_indx.dbf' SIZE 5000M;

CREATE TABLESPACE siebel_data DATAFILE 'C:\SIEBELDATASTORE\


siebel_Data1.dbf' SIZE 5000m;

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.

Navigate to “D:\sea81\dbsrvr\ORACLE” folder. Here find the “grantusr.sql”. Copy the


file, and modify as follows.

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 Create Role sse_role


create role sse_role;
grant create session to sse_role;

rem Create Role tblo_role


create role tblo_role;
grant ALTER SESSION, CREATE CLUSTER, CREATE DATABASE LINK, CREATE
INDEXTYPE,
CREATE OPERATOR, CREATE PROCEDURE, CREATE SEQUENCE, CREATE
SESSION,
CREATE SYNONYM, CREATE TABLE, CREATE TRIGGER, CREATE TYPE, CREATE
VIEW,
CREATE DIMENSION, CREATE MATERIALIZED VIEW, QUERY REWRITE, ON
COMMIT REFRESH
to tblo_role;

rem Create SIEBEL user


create user SIEBEL identified by SIEBEL;
grant tblo_role to SIEBEL;
grant sse_role to SIEBEL;
alter user SIEBEL quota 0 on SYSTEM;
alter user SIEBEL default tablespace siebel_data;
alter user SIEBEL temporary tablespace temp_siebel;
alter user SIEBEL quota unlimited on siebel_data;
alter user SIEBEL quota unlimited on siebel_index;

rem
================================================
==
rem Create db accounts for Siebel users
rem
================================================
==

create user SADMIN identified by SADMIN;


grant sse_role to SADMIN;
alter user SADMIN default tablespace siebel_data;
alter user SADMIN temporary tablespace temp_siebel;

create user LDAPUSER identified by LDAPUSER;


grant sse_role to LDAPUSER;
alter user LDAPUSER default tablespace siebel_data;

23
alter user LDAPUSER temporary tablespace temp_siebel;
commit;

This completes the Oracle Database Server Setup and customizations for Siebel.

24

You might also like