Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

i have a main database with only setup data at the headquarter and several databases at different branches,i created a database link for each branch server.

In some case i would like to query all the valid links (as some links could be invalid due to connection problems or anything else),so my question is How to check if the database link is valid without getting in Connection timeout problems,Is there a SQL statement to let the oracle main server do that check and return only the valid database links?

Thanks in advance

Khaled

share|improve this question

5 Answers

up vote 2 down vote accepted

I'm not sure you can create a query to check live db links. One thing you could do is create a table updated by a background process with the list of db links and for each of them a 'last time seen alive' timestamp

share|improve this answer
That could be a solution also,thnx vc74 – Khaled Oct 3 '10 at 14:04

Any link could have a problem due to different categories of issues:

  • invalid link definition: wrong username, password (if used), service name

  • remote account locked

  • remote db configuration (e.g. sessions per user exceeded)

  • remote db or host unavailability

  • network connectivity

Given the changing nature of these failure modes there can't be a dictionary view (for example) that describes the state of the link. An asynchronous process that checks in the background will also stand a chance of being out-of-date. Probably the lightest-weight test you can do is issue a "select sysdate from dual@remote_db" before you need to use the link in your code

share|improve this answer
Thanks for ur answer,but the problem i face with this approach is waiting till i get the timeout exception.so if any of the database links is not available for any reason,i will have to wait till the server stops trying to connect ! – Khaled Oct 3 '10 at 14:17

You could write an OS level script that performs a tnsping, since db links usually depend on the tnsnames.ora anyway.

share|improve this answer
Sounds like a good idea, but how to do it? – Khaled Oct 4 '10 at 9:43
For Windows... tnsping <tnsname> ... check the %errorlevel% value immediately after the tnsping. If it is 0 == OK, 1 == ERROR. For UNIX return code is $? (errorlevel equivalent). – Stellios Oct 4 '10 at 23:53
i will try this,thanx – Khaled Oct 5 '10 at 8:51

@Sushant Nayak Yes,i did it.

I tried "Select * from v$dblink" but it does not work,may be because the permission.

I was able to do it by creating a table with the destination databases containing the dblink of each..then i used the Quartz dll to run a function according to an interval,that function is executed in a separate thread ,it checks the database link by querying any system table..if it response before a specific time (in milliseconds) then it set the status of the dblink in the table to true..if not i close the thread of the function and set the status to false..then in any of the queries i exclude the inactive dblinks.

I hope it helps

Khaled

share|improve this answer

I don't know if you managed to get this done, but I wanted to do something like this and check which database links are active. I found this on another forum

Select * from v$dblink 

which shows only active dblinks. Again, this will work only if you have permission to access v$dblink.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.