Server.DefaultTextMode Property
Gets or sets the Boolean property value that specifies whether the default text mode is set for the instance of SQL Server.
Espacio de nombres: Microsoft.SqlServer.Management.Smo
Ensamblado: Microsoft.SqlServer.Smo (in microsoft.sqlserver.smo.dll)
Sintaxis
'Declaración
Public Property DefaultTextMode As Boolean
public bool DefaultTextMode { get; set; }
public:
property bool DefaultTextMode {
bool get ();
void set (bool value);
}
/** @property */
public boolean get_DefaultTextMode ()
/** @property */
public void set_DefaultTextMode (boolean value)
public function get DefaultTextMode () : boolean
public function set DefaultTextMode (value : boolean)
Valor de propiedad
A Boolean value that specifies the whether the default text mode is set for the instance of SQL Server. If True, the default text mode is set to True. If False, the default text mode is not set False.
Notas
Texto actualizado:
The DefaultTextMode is an SMO setting that specifies the default value for the TextMode property of all the database objects on the instance of SQL Server. The View object, for example, supports the TextMode property. The DefaultTextMode sets the default value of this property on the instance of SQL Server.
The TextMode property specifies whether header information is generated automatically for SMO database objects that have a Text property. In SMO, the View object requires you to specify the definition of the view by using a Transact-SQL statement in the Text property.
Este espacio de nombres, clase o miembro solamente se admite en la versión 2.0 de Microsoft .NET Framework.
Ejemplo
srv.DefaultTextMode = True
Seguridad para subprocesos
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.
Plataformas
Plataformas de desarrollo
Para obtener una lista de las plataformas compatibles, vea Requisitos de hardware y software para instalar SQL Server 2005.
Plataformas de destino
Para obtener una lista de las plataformas compatibles, vea Requisitos de hardware y software para instalar SQL Server 2005.
Vea también
Referencia
Server Class
Server Members
Microsoft.SqlServer.Management.Smo Namespace
Otros recursos
How to: Get and Set a Property in Visual Basic .NET
Setting Properties
Administrar servidores