Changes between Version 6 and Version 7 of RunningTheDistributionClient
- Timestamp:
- Jul 9, 2009, 5:48:45 AM (17 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
RunningTheDistributionClient
v6 v7 41 41 Multiple hosts may be specified as usual. 42 42 43 Summary information on faults and copy/extract times can be found in the receiveResult table of the mySQL database 44 43 Summary information such as faults and copy/extract times can be found in the receiveResult table of the mySQL database, file names and byte size (and other information) in receiveFile: 45 44 {{{ 46 45 select * from receiveResult where fault>0; 47 46 select * from receiveResult; 48 47 }}} 48 49 Example list of files successfully downloaded (fault=0), size, download time, and extraction time: 50 {{{ 51 select receiveResult.file_id,receiveFile.file,receiveResult.dtime_copy,receiveRe 52 sult.dtime_extract,receiveFile.bytes from receiveResult,receiveFile where receiv 53 eResult.fault=0 and receiveResult.file_id=receiveFile.file_id; 54 }}} 55 56 Is/will there be functionality in ippMonitor to access this information?
