> ## Documentation Index
> Fetch the complete documentation index at: https://private-7c7dfe99-postgresql-tls-support.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. パイプを[一時停止](/ja/integrations/clickpipes/mysql/pause-and-resume)します。
2. Edit Table settings をクリックします。
3. 対象のテーブルを探します。検索バーで検索できます。
4. チェックボックスをクリックしてテーブルを選択します。

<br />

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

5. update をクリックします。
6. 更新が成功すると、パイプのステータスはこの順に `Setup`、`Snapshot`、`Running` になります。テーブルの初期ロードは **Tables** タブで確認できます。

<Info>
  既存のテーブルに対する CDC は、新しいテーブルのスナップショット完了後に自動的に再開されます。
</Info>
