> ## 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>;
};

場合によっては、Postgres ClickPipe から特定のテーブルを除外するのが有効です。たとえば、分析ワークロードで不要なテーブルであれば、スキップすることで ClickHouse のストレージコストやレプリケーションコストを削減できます。

<div id="remove-tables-steps">
  ## 特定のテーブルを除外する手順
</div>

最初のステップは、パイプからそのテーブルを除外することです。これは次の手順で行えます。

1. パイプを[一時停止](/ja/integrations/clickpipes/postgres/pause-and-resume)します。
2. Edit Table Settings をクリックします。
3. 対象のテーブルを探します。検索バーで検索すると見つけられます。
4. 選択済みのチェックボックスをクリックして、テーブルの選択を解除します。

<br />

<Image img="https://mintcdn.com/private-7c7dfe99-detect-table-modification/nH26ELfEvmC8yX3w/images/integrations/data-ingestion/clickpipes/postgres/remove_table.webp?fit=max&auto=format&n=nH26ELfEvmC8yX3w&q=85&s=9908c23cd08ba14d082367290688faf2" border size="md" width="1075" height="699" data-path="images/integrations/data-ingestion/clickpipes/postgres/remove_table.webp" />

5. Update をクリックします。
6. 更新が正常に完了すると、**メトリクス** タブのステータスが **Running** になります。このテーブルは、この ClickPipe では今後レプリケートされません。
