- Database "
" warm started.
Investigando un poco en Metalink llego al DocId:
- 98418.1 WARNING: "dbstart" does not work with 8.1.6 Instances.
- 50508.1 ALERT: "CONNECT INTERNAL" Syntax to be DeSupported
Description
~~~~~~~~~~~
"CONNECT INTERNAL" will no longer be supported AFTER Oracle8i Release 3 (8.1.7)
Server Manager will no longer be supported AFTER Oracle8i Release 3 (8.1.7)
As part of planning for future releases users are advised to convert
administrative scripts to use SQLPLUS in place of SVRMGRL and to use the
SYSDBA or SYSOPER privileges instead of CONNECT INTERNAL.
These privileges have been available and fully documented since Oracle 7.1
llego a la conclusión que lo mas saludable es cambiar el script dbora creado durante el proceso de instalación. Este es el encargado de subir y bajar la instancia cuando lo hace el sistema operativo.
Así que en el /etc/init.d/dbora cambio:
- su - $ORA_OWNER -c $ORA_HOME/bin/dbstart &
- su - $ORA_OWNER -c "
connect / as sysdba
startup
exit
EOF"
Y listo, desaparece el warning.