It should be possible, to dump the whole transformation process as SQL statement dump with the correct dialect for the receiving database management system. So sql for postgresql differs from mysql. The result should be a sql file that can be inserted to the target dbms on any system.
Maybe we introduce a "virtual" or "dump" connection type which has just the database type as configuration value and this dumps the whole thing as one file right in the current workdir.
This is a way to work within multi-stage environments, there the source and the target connection will not get connected at any time. So we can transfer the file dump.
We could add an optional way to zip the dump file and protect it with a password. then this password can be configured by the connection data. like the password for the database user access.
Because the size is big, we should always zip the dump file.
It should be possible, to dump the whole transformation process as SQL statement dump with the correct dialect for the receiving database management system. So sql for postgresql differs from mysql. The result should be a sql file that can be inserted to the target dbms on any system.
Maybe we introduce a "virtual" or "dump" connection type which has just the database type as configuration value and this dumps the whole thing as one file right in the current workdir.
This is a way to work within multi-stage environments, there the source and the target connection will not get connected at any time. So we can transfer the file dump.
We could add an optional way to zip the dump file and protect it with a password. then this password can be configured by the connection data. like the password for the database user access.
Because the size is big, we should always zip the dump file.