List Table Hyperlinks, Groups, and Group Members

You can list the active Table Hyperlinks, Table Hyperlink Groups, and Table Hyperlink Group members.

List Table Hyperlinks and Table Hyperlink Groups

You can list the active Table Hyperlinks that you generated on an Autonomous AI Database instance and the ADMIN user can list all active Table Hyperlinks. The listing of Table Hyperlinks includes Table Hyperlink Groups.

Run DBMS_DATA_ACCESS.LIST_ACTIVE_URLS to list the active Table Hyperlinks and Table Hyperlink Groups. For example:

DECLARE
    result CLOB;
    BEGIN
       result := DBMS_DATA_ACCESS.LIST_ACTIVE_URLS;
       dbms_output.put_line(result);
    END;
/

This example shows the following output:

[
  {
    "id" : "tCz2IRLIaDDymwOe1o105WQMGtyw4Z_0mGwfbv0ARcjI5SPkzR_YZJhxyz",
    "created_by" : "SCOTT",
    "service_name" : "LOW",
    "expiration_time" : "2025-08-12T04:41:
05.115Z",
    "access_count" : 0,
    "created" : "2025-08-11T22:41:05.141Z",
    "schema_name" : "ADMIN",
    "schema_object_name" : "TREE_DATA",
    "column_lists" :
    {
      "order_by_columns" :
      [
        "COUNTY",
        "SPECIES"
      ]
    }
  },
  {
    "id" : "5dvYnMAJw2M1VFhTNUuqKF1kTtNmerJ0xRL0hRSkZ9pzxyz",
    "created_by" : "SCOTT",
    "service_name" : "LOW",
    "expiration_time" : "2025-08-12T04:33:40.162Z",
    "access_count" : 0,
    "created" : "2025-08-11T22:33:40.182Z",
    "sql_statement" : "SELECT species, height FROM TREE_DATA"
  },
  {
    "id" : "vnns6DhPUBXyB1bzUtTOoPUcqnDcpplRo_-byHiPQFLuhTp6XeAawxyz",
    "created_by" : "SCOTT",
    "service_name" : "HIGH",
    "expiration_time" : "2025-09-04T15:36:39.355Z",
    "expiration_count" : 10,
    "access_count" : 0,
    "created" : "2025-06-06T15:36:39.377Z",
    "is_group_url" : true
  }
]

When a Table Hyperlink list entry is a Table Hyperlink Group, the “is_group_url” shows with the value true. For example:

[
  {
    "id" : "vnns6DhPUBXyB1bzUtTOoPUcqnDcpplRo_-byHiPQFLuhTabc",
    "created_by" : "SCOTT",
    "service_name" : "HIGH",
    "expiration_time" : "2025-09-04T15:36:39.355Z",
    "expiration_count" : 10,
    "access_count" : 0,
    "created" : "2025-06-06T15:36:39.377Z",
    "is_group_url" : true
  },
  {
    "id" : "g8a3fKVZDZjqKAYLOgXjEVjFcdHGAO1PbBOzGRZZrcJP5au_NAabc",
    "created_by" : "SCOTT",
    "service_name" : "LOW",
    "expiration_time" : "2025-08-12T06:12:08.449Z",
    "access_count" : 0,
    "created" : "2025-08-12T00:12:08.472Z",
    "is_group_url" : true
  }
]

Note: When the is_group_url value is true, this indicates a Table Hyperlink id is a Table Hyperlink Group.

See LIST_ACTIVE_URLS Function for more information.

List Table Hyperlink Group Members

You can list the members of a Table Hyperlink Group.

Note: To list the members of a Table Hyperlink Group you need to provide the Table Hyperlink Group id.

Run DBMS_DATA_ACCESS.LIST_MEMBERS to list Table Hyperlink Group members.

For example:

DECLARE
    status CLOB;
    BEGIN
       DBMS_DATA_ACCESS.LIST_MEMBERS(
         id => 'aGnHVyZ4vBo4_Fq2R0A2G2-y6TdUKRHeveqyGJ3_example',
         result => status);
      dbms_output.put_line(status);
    END;
/

This shows the following output:

{ "members" :
  [
    {"id" : "lVy_kJnm5MzO1EGBYBvdcaYark5waukv7V59wObq5RDS2Z2AlzEh_DmaboSNeCfR", "schema_name" : "admin", "schema_object_name" : "employee", "name" : "employee", "description" : "employee description"},
    {"id" : "8L5QWWVDB3NrGu-NLx6Q-k-1EsP6jxmjednfMxgrbVFolPipNNDbL1rIt2Ywwprc", "sql_statement" : "select * from admin.tree", "name" : "tree", "description" : "tree description"}
  ]
}

See LIST_ACTIVE_URLS Function and LIST_MEMBERS Procedure for more information.

Notes for Listing Table Hyperlinks and Table Hyperlink Groups

Provides notes for listing Table Hyperlinks and Table Hyperlink Groups.

Notes for running DBMS_DATA_ACCESS.LIST_ACTIVE_URLS: