From bd0596bc3024a0aa744ac7e685ad05fdf0579bb7 Mon Sep 17 00:00:00 2001 From: Parikshit Date: Tue, 18 Oct 2016 17:06:27 -0700 Subject: [PATCH] Update Readme.txt --- samples/features/sqlvss/Readme.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/samples/features/sqlvss/Readme.txt b/samples/features/sqlvss/Readme.txt index 06def464..91df6b8f 100644 --- a/samples/features/sqlvss/Readme.txt +++ b/samples/features/sqlvss/Readme.txt @@ -1,4 +1,4 @@ -QL Server VSS allows ISVs to develop backup solutions using APIs exposed by VSS framework. One such API method which is commonly used while performing differential backup using SQL VSS is IVssComponent::GetPartialFile. While performing differential backup, IVssComponent::GetPartialFile is used iteratively to obtain the range of changed differential bytes for backup which changed since last full backup. +SQL Server VSS allows ISVs to develop backup solutions using APIs exposed by VSS framework. One such API method which is commonly used while performing differential backup using SQL VSS is IVssComponent::GetPartialFile. While performing differential backup, IVssComponent::GetPartialFile is used iteratively to obtain the range of changed differential bytes for backup which changed since last full backup. The output for GetPartialFile provides the file path, file name and pbstrRange which is a pointer to 64KB string buffer containing the comma-separated list of the form offset1:length1, offset2:length2, where each offset and length is a 64-bit integer specifying a file offset in bytes and length of the range in bytes, respectively. If the changed pages within a partial file is large enough to fall outside the tracking range limit of the 64 bit string buffer, pbstrRange returns the filename containing those ranges instead of the range and offset within the current partial file.