CreateForAttach Property
Questa caratteristica verrà rimossa a partire da una delle prossime versioni di Microsoft SQL Server. Evitare di utilizzare questa caratteristica in un nuovo progetto di sviluppo e prevedere interventi di modifica nelle applicazioni in cui è attualmente implementata.
The CreateForAttach property controls database file creation when the Database object is added to the Databases collection of a connected SQLServer object.
Sintassi
object.CreateForAttach [=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 GetCreateForAttach(LPBOOL pRetVal);
HRESULT SetCreateForAttach(BOOL NewValue);
Osservazioni
If TRUE, the database is created from files specified in the FileGroups and LogFiles collections.
If FALSE, data files are created as directed by the FileGroups and LogFiles collections.
Creating databases from existing data files is constrained. For more information, see CREATE DATABASE (Transact-SQL).
Nota
CreateForAttach can only be set when the database is initially created.