You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This folder contains the latest files and samples required to build a SQL Server VDI based backup/restore application.
3
+
4
+
### Files available
5
+
1. vdi.h
6
+
2. vdierror.h
7
+
3. vdiguid.h
8
+
9
+
A new **VDC_Complete** command was added to SQLVDI that indicates SQL Server has completed sending data to the VDI client. Therefore, the VDI client will be able to finish the backup before it sends response to SQL Server.
10
+
11
+
More details about this improvement in the SQLVDI protocol can be found in [KB3188454: Enhance VDI Protocol with VDC_Complete command in SQL Server] (https://support.microsoft.com/en-us/kb/3188454)
12
+
13
+
The following implementations have to be applied to your VDI client:
14
+
15
+
1. Request the new VDI feature VDF_RequestComplete.
16
+
2. If SQL Server supports the VDC_Complete command, it will return a not NULL response.
17
+
3. Otherwise, it would return a NULL response for the requested feature.
18
+
19
+
The code sample here shows how to request the feature:
0 commit comments