Hi , I want to get Transaction Log information like size, path to the log directory, max log space… I found only how to find Logging Style (whether circular or archived).But I did not find C API or sample that can help me find other information. Anybody did that? ThanksRoman Druker
Subject: getting transaction log info with C API
You could read this information (all except the amount of space used within the translog) from the Notes.ini using the CAPI function OSGetEnvironmentString( ). You would use the following variables:TRANSLOG_Path
TRANSLOG_MaxSize
Of course you would have to run your api program physically on the same machine you want to query. The other way I can think to do it would be to use the NSFRemoteConsole to issue a sh config command and then parse the result. Cannot think of any stright C api calls to do this. hope that helps
Kelvin Johnson