Propriété Database.UserDefinedTableTypes
Gets a collection of UserDefinedTableType objects. Each UserDefinedTableType object represents a user-defined table type on the database.
Espace de noms : Microsoft.SqlServer.Management.Smo
Assembly : Microsoft.SqlServer.Smo (en Microsoft.SqlServer.Smo.dll)
Syntaxe
'Déclaration
<SfcObjectAttribute(SfcContainerRelationship.ObjectContainer, SfcContainerCardinality.ZeroToAny, _
GetType(UserDefinedTableType), SfcObjectFlags.Design)> _
Public ReadOnly Property UserDefinedTableTypes As UserDefinedTableTypeCollection
Get
'Utilisation
Dim instance As Database
Dim value As UserDefinedTableTypeCollection
value = instance.UserDefinedTableTypes
[SfcObjectAttribute(SfcContainerRelationship.ObjectContainer, SfcContainerCardinality.ZeroToAny,
typeof(UserDefinedTableType), SfcObjectFlags.Design)]
public UserDefinedTableTypeCollection UserDefinedTableTypes { get; }
[SfcObjectAttribute(SfcContainerRelationship::ObjectContainer, SfcContainerCardinality::ZeroToAny,
typeof(UserDefinedTableType), SfcObjectFlags::Design)]
public:
property UserDefinedTableTypeCollection^ UserDefinedTableTypes {
UserDefinedTableTypeCollection^ get ();
}
[<SfcObjectAttribute(SfcContainerRelationship.ObjectContainer, SfcContainerCardinality.ZeroToAny,
typeof(UserDefinedTableType), SfcObjectFlags.Design)>]
member UserDefinedTableTypes : UserDefinedTableTypeCollection
function get UserDefinedTableTypes () : UserDefinedTableTypeCollection
Valeur de propriété
Type : Microsoft.SqlServer.Management.Smo.UserDefinedTableTypeCollection
A UserDefinedTableTypeCollection object that represents all the user-defined table types on the database.
Notes
Specific user-defined types can be referenced by using this collection by specifying the name of the user-defined table type. To add a new user-defined table type to the collection, call the user-defined table type constructor.
Exemples
VB
'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")
'Display all the user defined table types in the database.
Dim udtt As UserDefinedTableType
For Each udtt In db.UserDefinedTableTypes
Console.WriteLine(udtt.Name)
Next
PowerShell
$srv = new-Object Microsoft.SqlServer.Management.Smo.Server("(local)")
$db = New-Object Microsoft.SqlServer.Management.Smo.Database
$db = $srv.Databases.Item("AdventureWorks2012")
Foreach ($udtt in $db.UserDefinedTableTypes)
{
Write-Host $udtt.Name
}
Voir aussi
Référence
Espace de noms Microsoft.SqlServer.Management.Smo
Autres ressources
Utilisation des objets de base de données
Utilisation des types de données
CREATE ASYMMETRIC KEY (Transact-SQL)