> ## Documentation Index
> Fetch the complete documentation index at: https://private-7c7dfe99-detect-table-modification.mintlify.site/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. [暂停](/zh/integrations/clickpipes/postgres/pause-and-resume) 该管道。
2. 点击“编辑表设置”。
3. 找到你的表——可在搜索栏中搜索。
4. 点击复选框选中该表。

<br />

<Image img="https://mintcdn.com/private-7c7dfe99-detect-table-modification/nH26ELfEvmC8yX3w/images/integrations/data-ingestion/clickpipes/postgres/add_table.webp?fit=max&auto=format&n=nH26ELfEvmC8yX3w&q=85&s=662369e93984f8db15f3e50fdbf7ce23" 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>
