21st November 2009
in
Unix
The Unix top command is designed to help users determine which processes are running and which applications are using more memory or processing power than they should be.
The top command is very easy to use but you shoul[...]
Tags: Linux Top Command
No Comments
13th November 2009
in
SGBD
10g RAC for Administrators
hxxp://rapidshare.com/files/61294558/10gRACforAdministratorsR2_Vol1_pwd_-_racr2.pdf
hxxp://rapidshare.com/files/61295444/10gRACforAdministratorsR2_Vol2_pwd_-_racr2.pdf
Password: racr2
[...]
Tags: oracle 10g RAC administration
No Comments
13th November 2009
in
SGBD
This is the second in a series of courses, aimed at preparing the user for Oracle Certification Exam # 1Z0-031. This course will teach Oracle database administration fundamentals; installing Oracle, creating databases, m[...]
Tags: Oracle Database Administration Fundamentals
No Comments
13th November 2009
in
SGBD
1Z0-001 Introduction to Oracle: SQL and PL/SQL 130 Questions 2/24/2009
1Z0-007 Introduction to Oracle9i: SQL 203 Questions 2/10/2009
1Z0-020 Oracle8i: New Features for Administrators 83 Questions 10/31/2008
1Z0-023 Archi[...]
No Comments
13th November 2009
in
SGBD
1Z0-042 Oracle Database 10g: Administration I
1Z0-043 Oracle Database 10g: Administration II
1Z0-052 Oracle Database 11g: Administration I
1Z0-255 Hyperion Essbase 7.1.2 Cnsultant
1Z0-108 Oracle WebLogic Server 10g Syste[...]
No Comments
13th November 2009
in
SGBD
It covers only 10g and 11g technologies and they are mainly powerpoint slides and e-books on PL/SQL, development and database administration :
D17171GC20 – 10g Develop Applications Using HTML Db 2nd Edition
http://[...]
4 Comments
12th November 2009
in
Init Parameters
When an Oracle Instance is started, the characteristics of the Instance are established by parameters specified within the initialization parameter file. These initialization parameters are either stored in a PFILE or S[...]
Tags: Initialization Parameter SPFILE PFILE
No Comments
11th November 2009
in
Unix
Finds all files over 20,000KB (roughly 20MB) in size and presents their names and size in a human readable format:
find / -type f -size +20000k -exec ls -lh {} \; 2>/dev/null|awk '{print $NF ": " $5}'|sort -nrk 2,2
f[...]
Tags: Find large files Linux
No Comments
9th November 2009
in
Session, Unix
Sessions can be killed from within oracle using the ALTER SYSTEM KILL SESSION syntax.
First identify the offending session as follows:
SELECT s.sid,
s.serial#,
s.osuser,
s.program
FROM v$session s[...]
Tags: Killing Oracle Sessions
No Comments
5th November 2009
in
Unix
You can check for top memory consuming processes by issuing the following commands:
we use the following ps commands in order to check for performance probelms
1) Displaying top CPU_consuming processes:
ps aux | head -1[...]
Tags: memory
3 Comments