All Products
Search
Document Center

DataWorks:ListTables

Last Updated:Mar 30, 2026

Queries a list of tables in Data Map. For data source types that do not support schemas, you can call this API operation to query a list of tables in a specific database. For data source types that support schemas, you can call this API operation to query a list of tables in a specific database, MaxCompute project, or schema. Only the basic information about tables is returned. The information about technical metadata and business metadata is not returned.

Operation description

  1. DataWorks Basic Edition or a higher edition is required.

Try it now

Try this API in OpenAPI Explorer, no manual signing needed. Successful calls auto-generate SDK code matching your parameters. Download it with built-in credential security for local usage.

Test

RAM authorization

The table below describes the authorization required to call this API. You can define it in a Resource Access Management (RAM) policy. The table's columns are detailed below:

  • Action: The actions can be used in the Action element of RAM permission policy statements to grant permissions to perform the operation.

  • API: The API that you can call to perform the action.

  • Access level: The predefined level of access granted for each API. Valid values: create, list, get, update, and delete.

  • Resource type: The type of the resource that supports authorization to perform the action. It indicates if the action supports resource-level permission. The specified resource must be compatible with the action. Otherwise, the policy will be ineffective.

    • For APIs with resource-level permissions, required resource types are marked with an asterisk (*). Specify the corresponding Alibaba Cloud Resource Name (ARN) in the Resource element of the policy.

    • For APIs without resource-level permissions, it is shown as All Resources. Use an asterisk (*) in the Resource element of the policy.

  • Condition key: The condition keys defined by the service. The key allows for granular control, applying to either actions alone or actions associated with specific resources. In addition to service-specific condition keys, Alibaba Cloud provides a set of common condition keys applicable across all RAM-supported services.

  • Dependent action: The dependent actions required to run the action. To complete the action, the RAM user or the RAM role must have the permissions to perform all dependent actions.

Action

Access level

Resource type

Condition key

Dependent action

dataworks:ListTables

list

*All Resource

*

None None

Request parameters

Parameter

Type

Required

Description

Example

ParentMetaEntityId

string

Yes

The parent metadata entity ID. You can refer to the responses of the ListDatabases or ListSchemas operation and Description of concepts related to metadata entities.

  • The parent metadata entity is a database: The format of ParentMetaEntityId is ${EntityType}:${Instance ID or encoded URL}:${Catalog Identifier}:${Database Name}. Use an empty string (`""`) as a placeholder for any non-existent level.

  • The parent metadata entity is a database schema: The format of ParentMetaEntityId is ${EntityType}:${Instance ID or encoded URL}:${Catalog Identifier}:${Database Name}:${Schema Name}. Use an empty string (`""`) as a placeholder for any non-existent level.

Note
  • The schema level in ParentMetaEntityId is supported only for database services, such as MaxCompute (with schema enabled), Hologres, PostgreSQL, SQL Server, HybridDB for PostgreSQL, and Oracle.

  • For the MaxCompute and DLF types, use an empty string as the placeholder for the instance ID. For MaxCompute, the database name is the same as the project name.

  • For StarRocks, the catalog identifier is the catalog name. For DLF, it is the catalog ID. Other types do not support the catalog level and you can use an empty string as a placeholder.

Examples of common ParentMetaEntityId formats

  • maxcompute-project:::project_name

  • maxcompute-schema:::project_name:schema_name (for MaxCompute projects with schema enabled)

  • dlf-database::catalog_id:database_name

  • hms-database:instance_id::database_name

  • holo-schema:instance_id::database_name:schema_name

  • mysql-database:(instance_id|encoded_jdbc_url)::database_name

Note
  • instance_id: The instance ID, which is required when the data source is registered in instance mode.

  • encoded_jdbc_url: The URLEncoded JDBC connection string, which is requiredwhen the data source is registered using a connection string.

  • catalog_id: The DLF catalog ID.

  • project_name: The MaxCompute project name.

  • database_name: The database name.

  • schema_name: The schema name.

maxcompute-project:::project_name

Name

string

No

The name. Supports fuzzy matching.

abc

Comment

string

No

The comment. Supports fuzzy matching.

this is a comment

TableTypes

array

No

The list of table types to query. If it's left empty, all types will be queried.

string

No

The table type. The value is related to the database type.

TABLE

SortBy

string

No

The sort field. Default value: CreateTime. Valid values:

  • CreateTime

  • ModifyTime

  • Name

  • TableType

CreateTime

Order

string

No

The order in which the tables are sorted. Default value: Asc. Valid values:

  • Asc

  • Desc

Asc

PageNumber

integer

No

The page number. Default value: 1.

1

PageSize

integer

No

The number of records per page. Default value: 10. Maximum value: 100.

10

Response elements

Element

Type

Description

Example

object

The response.

RequestId

string

The request ID.

E25887B7-579C-54A5-9C4F-83A****

Success

boolean

Indicates whether the request was successful.

true

PagingInfo

object

The pagination result.

TotalCount

integer

The total number of records returned.

100

PageNumber

integer

The page number.

1

PageSize

integer

The number of records per page.

10

Tables

array

The list of data tables.

Table

Data table details.

Examples

Success response

JSON format

{
  "RequestId": "E25887B7-579C-54A5-9C4F-83A****",
  "Success": true,
  "PagingInfo": {
    "TotalCount": 100,
    "PageNumber": 1,
    "PageSize": 10,
    "Tables": [
      {
        "Id": "maxcompute-table:123456XXX::test_project::test_tbl\ndlf-table:123456XXX:test_catalog:test_db::test_tbl\nhms-table:c-abc123xxx::test_db::test_tbl\nholo-table:h-abc123xxx::test_db:test_schema:test_tbl",
        "Name": "test_tbl",
        "Comment": "test_table",
        "TableType": "TABLE",
        "PartitionKeys": [
          "ds"
        ],
        "ParentMetaEntityId": "maxcompute-schema:123456XXX::test_project_with_schema:default\nmaxcompute-project:123456XXX::test_project_without_schema\ndlf-database:123456XXX:test_catalog:test_db\nhms-database:c-abc123xxx::test_db\nholo-schema:h-abc123xxx::test_db:test_schema",
        "CreateTime": 1736852168000,
        "ModifyTime": 1736852168000,
        "TechnicalMetadata": {
          "Owner": "test_user",
          "Location": "oss://test-bucket/test_tbl",
          "Compressed": false,
          "InputFormat": "org.apache.hadoop.hive.ql.io.parquet.MapredParquetInputFormat",
          "OutputFormat": "org.apache.hadoop.hive.ql.io.parquet.MapredParquetOutputFormat",
          "SerializationLibrary": "org.apache.hadoop.hive.ql.io.parquet.serde.ParquetHiveSerDe",
          "Parameters": {
            "key": "{\\\"k1\\\":\\\"v1\\\"}"
          }
        },
        "BusinessMetadata": {
          "Readme": "## Usage notes",
          "Tags": [
            {
              "Key": "tag_key",
              "Value": "tag_value"
            }
          ],
          "Categories": [
            [
              {
                "Id": "CATEGORY.456",
                "Name": "test_category",
                "ParentId": "CATEGORY.123"
              }
            ]
          ],
          "UpstreamTasks": [
            {
              "Id": 123456,
              "Name": "test_task"
            }
          ],
          "Extension": {
            "ProjectId": 234,
            "EnvType": "Dev",
            "ViewCount": 0,
            "ReadCount": 0,
            "FavorCount": 0
          }
        }
      }
    ]
  }
}

Error codes

See Error Codes for a complete list.

Release notes

See Release Notes for a complete list.