It make me sweat when asking me to change the Solaris Kernel Parameters. After some troublesome findings, I finally manage to change the kernel parameters at /etc/system and manage to get the oracle 9i installed and database created. If not, you will always get oracle error complaining "Out Of Memory". Remember, it is the kernel parameters' fault. Not your RAM, not your SWAP (because I have increase my RAM from 512Mb to 1Gb and SWAP from 500Mb to 1.5 Gb :D ).
After installing and created a database, you need to create at least a user.
To create a user :
- Login SQL*Plus with sqlplus "/ as sysdba".
- In SQL*Plus, type sql > create user user_name identified by user_password;.
- Grant some access for the user.
sql > grant connect to user_name;
sql > grant resource to user_name;
sql > grant create any snapshot to user_name;
After that, to access oracle from other workstation, you should start the oracle process first.
- In console, type cd /oracle/home/bin/.
- To start the oracle process, in console, type ./lsnrctl start.
- To start the database, in console, type ./dbstart.
And there you go! The very basic of oracle. :)