Compartir a través de


Startup Propiedad

Gets or sets a value that specifies whether the stored procedure runs when the instance of SQL Server starts up.

Espacio de nombres:  Microsoft.SqlServer.Management.SqlParser.Metadata
Ensamblado:  Microsoft.SqlServer.Management.SqlParser (en Microsoft.SqlServer.Management.SqlParser.dll)

Sintaxis

'Declaración
Property Startup As Boolean
    Get
    Set
'Uso
Dim instance As IMutableStoredProcedure
Dim value As Boolean

value = instance.Startup

instance.Startup = value
bool Startup { get; set; }
property bool Startup {
    bool get ();
    void set (bool value);
}
abstract Startup : bool with get, set
function get Startup () : boolean
function set Startup (value : boolean)

Valor de la propiedad

Tipo: System. . :: . .Boolean
true if the stored procedure runs when the instance of SQL Server starts up; otherwise, false.

Implementa

IStoredProcedure. . :: . .Startup