blackdreadhead
Goto Top

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

Content-ID: 246502

Url: https://administrator.de/contentid/246502

Ausgedruckt am: 22.11.2024 um 22:11 Uhr

SlainteMhath
SlainteMhath 14.08.2014 um 15:13:19 Uhr
Goto Top
Moin,

welches OS? Welches DBMS?

geht das?
Vielleicht face-smile

lg,
Slainte
blackdreadhead
blackdreadhead 14.08.2014 um 15:31:55 Uhr
Goto Top
MariDB auf einem Windows 2012 Server
colinardo
Lösung colinardo 14.08.2014, aktualisiert am 26.08.2014 um 15:21:54 Uhr
Goto Top
Moin bdh,
ich denke Replication ist hier dein Stichwort:
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.
Grüße Uwe