Udostępnij za pośrednictwem


Metoda Server.SetDefaultInitFields (Type, StringCollection)

Określa właściwości, które są pobierane, gdy są tworzone wystąpienia obiektów określonego typu.

Przestrzeń nazw:  Microsoft.SqlServer.Management.Smo
Zestaw:  Microsoft.SqlServer.Smo (w Microsoft.SqlServer.Smo.dll)

Składnia

'Deklaracja
Public Sub SetDefaultInitFields ( _
    typeObject As Type, _
    fields As StringCollection _
)
'Użycie
Dim instance As Server
Dim typeObject As Type
Dim fields As StringCollection

instance.SetDefaultInitFields(typeObject, _
    fields)
public void SetDefaultInitFields(
    Type typeObject,
    StringCollection fields
)
public:
void SetDefaultInitFields(
    Type^ typeObject, 
    StringCollection^ fields
)
member SetDefaultInitFields : 
        typeObject:Type * 
        fields:StringCollection -> unit 
public function SetDefaultInitFields(
    typeObject : Type, 
    fields : StringCollection
)

Parametry

  • typeObject
    Typ: System.Type
    A Type wartość obiektu systemu, który określa typ obiektu.

Uwagi

Optymalizacja SMO umożliwia tylko minimalne właściwości mają być załadowane podczas tworzenia obiektu.Kiedy uzyskują właściwości niezainicjowanej SMO sprawia, że indywidualne żądania załadować informacji z wystąpienie SQL Server.Ta metoda umożliwia dostosowanie właściwości, które są inicjowane obiektu w chwili utworzenia dalszej optymalizacji wydajności.

Przykłady

Visual Basic

'Connect to the local, default instance of SQL Server.
Dim srv As Server
srv = New Server
'Reference the AdventureWorks2008R2 database.
Dim db As Database
db = srv.Databases("AdventureWorks2008R2")
'Assign the Table object type to a System.Type object variable.
Dim tb As Table
Dim typ As Type
tb = New Table
typ = tb.GetType
'Assign the current default initialization fields for the Table object type to a 
'StringCollection object variable.
Dim sc As StringCollection
sc = srv.GetDefaultInitFields(typ)
'Set the default initialization fields for the Table object type to the CreateDate property.
srv.SetDefaultInitFields(typ, "CreateDate")
'Retrieve the Schema, Name, and CreateDate properties for every table in AdventureWorks2008R2.
'Note that the improvement in performance can be viewed in SQL Profiler.
For Each tb In db.Tables
    Console.WriteLine(tb.Schema + "." + tb.Name + " " + tb.CreateDate)
Next
'Set the default initialization fields for the Table object type back to the original settings.
srv.SetDefaultInitFields(typ, sc)

PowerShell

$srv = new-Object Microsoft.SqlServer.Management.Smo.Server("(local)")
$db = New-Object Microsoft.SqlServer.Management.Smo.Database
$db = $srv.Databases.Item("AdventureWorks2008R2")
$tb = new-object Microsoft.SqlServer.Management.Smo.Table
$typ = $tb.GetType()
$sc = $srv.GetDefaultInitFields($typ)
$srv.SetDefaultInitFields($typ, "CreateDate")
foreach ($tb in $db.Tables)
{
   Write-Host $tb.Schema,".",$tb.Name,".",$tb.CreateDate
}
$srv.SetDefaultInitFields($typ, $sc)