Click here to Skip to main content
15,907,396 members
Please Sign up or sign in to vote.
1.00/5 (2 votes)
See more:
I have PingInfoView software I want to store the ping result in Oracle

I want to store each ping result I have 255 ping results in that s/w

I want all ping result in interval of 15 sec. duration
What can I do ?
Posted
Updated 6-Oct-14 20:55pm
v3
Comments
Sergey Alexandrovich Kryukov 7-Oct-14 2:31am    
What is that fruit, "notepad format"? What you do depends on 1) what you want to achieve; 2) what do you have on output from PingInfoView. Figure that out and then design proper part of database schema. Any questions about that?
—SA

1 solution

As PingInfoView will allow you to save report results in html, text, CSV or XML files you can that data directly into Oracle tables - either the full report, or for CSV and XML output, you can put the atomic information directly into tables - see Oracle Community[^] for details of how to do that.

As it (PingInfoView) is a command line utility you can easily call it from a C# program as often as you like (Every 15 seconds is probably overkill though).

I don't think there is an API for it, you'd have to ask NirSoft[^]
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900