Hey :wave: Is there any way to perform a full tab...
# troubleshooting
s
Hey 👋 Is there any way to perform a full table resync using Meltano?
m
Add a parameter
--full-refresh
after
meltano run tap target
and the tap will extract the whole dataset. As I understand if both tap and target implemented with the SDK then the tap will send the
ACTIVATE_VERSION
message and target will truncate the table before inserting the new data. In case the plugins are old you need to truncate the target table manually.
s
Thank you very much!