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

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

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

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

1. パイプを[一時停止](/ja/integrations/clickpipes/mongodb/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. 更新が正常に完了すると、**メトリクス** タブの status は **Running** になります。このテーブルはこの ClickPipe では以後レプリケートされなくなります。
