glenn_de_munck
06/13/2022, 10:43 AMvisch
06/13/2022, 12:22 PMtap-postgres
setup to get used to it (or just go for a dev/test setup).
Yes schemas are seperated, check out the Select feature in meltano thomas_briggs
06/13/2022, 12:50 PMaaronsteers
06/13/2022, 3:53 PM<schema>-
prefix by default (which would create a collision for you) and some also have config options for you to control this behavior.
Another option, as @thomas_briggs mentioned, is to use a mapper for aliasing.glenn_de_munck
06/14/2022, 7:59 AMthomas_briggs
06/14/2022, 12:45 PMaaronsteers
06/14/2022, 4:57 PMI think I would handle this by putting each source schema into its own schema in the destination@thomas_briggs - this is what I did in a past life also. We had a SQL Server DB that had a two schemas we were selecting from and some table name collision. So, the solution we used was instead of landing them all in one job to the same "tap_financedb" schema (for example) we broke it into two jobs landed into "tap_financedb_ops" and "tap_financedb_monitoring".
glenn_de_munck
06/15/2022, 12:10 PMaaronsteers
06/15/2022, 6:57 PMaaronsteers
06/15/2022, 6:59 PM