Files
doris/docs/zh-CN/sql-manual/sql-reference/Show-Statements/SHOW-REPOSITORIES.md
Mingyu Chen 74a482ca7f [fix] fix docs build bug (#9293)
After this PR #9272, the `docs/build_help_zip.sh` will run failed.
This PR fix this issue.
But the help module still has some parse problem, I will fix it in next PR.

This CL mainly changes:
1. fix `docs/build_help_zip.sh` error
2. remove `sql-reference-v2` to `sql-reference`
3. modify build extension github action to run `docs/build_help_zip.sh`
2022-04-28 22:19:04 +08:00

1.6 KiB

title, language
title language
SHOW-REPOSITORIES zh-CN

SHOW-REPOSITORIES

Name

SHOW REPOSITORIES

Description

该语句用于查看当前已创建的仓库

语法:

SHOW REPOSITORIES;

说明:

  1. 各列含义如下: RepoId: 唯一的仓库ID RepoName: 仓库名称 CreateTime: 第一次创建该仓库的时间 IsReadOnly: 是否为只读仓库 Location: 仓库中用于备份数据的根目录 Broker: 依赖的 Broker ErrMsg: Doris 会定期检查仓库的连通性,如果出现问题,这里会显示错误信息

Example

  1. 查看已创建的仓库:
 SHOW REPOSITORIES;

Keywords

SHOW, REPOSITORIES

Best Practice