Anusha verrma

Greenhorn
+ Follow
since May 11, 2006
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
0
In last 30 days
0
Total given
0
Likes
Total received
0
Received in last 30 days
0
Total given
0
Given in last 30 days
0
Forums and Threads
Scavenger Hunt
expand Ranch Hand Scavenger Hunt
expand Greenhorn Scavenger Hunt

Recent posts by Anusha verrma

i used this command :
" tcpdump -p dst port 53 "
then, i cud see the number of dns requests being sent.
It can also be found by the log on the dns server.
Am not facing any problems as such, but clients are finding it as a bug and they don't want it to happen.
so i need to somehow stop this DNS lookup.
I have an application coded in Java which checks the oracle database if any new record is added.
so the line of code for eastablishing the conection is :
java.sql.Connection conn = DriverManager.getConnection ( "jdbc racle:thin:@10.3.7.197:1521 EV", "lot3","lot3" );

the application checks the database every 2 mins for any new records.
everytime the appln tries connecting to the DB, it is doing a DNS lookup. IS there any way to stop this DNS lookup?
the appln is running on AIX Unix machine.
Can anybody please help me?

otherwise, can anybody please tell me whether Connection to Database thru JDBC driver really does a DNS Lookup always....