> ## Documentation Index
> Fetch the complete documentation index at: https://clickhouse.com/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# 向 ClickPipe 添加特定表

> 介绍向 ClickPipe 添加特定表所需的步骤。

export const Image = ({img, alt, size = "lg"}) => {
  const normalizedSize = ["sm", "md", "lg"].includes(size) ? size : "lg";
  return <div className={`ch-image-${normalizedSize}`}>
      <Frame>
        <img src={img} alt={alt} />
      </Frame>
    </div>;
};

在某些场景下，需要将特定表添加到管道中，这样会更方便。随着事务型或分析型工作负载规模的扩大，这会成为一种常见需求。

<div id="add-tables-steps">
  ## 将特定表添加到 ClickPipe 的步骤
</div>

可按以下步骤操作：

1. [暂停](/docs/zh/integrations/clickpipes/mongodb/pause-and-resume)管道。
2. 点击“编辑表设置”。
3. 找到目标表，可通过搜索栏进行搜索。
4. 点击复选框选中该表。

<br />

<Image img="https://mintcdn.com/private-7c7dfe99/dZZG_-B0EzCG8L4V/images/integrations/data-ingestion/clickpipes/postgres/add_table.webp?fit=max&auto=format&n=dZZG_-B0EzCG8L4V&q=85&s=370a6fcbe99918d56ae1aadf5fcf7ead" border size="md" width="960" height="250" data-path="images/integrations/data-ingestion/clickpipes/postgres/add_table.webp" />

5. 点击“更新”。
6. 更新成功后，管道状态将依次变为 `Setup`、`Snapshot` 和 `Running`。该表的初始加载进度可在 **Tables** 选项卡中查看。

<Info>
  新表的快照完成后，现有表的 CDC 会自动恢复。
</Info>
