> ## 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.

# Adding specific tables to a ClickPipe

> Describes the steps need to add specific tables to a 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>;
};

There are scenarios where it would be useful to add specific tables to a pipe. This becomes a common necessity as your transactional or analytical workload scales.

<h2 id="add-tables-steps">
  Steps to add specific tables to a ClickPipe
</h2>

This can be done by the following steps:

1. [Pause](/integrations/clickpipes/mysql/pause-and-resume) the pipe.
2. Click on Edit Table settings.
3. Locate your table - this can be done by searching it in the search bar.
4. Select the table by clicking on the checkbox.

<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. Click update.
6. Upon successful update, the pipe will have statuses `Setup`, `Snapshot` and `Running` in that order. The table's initial load can be tracked in the **Tables** tab.

<Info>
  CDC for existing tables resumes automatically after the new table’s snapshot completes.
</Info>
