All Products
Search
Document Center

Data Management:ListLogicTables

Last Updated:Oct 21, 2024

Queries the details of the logical tables in a logical database.

Debugging

You can run this interface directly in OpenAPI Explorer, saving you the trouble of calculating signatures. After running successfully, OpenAPI Explorer can automatically generate SDK code samples.

Authorization information

There is currently no authorization information disclosed in the API.

Request parameters

ParameterTypeRequiredDescriptionExample
TidlongNo

The ID of the tenant.

Note To view the tenant ID, move the pointer over the profile picture in the upper-right corner of the Data Management (DMS) console. For more information, see Manage DMS tenants.
-1
DatabaseIdstringYes

The ID of the logical database.

1
PageNumberintegerYes

The number of the page to return.

1
PageSizeintegerNo

The number of entries to return on each page.

10
SearchNamestringNo

The keyword that is used to search for the logical tables. Prefix match is supported.

test
ReturnGuidbooleanNo

Specifies whether to return the GUID of the table.

true

Response parameters

ParameterTypeDescriptionExample
object
TotalCountlong

The total number of logical tables that meet the query conditions.

1
LogicTableListarray<object>

The details of the logical tables.

LogicTableobject
DatabaseIdstring

The ID of the logical database.

1
TableNamestring

The name of the logical table.

test
TableCountstring

The number of logical tables.

4
OwnerIdListarray

The IDs of the owners of the logical tables.

OwnerIdsstring

The ID of the owner of a logical table.

1
OwnerNameListarray

The nicknames of the owners of the logical tables.

OwnerNamesstring

The nickname of the owner of a logical table.

owner_name
SchemaNamestring

The logical database to which the logical table belongs.

yuyang_test
Logicboolean

Indicates whether the table is a logical table. The value is fixed to true.

true
TableExprstring

The expression of the logical table.

test[1-4]
TableGuidstring

The GUID of the logical table.

IDB_L_308302.yuyang_test.test_ch
TableIdstring

The ID of the logical table.

1
RequestIdstring

The ID of the request.

F1E6484F-9DF1-4406-9BDE-0861C4629B69
ErrorCodestring

The error code.

UnknownError
ErrorMessagestring

The error message.

UnknownError
Successboolean

Indicates whether the request is successful.

true

Examples

Sample success responses

JSONformat

{
  "TotalCount": 1,
  "LogicTableList": {
    "LogicTable": [
      {
        "DatabaseId": "1",
        "TableName": "test",
        "TableCount": "4",
        "OwnerIdList": {
          "OwnerIds": [
            "1"
          ]
        },
        "OwnerNameList": {
          "OwnerNames": [
            "owner_name"
          ]
        },
        "SchemaName": "yuyang_test",
        "Logic": true,
        "TableExpr": "test[1-4]",
        "TableGuid": "IDB_L_308302.yuyang_test.test_ch",
        "TableId": "1"
      }
    ]
  },
  "RequestId": "F1E6484F-9DF1-4406-9BDE-0861C4629B69",
  "ErrorCode": "UnknownError",
  "ErrorMessage": "UnknownError",
  "Success": true
}

Error codes

For a list of error codes, visit the Service error codes.

Change history

Change timeSummary of changesOperation
No change history