Server.GetDefaultInitFields 메서드

Returns the property types that are initialized by default when the specified object is initialized.

네임스페이스:  Microsoft.SqlServer.Management.Smo
어셈블리:  Microsoft.SqlServer.Smo(Microsoft.SqlServer.Smo.dll)

구문

‘선언
Public Function GetDefaultInitFields ( _
    typeObject As Type _
) As StringCollection
‘사용 방법
Dim instance As Server 
Dim typeObject As Type 
Dim returnValue As StringCollection 

returnValue = instance.GetDefaultInitFields(typeObject)
public StringCollection GetDefaultInitFields(
    Type typeObject
)
public:
StringCollection^ GetDefaultInitFields(
    Type^ typeObject
)
member GetDefaultInitFields : 
        typeObject:Type -> StringCollection
public function GetDefaultInitFields(
    typeObject : Type
) : StringCollection

매개 변수

  • typeObject
    유형: System.Type
    A Type system object that specifies the type of object.

반환 값

유형: System.Collections.Specialized.StringCollection
A StringCollection system object that contains a list of property types that are initialized by default when the specified object is initialized.

주의

This method is used to control the way in which object properties are initialized in an SMO application. You can use this method to optimize your SMO application.

Visual Basic

'Connect to the local, default instance of SQL Server.
Dim srv As Server
srv = New Server
'Reference the AdventureWorks2012 database.
Dim db As Database
db = srv.Databases("AdventureWorks2012")
'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 AdventureWorks2012.
'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("AdventureWorks2012")
$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)

참고 항목

참조

Server 클래스

Microsoft.SqlServer.Management.Smo 네임스페이스

관련 자료

속성 설정

메서드 호출

서버 관리