BackupRestoreBase.MaxTransferSize Property
Gets or sets the maximum number of bytes to be transferred between the backup media and the instance of SQL Server.
Namespace: Microsoft.SqlServer.Management.Smo
Assembly: Microsoft.SqlServer.SmoExtended (in microsoft.sqlserver.smoextended.dll)
Syntax
'Bildirim
Public Property MaxTransferSize As Integer
public int MaxTransferSize { get; set; }
public:
property int MaxTransferSize {
int get ();
void set (int value);
}
/** @property */
public int get_MaxTransferSize ()
/** @property */
public void set_MaxTransferSize (int value)
public function get MaxTransferSize () : int
public function set MaxTransferSize (value : int)
Property Value
An Int32 value that specifies the maximum number of bytes to be transferred in the backup and restore operation.
Remarks
The possible values are multiples of 65536 bytes (64 KB), up to 4194304 bytes (4 MB).
Thread Safety
Any public static (Shared in Microsoft Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.
Platforms
Development Platforms
For a list of the supported platforms, see Hardware and Software Requirements for Installing SQL Server.
Target Platforms
For a list of the supported platforms, see Hardware and Software Requirements for Installing SQL Server.
See Also