NoRewind Property
未來的 Microsoft SQL Server 版本將移除這項功能。請避免在新的開發工作中使用這項功能,並規劃修改目前使用這項功能的應用程式。
The NoRewind property specifies whether Microsoft SQL Server keeps a tape drive open and positioned after a backup or restore operation.
語法
object
.NoRewind [= value]
Parts
object
An expression that evaluates to an object in the Applies To listvalue
TRUE or FALSE
Data Type
Boolean
Modifiable
Read/write
Prototype (C/C++)
HRESULT GetNoRewind(BOOL);
HRESULT SetNoRewind(BOOL);
備註
If NoRewind is set to TRUE, SQL Distributed Management Objects (SQL-DMO) issues the Transaction-SQL BACKUP or RESTORE command with the NOREWIND option. This allows SQL Server to keep a tape drive open and positioned, thereby preventing the overhead of rewinding and scanning a tape. This is useful in situations where a tape is repeatedly used. NoRewind is set to FALSE by default.
[!附註]
If an application calls NoRewind on an instance of SQL Server version 7.0, the operation is ignored.