Journalread()

Reads a journal file, returning back a structure with the details of the request. If full=true then the 'trace' key will have the query of all the execution

Usage

STRUCTURE = Journalread( file, full )
Argument Summary
file full path of the journal file to read
full flag if you wish all the journal to be read and returned back as a query object inside the main structure; defaults to false [optional]

Calling

Supports named-parameter calling allowing you to use the function like:

Journalread(
   file=?, 
   full=?
);

Supports passing parameters as a structure using ArgumentCollection:

Journalread( ArgumentCollection={
   file : ?, 
   full : ?
} );