Description

This command is used to view detailed information about the Table Stream, including creation time, modification time, workspace, etc.

Syntax

DESC[RIBE] TABLE STREAM ts_name;

Parameter Description

  • DESC[RIBE]: DESC and DESCRIBE can be used interchangeably, both mean to view.
  • ts_name: Specifies the name of the Table Stream to view.

Usage Example

View basic information of Table Stream

DESC TABLE STREAM event_stream;

Results:

+--------------------+-------------------------+
|     info_name      |       info_value        |
+--------------------+-------------------------+
| name               | event_stream            |
| creator            |                          |
| created_time       | 2023-11-24 21:44:07.261 |
| last_modified_time | 2023-11-24 21:44:07.265 |
| comment            |                         |
| workspace          | ql_ws                   |
| source_name        | ql_ws.public.event      |
+--------------------+-------------------------+

Precautions

  • When executing this command, please ensure that the corresponding Table Stream has been created.