Sponsored Content
Full Discussion: solaris-oracle
Operating Systems Solaris solaris-oracle Post 302207243 by gsw_aix on Thursday 19th of June 2008 12:00:17 PM
Old 06-19-2008
Solaris & Oracle

1, Setup max shared memory and no semaphores as per the Oracle documentation.

2, Place ALL database files on 1 volume spanning as many disks as you have. Place online redo logs on a Raid 1/10 vol. Place archive redo logs on another Raid1/10 vol.

3, Mount the database files volume with forcedirectio and set the Oracle parameter FILESYSTEMIO_OPTIONS = setall

4, Follow OFA (Oracle Optimal Architecture Guidelines) - use google.

5, Use LMT's locally managed tablespaces everywhere .

6, Use automatic UNDO, and ASSM (Automatic Shared Memory Management) - via 1 oracle parameter SGA_TARGET. Also set PGA_TARGET an mimimum values for the Shared Pool and Buffer Cache.

7, Use an SPFILE

8, Use the standard Oracel dbconsole, its excellent for ad-hoc monitoring.

9, Always use Archive Logging if the database is important.

10, Use RMAN, its fast and easy to use.
 

6 More Discussions You Might Find Interesting

1. UNIX Desktop Questions & Answers

Oracle on solaris.

Good afternoon Unix folks, I have been asked to find out if there is an ideal way to setup oracle on sun solaris. Right now, I have 2 36gig drives mirrored for my root volume. I have 4 more raid 5 for my datavolume. For io purposes, I need to break up these drives to prove that io is the... (2 Replies)
Discussion started by: niasdad
2 Replies

2. Solaris

Oracle on Solaris

Hi friends, i am given a new login id on a solaris system.And i have the basic .profile for that.Once i log in to that system how can i check if there is oracle installed on that solaris system ? I would want to set the path and other variables if i find that oracle is installed on it. Please... (6 Replies)
Discussion started by: sveera
6 Replies

3. UNIX for Advanced & Expert Users

oracle on solaris

Hi Friends , I need to connect to Oracle using sqlplus and it says that sqlplus is not found . I need to check if Oracle is running or not .is there any command to check if oracle is running ? Please help Thanks in advance Veera (2 Replies)
Discussion started by: sveera
2 Replies

4. Shell Programming and Scripting

Oracle on Solaris

Please is there a way and how can I check is my oracle database OK on my solaris I did not istall that database but on processes I can see there are lot of oracle processes running ..also I would like to use that database.. That was my first q and second: I can telnet that machine from my local... (1 Reply)
Discussion started by: amon
1 Replies

5. Solaris

Oracle Db on Solaris OS

What is the minimum amount of RAM a db could be made to run on solaris OS .. i just need to test high availability failover of oracle db on a VM so want to make the db as thin as possible and to make it run on least amount on memory. (1 Reply)
Discussion started by: fugitive
1 Replies

6. Solaris

Oracle Solaris 11

Hello Friends I was running Solaris 10 on SunFire X2200 M2, with 40 Sunray 270 units, and would like to advance to a higher version of Solaris, Can anybody with experience on this help how to go about it, or if there is any other open source os to go with the hardware advice Thanks in... (1 Reply)
Discussion started by: daviey.daviey
1 Replies
Session::Store::Oracle(3)				User Contributed Perl Documentation				 Session::Store::Oracle(3)

NAME
Apache::Session::Store::Oracle - Store persistent data in a Oracle database SYNOPSIS
use Apache::Session::Store::Oracle; my $store = new Apache::Session::Store::Oracle; $store->insert($ref); $store->update($ref); $store->materialize($ref); $store->remove($ref); DESCRIPTION
Apache::Session::Store::Oracle fulfills the storage interface of Apache::Session. Session data is stored in a Oracle database. SCHEMA
To use this module, you will need at least these columns in a table called 'sessions': id varchar2(32) # or however long your session IDs are. a_session long To create this schema, you can execute this command using the sqlplus program: CREATE TABLE sessions ( id varchar2(32) not null primary key, a_session long ); If you use some other command, ensure that there is a unique index on the table's id column. CONFIGURATION
The module must know what datasource, username, and password to use when connecting to the database. These values can be set using the options hash (see Apache::Session documentation). The options are DataSource, UserName, and Password. Example: tie %hash, 'Apache::Session::Oracle', $id, { DataSource => 'dbi:Oracle:database', UserName => 'database_user', Password => 'K00l' }; Instead, you may pass in an already-opened DBI handle to your database. tie %hash, 'Apache::Session::Oracle', $id, { Handle => $dbh }; The last option is LongReadLen, which specifies the maximum size of the session object. If not supplied, the default maximum size is 8 KB. AUTHOR
This modules was written by Jeffrey William Baker <jwbaker@acm.org> A fix for the commit policy was contributed by Michael Schout <mschout@gkg.net> SEE ALSO
Apache::Session, Apache::Session::Store::DBI perl v5.12.1 2007-09-28 Session::Store::Oracle(3)
All times are GMT -4. The time now is 10:10 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy