Prints a detailed VACUUM or ANALYZE activity report for each item.
Syntax:
property Verbose: boolean;
Description:
If Verbose property is True, ANALYZE anf VACUUM operations emit progress messages
to indicate which item is currently being processed. Various statistics about the tables are printed as
well. To proceed this messages write TPSQLDatabase.OnNotice event handler.
Example:
Simple OnNotice handler.
procedure TForm1.PSQLDatabase1Notice(Sender: TPSQLDatabase;
Message: String);
begin
logMemo.Strings.Append(Trim(Message));
end;