Hi every one . I need ur help. I have a target Pos...
# plugins-general
m
Hi every one . I need ur help. I have a target Postgres loader and I have plan to truncate my table in Postgres every time when I run pipeline before loading. what is the best solution for this one.
t
Does the --full-refresh option do what you need?
m
you mean replication= full table ?
t
That could work too - it depends on whether you want to reload just that one table or all tables. replication-method=FULL_TABLE will reload the whole table for that one table.
meltano elt --full-refresh tap target
will reload all tables.