Hey, I am able to work the ET in ETL pipeline, tap...
# getting-started
p
Hey, I am able to work the ET in ETL pipeline, tap-postgres and target-jsonl, however the pipeline is copying all the tables in postgres db to json, how can i limit it to a single table? I added the dbt but can't figure out which file to edit to put in sql entries and the UI does not seem to help with that cos I can add pipelines but does not detect the extractor even though it is listed, can anyone help ?
e
Hi @prateek_gupta! You'd use
select
or
select_filter
in meltano.yml for that: https://meltano.com/docs/integration.html#extractor-catalog-generation. Something like
Copy code
- tap-postgres
  select:
    - "public-my_table.*"