Méthode LinkedServer.EnumTables (String)
Enumerates a list of tables that are available on the linked server for a specified table name.
Espace de noms : Microsoft.SqlServer.Management.Smo
Assembly : Microsoft.SqlServer.Smo (en Microsoft.SqlServer.Smo.dll)
Syntaxe
'Déclaration
Public Function EnumTables ( _
tableName As String _
) As DataTable
'Utilisation
Dim instance As LinkedServer
Dim tableName As String
Dim returnValue As DataTable
returnValue = instance.EnumTables(tableName)
public DataTable EnumTables(
string tableName
)
public:
DataTable^ EnumTables(
String^ tableName
)
member EnumTables :
tableName:string -> DataTable
public function EnumTables(
tableName : String
) : DataTable
Paramètres
- tableName
Type : System.String
A String value that specifies the name of the table.
Valeur de retour
Type : System.Data.DataTable
A DataTable object value that contains a list of tables that can be accessed on the linked server. The table describes the different columns of the returned DataTable.
Column |
Data type |
Description |
---|---|---|
TABLE_CAT |
The table qualifier name. Various DBMS products support three-part naming for tables (qualifier.owner.name). In SQL Server, this column represents the database name. In some other products, it represents the server name of the database environment of the table. This field can be NULL. |
|
TABLE_SCHEM |
The owner of the table in the linked server. In SQL Server, this column represents the name of the database user who created the table. This field always returns a value. |
|
TABLE_NAME |
The name of the table in the linked server. This field always returns a value. |
|
TABLE_TYPE |
The type of table; table, system table, or view. |
|
REMARKS |
SQL Server does not return a value for this column. |
Exemples
Utilisation de serveurs liés dans SMO
Voir aussi
Référence
Espace de noms Microsoft.SqlServer.Management.Smo
Autres ressources
Serveurs liés (Moteur de base de données)