echothrust/howtos

A list of OpenBSD (mostly) material

View on GitHub

Administer Oracle 9i RAC

Need to know:

Use SRVCTL to verify database/instance:

IF everything fails try

Start OracleServicesid instance on each node. C:\> net start OracleServicesid

From the Control Panel’s Services window, select OracleServicesid, then click Start.

If the listener is not started, start it on each of the nodes

LSNRCTL
LSNRCTL> start [listener_name]

Where listener_name is the name of the listener defined in the listener.ora file.

You do not have to identify the listener if you are using the default listener named LISTENER.

sqlplus /nolog
CONNECT SYS\password
STARTUP PFILE=%ORACLE_HOME%\database\initsid.ora;

Export the database

Once the database is open, ensure that EXP_FULL_DATABASE and is assigned to DBA role

SELECT * FROM DBA_SYS_PRIVS;
SELECT * FROM DBA_ROLE_PRIVS;

If the role does not exist then run catproc.sql and catalog.sql

Ensure the SYSTEM user has the DBA role assigned C:>EXP system/manager FULL=y FILE=export.dmp

SOS: IF stored procedures exists, they cannot be migrated to MySQL!!!!

SELECT * FROM ALL_OBJECTS WHERE OBJECT_TYPE IN ('FUNCTION','PROCEDURE','PACKAGE');