Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Mailing Lists -> Oracle-L -> Re: Checking if remote database is up
Would a quick hack to code the procedure as a version of=20
declare
l_alive number;
begin=20
select 1 into l_alive from dual_at_remotedb; if l_alive =3D 1 then
make sense?=20
This might avoid ocella upgrades breaking your check, or dealing with the politics :).
Alternatively you might wish to add error handling for what ever errors you get when the ocella db is down and add that to your functions and procedures...
On 4/26/05, stephen booth <stephenbooth.uk_at_gmail.com> wrote:
> One of our new systems (Documentum from EMC) uses a database link to a
> remote database (Ocella from Ocella) for some processes. Due to
> organisation politics the people managing the Ocella database don't
> tell the people managing Documentum when they're taking their system
> down (the joys of working in the public sector). Documentum can do
> most of it's functions when Ocella is down, it just can't do certain
> transactions, unfortunately it's currently not very good at dealing
> with situations where the Ocella database is down.
>=20
>=20
>=20
>=20
>=20
--=20
Niall Litchfield
Oracle DBA
http://www.niall.litchfield.dial.pipex.com
-- http://www.freelists.org/webpage/oracle-lReceived on Tue Apr 26 2005 - 09:22:22 CDT
![]() |
![]() |