JobScheduler
Hi,
kennt sich jemand mit dem Jobscheduler aus?
Ich versuche eine Tabelle aus einer Datenbank in regelmäßigen Abständen in eine andere Datenbank auf einem anderen Server zu exportieren.. geht das?
Gruß bdh
kennt sich jemand mit dem Jobscheduler aus?
Ich versuche eine Tabelle aus einer Datenbank in regelmäßigen Abständen in eine andere Datenbank auf einem anderen Server zu exportieren.. geht das?
Gruß bdh
Bitte markiere auch die Kommentare, die zur Lösung des Beitrags beigetragen haben
Content-ID: 246502
Url: https://administrator.de/contentid/246502
Ausgedruckt am: 22.11.2024 um 22:11 Uhr
3 Kommentare
Neuester Kommentar
Moin bdh,
ich denke Replication ist hier dein Stichwort:
Grüße Uwe
ich denke Replication ist hier dein Stichwort:
- https://mariadb.com/kb/en/mariadb/documentation/replication-cluster-mult ...
- https://mariadb.com/kb/en/mariadb/documentation/replication-cluster-mult ...
Replication is a feature allowing the contents of one or more master servers to be mirrored on one or more slave servers.
You can exert control over which data to replicate. All databases, one or more databases, or tables within a database can all be selectively replicated.
The main mechanism used in replication is the binary log. If binary logging is enabled, all updates to the database (data manipulation and data definition) are written into the binary log as binlog events. Slaves read the binary log from each master in order to access the data to replicate.
Masters and slaves do not need to be in constant communication with each other. It's quite possible to take servers offline or disconnect from the network, and when they come back, replication will continue where it left off.