Поделиться через


Метод LinkedServer.EnumTables (String, String)

Enumerates a list of tables that are available on the linked server for a specified table name and schema.

Пространство имен:  Microsoft.SqlServer.Management.Smo
Сборка:  Microsoft.SqlServer.Smo (в Microsoft.SqlServer.Smo.dll)

Синтаксис

'Декларация
Public Function EnumTables ( _
    tableName As String, _
    schemaName As String _
) As DataTable
'Применение
Dim instance As LinkedServer 
Dim tableName As String 
Dim schemaName As String 
Dim returnValue As DataTable 

returnValue = instance.EnumTables(tableName, _
    schemaName)
public DataTable EnumTables(
    string tableName,
    string schemaName
)
public:
DataTable^ EnumTables(
    String^ tableName, 
    String^ schemaName
)
member EnumTables : 
        tableName:string * 
        schemaName:string -> DataTable
public function EnumTables(
    tableName : String, 
    schemaName : String
) : DataTable

Параметры

Возвращаемое значение

Тип: 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

String

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

String

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

String

The name of the table in the linked server. This field always returns a value.

TABLE_TYPE

String

The type of table: table, system table, or view.

REMARKS

String

SQL Server does not return a value for this column.

Примеры

Использование связанных серверов в объектах SMO

См. также

Справочник

LinkedServer Класс

Перегрузка EnumTables

Пространство имен Microsoft.SqlServer.Management.Smo

Другие ресурсы

Связанные серверы (компонент Database Engine)

sp_addlinkedserver (Transact-SQL)

sp_tables_ex (Transact-SQL)