FireDAC.Phys.IB.TFDIBSDump.BackupFiles

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property BackupFiles: TStrings read FBackupFiles write SetBackupFiles;

C++

__property System::Classes::TStrings* BackupFiles = {read=FBackupFiles, write=SetBackupFiles};

Properties

Type Visibility Source Unit Parent
property published
FireDAC.Phys.IB.pas
FireDAC.Phys.IB.hpp
FireDAC.Phys.IB TFDIBSDump

Description

Specifies the online dump files.

Use the BackupFiles property to specify one or more online dump output files. The paths are relative to the DB server host.

When several files are specified, the dump will be split into several files. Each file must be specified on a separate line. For each output file except the last one, the length in bytes must be specified. The length may be specified after a backup file name, separated by '='.

The path variables are supported.

Example 1

Specifying multiple files with length

with FDIBSDump1.BackupFiles do begin
  Clear;
  Add('/tmp/addemo.backup1=10000000');
  Add('/tmp/addemo.backup2=10000000');
  Add('/tmp/addemo.backup3');
end;

Example 2

Specifying a single file

FDIBSDump1.BackupFiles.Text := 'e:\temp\addemo.backup';

See Also