[x]
Posted via EE Mobile

Search, ask, and monitor your questions on the go with EE Mobile. Visit Experts Exchange from your mobile device and never be out of touch again.

07/09/2005 at 08:28AM PDT, ID: 21485838
[x]
Attachment Details
[x]
The Solution Rating System

With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.

  • The Grade of the Solution
  • The Zone Rank of the Expert Providing the Solution
  • The Number of Author and Expert Comments
  • The Number of Experts Contributing
  • The Feedback of the Community

Your Input Matters
Because of the way the system is set up, the most important variable in this equation is you. As a member of Experts Exchange, you are able to cast your vote on the quality of the solutions in regard to how complete, accurate, helpful and easy to understand each solution is. When you provide your feedback, each rating is adjusted accordingly. So, if you see a solution that has a poor rating that you think is a good solution, let us know by rating it. As you do, the rating will be adjusted and will become more accurate for other members of our site.

If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support.

Thank you!

9.4

Creating an Oracle 9i Database

Asked by oagunbiade in Oracle Database

Tags: 9i, oracle, undotbl

Hi all. Im trying to create an oracle 9i database manually and its proving to be very difficult. Im used to creating a database using the database configuration assitant but i need a script that would run as part of an install to do the same process. Im using oracle 9i on windows xp pro. Please I need someone to please go tru my process and tell me what im doing wrong. The service name of the database im trying to create is called Olu.

I start buy creating the ini.ora file see below.

##############################################################################
# Copyright (c) 1991, 2001, 2002 by Oracle Corporation
##############################################################################
 
###########################################
# Cache and I/O
###########################################
db_block_size=8192
db_cache_size=25165824
db_file_multiblock_read_count=16
 
###########################################
# Cursors and Library Cache
###########################################
open_cursors=300
 
###########################################
# Database Identification
###########################################
db_domain=2020fm
db_name=Olu
 
###########################################
# Diagnostics and Statistics
###########################################
background_dump_dest=C:\oracle\admin\Olu\bdump
core_dump_dest=C:\oracle\admin\Olu\cdump
timed_statistics=TRUE
user_dump_dest=C:\oracle\admin\Olu\udump
 
###########################################
# File Configuration
###########################################
control_files=("C:\oracle\oradata\Olu\CONTROL01.CTL",
"C:\oracle\oradata\Olu\CONTROL02.CTL",
"C:\oracle\oradata\Olu\CONTROL03.CTL")
 
###########################################
# Instance Identification
###########################################
instance_name=Olu
 
###########################################
# Job Queues
###########################################
job_queue_processes=10
 
###########################################
# MTS
###########################################
dispatchers="(PROTOCOL=TCP) (SERVICE=Olu)"
 
###########################################
# Miscellaneous
###########################################
aq_tm_processes=1
compatible=9.2.0.0.0
 
###########################################
# Optimizer
###########################################
hash_join_enabled=TRUE
query_rewrite_enabled=FALSE
star_transformation_enabled=FALSE
 
###########################################
# Pools
###########################################
java_pool_size=33554432
large_pool_size=8388608
shared_pool_size=50331648
 
###########################################
# Processes and Sessions
###########################################
processes=150
 
###########################################
# Redo Log and Recovery
###########################################
fast_start_mttr_target=300
 
###########################################
# Security and Auditing
###########################################
remote_login_passwordfile=SHARED
 
###########################################
# Sort, Hash Joins, Bitmap Indexes
###########################################
pga_aggregate_target=25165824
sort_area_size=524288
 
###########################################
# System Managed Undo and Rollback Segments
###########################################
undo_management=AUTO
undo_retention=10800
undo_tablespace=UNDOTBL

Then i start sqlplus from the command prompt with /nolog.
Then i shutdown the database
Run startup nomount pfile=c:\ini.ora
Then run the create database statement see below

CREATE DATABASE Olu
MAXLOGFILES 4
MAXLOGMEMBERS 4
MAXLOGHISTORY 1
MAXINSTANCES 1
MAXDATAFILES 200
DATAFILE 'c:/Oracle/oradata/olu/system01.dbf' SIZE 250M
UNDO TABLESPACE undotbl
     DATAFILE 'c:/Oracle/oradata/olu/undotbl01.dbf'
     SIZE 300M REUSE AUTOEXTEND ON NEXT 5120K MAXSIZE UNLIMITED
DEFAULT TEMPORARY TABLESPACE temp_tbl tempfile 'c:/oracle/oradata/olu/temp01.dbf' size 100 M
CHARACTER SET US7ASCII
NATIONAL CHARACTER SET AL16UTF16
LOGFILE GROUP 1 'c:/Oracle/oradata/olu/redo01.log' SIZE 100M REUSE,
        GROUP 2 'c:/Oracle/oradata/olu/redo02.log' SIZE 100M REUSE,
        GROUP 3 'c:/Oracle/oradata/olu/redo03.log' SIZE 100M REUSE;

It says database created but when i try to connect i get an error message saying could not resolve service name. I tried adding the new service name to my tnsnames.ora and also in the listner.ora files and restarted the listner.
When i try connecting to the database i get the following error

ORA-12500:TNS listener failed to start a dedicated server process

Please can anyone help. Also does the database configuration assistant create any scripts that i can put in my install to carry the process out for me?

Thanks
[+][-]07/09/05 09:08 AM, ID: 14404169

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]07/09/05 10:13 AM, ID: 14404364

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]07/09/05 05:31 PM, ID: 14405319

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]07/09/05 06:29 PM, ID: 14405419

View this solution now by starting your 30-day free trial. Setting up your free trial is quick, easy, and secure. We will return you to this solution, unlocked, when you're done.

 

About this solution

Zone: Oracle Database
Tags: 9i, oracle, undotbl
Sign Up Now!
Solution Provided By: paquicuba
Participating Experts: 1
Solution Grade: A
 
 
[+][-]07/10/05 02:57 AM, ID: 14406385

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]07/10/05 06:25 PM, ID: 14408909

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
 
Loading Advertisement...
20090824-EE-VQP-74