Monday, April 17, 2006
Oracle comprara SUSE ????????
Sunday, April 16, 2006
Links para el bookmark
Hola,
Por favor agreguen el siguiente link a su bookmark , sera de gran utilidad para la siguiente parte del curso.
http://download-west.oracle.com/docs/cd/B19188_01/index.htm
Es necesario tener usuario del technet de oracle.
Saludos.
RDE
Por favor agreguen el siguiente link a su bookmark , sera de gran utilidad para la siguiente parte del curso.
http://download-west.oracle.com/docs/cd/B19188_01/index.htm
Es necesario tener usuario del technet de oracle.
Saludos.
RDE
Calificaciones primer parcial DISDABE

Hola,
Estas son las calificaciones del primer examen parcial de DISDABE.
Existen algunos puntos que me gustaría remarcar.
- Solo se presentaron al examen 55 alumnos, 25 no fueron al examen.
- El promedio general del grupo fue 6.76, lamentablemente es bajo.
- 35 alumnos tuvieron menos del 8 de calificación.
- 20 alumnos pasaron el examen pero obtuvieron menos de 8 de calificación.
- Un alumno saco 11, incluso la del planeta MELMAC la tuvo correcta ... FELICIDADES !!!
Saludos.
Ricardo Domínguez Ezquerro
Monday, April 03, 2006
Shell Script
Hola,
Por favor chequen en el siguiente shell script, este puede servir como ejemplo en el examen.
RDE
Por favor chequen en el siguiente shell script, este puede servir como ejemplo en el examen.
inst_mon.shSaludos
#!/bin/sh
# inst_mon.sh - utility for
# database instances monitoring
ORACLE_HOME=/opt/ora/app/oracle/product/7.3.4
export ORACLE_HOME
NLS_LANG=AMERICAN_AMERICA.WE8ISO8859P1
export NLS_LANG
PATH=$ORACLE_HOME/bin:$PATH
export PATH
cd /opt/ora/utils
umask 177
timeout=10
threshold=50
for SID in `cat instances.cfg | nawk ‘{print $1}’`
do
ORACLE_SID=$SID
export ORACLE_SID
connect_string=`grep "^$SID" instances.cfg| nawk ‘{print $2}’`
af=$SID.alarm
log_file=$SID.log
sqlplus $connect_string <>&1 > $log_file &
sleep $timeout
is_conn=`grep -c Connected $log_file`
is_time_busy=`grep -c time_busy $log_file`
if test $is_conn -ne 1
then
echo "Subject: Problems with " $SID "instance!" > $af
echo "No connection in " $timeout " seconds." >> $af
mail `cat admins.cfg` < $af fi if test $is_time_busy -eq 1 then time_busy=`grep time_busy $log_file | nawk ‘{print $2}’` if test $time_busy -gt $threshold then echo "Subject: Problems with " $SID "instance!" > $af
echo "Dispatchers utilization:" $time_busy "%" >> $af
echo "Tune MTS_MAX_DISPATCHERS!" >> $af
mail `cat admins.cfg` < $af fi fi done exit 0
RDE