Sponsored Content
Full Discussion: Installation of Oracle!!!!
Top Forums UNIX for Dummies Questions & Answers Installation of Oracle!!!! Post 11306 by tmanpakdee on Sunday 2nd of December 2001 03:34:19 PM
Old 12-02-2001
Computer Setting up Unix for Oracle at home

I have been planning to set up a Unix workstation at home to host an Oracle database just for practice. I don't know enough about hardware to know whether I can install a unix OS on a regular desktop and the hardware config. required. If someone could help guide me in this mission I would be forever grateful. Thank you in advance. Smilie
Peace.
Tman.
 

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

oracle installation on redhat 7.0/7.1

can anybody tell me that whether oracle 8i is installable on redhat 7.0/7.1. for me it is only working successfully on redhat 6.1 but not later versions cheers (3 Replies)
Discussion started by: balu
3 Replies

2. Solaris

Solaris 8 Oracle 9i Installation

Hello; I am hoping that one of you Guru's out there has run across this problem and can tell me exactly where I am messing up. I have a Sun Ultra 10 with 1GB of memory and 2GB of swap space. I am trying to install Oracle 9i on the system. All goes well with the installation until the... (2 Replies)
Discussion started by: rambo15
2 Replies

3. Solaris

oracle 9i installation

Let me please know how to install oracle 9i in SOLARIS 5.8 version ... I'm having oracle9i CDROM with me. (1 Reply)
Discussion started by: arun.viswanath
1 Replies

4. UNIX for Dummies Questions & Answers

Oracle 9i Installation

Will any one refer me a site form where I can get the info about "Oracle 9i installation in Solaris 8 or Solaris 10". (1 Reply)
Discussion started by: arun.viswanath
1 Replies

5. HP-UX

Installation of Oracle on HPUX 11.31

I am having issues the below issues:- As per the documents Preinstallation Tasks I have linked the following files :- # cd /usr/lib # ln -s libX11.3 libX11.sl # ln -s libXIE.2 libXIE.sl # ln -s libXext.3 libXext.sl # ln -s libXhp11.3 libXhp11.sl # ln -s libXi.3 libXi.sl # ln -s... (0 Replies)
Discussion started by: grayhorns
0 Replies

6. Solaris

Oracle 10 on Solaris 10 installation

Good evening, I am trying to install the oracle 10 in Solaris 10 and oracle requires following patches to be installed: 117837-08 117846-19 118682-01 I have downloaded above from sunsolve.com and when I add the patch with following command: patchadd -M xxxxx the are not installed... (10 Replies)
Discussion started by: aa_monster
10 Replies

7. Shell Programming and Scripting

Perl connect to remote oracle db without local oracle installation

I want to use Perl to connect to a remote Oracle DB I have no oracle installation on my server (and dont plan on installing one) I am using solaris 9 on x86 server. Is this possible? I basically want to run some basic sql queries on the remote oracle db which I have access to using perl on my... (0 Replies)
Discussion started by: frustrated1
0 Replies

8. UNIX and Linux Applications

Oracle installation error

Hi, While running runInstaller to open up the Oracle Universal Installer, I got an error - >>> Could not execute auto check for display colors using command /usr/openwin/bin/xdpyinfo. Check if the DISPLAY variable is set. Failed <<<< This is what I have done - I logged in with Oracle... (9 Replies)
Discussion started by: jld
9 Replies

9. Solaris

oracle installation...

hi am senthil i have downloaded 10202_database_solx86.zip from oracle website .. the above ZIP file is oracle 10g for solaris 10.. i need the installation procedure for oracle 10g on solaris 10.. thanks.. (4 Replies)
Discussion started by: senkerth
4 Replies

10. UNIX for Dummies Questions & Answers

Oracle installation on cygwin

Can someone help in Oracle installation on cygwin (2 Replies)
Discussion started by: Uinx_addic
2 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 02:33 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy