MySQL Databases - strona 37

note /search

Replication and Temporary Tables-opracowanie

  • MySQL Databases
Pobrań: 0
Wyświetleń: 399

Replication and Temporary Tables The discussion in the following paragraphs does not apply when binlog_format=ROW [2047] because, in that case, temporary tables are not replicated; this means that there are never any temporary tables on the slave to be lost in the event of an unplanned

Replication and Time Zones-opracowanie

  • MySQL Databases
Pobrań: 0
Wyświetleń: 413

Replication and Time Zones The same system time zone should be set for both master and slave. Otherwise, statements depending on the local time on the master are not replicated properly, such as statements that use the NOW() [1240] or FROM_UNIXTIME() [1238] functions. You can set the time zone in...

Replication and Triggers-opracowanie

  • MySQL Databases
Pobrań: 0
Wyświetleń: 609

Replication and Triggers With statement-based replication, triggers executed on the master also execute on the slave. With row-based replication, triggers executed on the master do not execute on the slave. Instead, the row changes on the master resulting from trigger execution are replicated and...

Replication and TRUNCATE TABLE-opracowanie

  • MySQL Databases
Pobrań: 0
Wyświetleń: 378

Replication and TRUNCATE TABLE TRUNCATE TABLE is normally regarded as a DML statement, and so would be expected to be logged and replicated using row-based format when the binary logging mode is ROW or MIXED. However this caused issues when logging or replicating, in STATEMENT or MIXED mode, tabl...

Replication and Views-opracowanie

  • MySQL Databases
Pobrań: 0
Wyświetleń: 511

Replication and Views Views are always replicated to slaves. Views are filtered by their own name, not by the tables they refer to. This means that a view can be replicated to the slave even if the view contains a table that would normally be filtered out by replication-ignore-table rules. Care s...

Replication Compatibility Between MySQL Versions-opracowanie

  • MySQL Databases
Pobrań: 0
Wyświetleń: 399

Replication Compatibility Between MySQL Versions MySQL supports replication from one major version to the next higher major version. For example, you can replicate from a master running MySQL 4.1 to a slave running MySQL 5.0, from a master running MySQL 5.0 to a slave running MySQL 5.1, and so on...

Replication Configuration-opracowanie

  • MySQL Databases
Pobrań: 0
Wyświetleń: 497

Replication Configuration Replication between servers in MySQL is based on the binary logging mechanism. The MySQL instance operating as the master (the source of the database changes) writes updates and changes as “events” to the binary log. The information in the binary log is stored in differe...

Replication Features and Issues-opracowanie

  • MySQL Databases
Pobrań: 0
Wyświetleń: 378

Replication Features and Issues The following sections provide information about what is supported and what is not in MySQL replication, and about specific issues and situations that may occur when replicating certain statements. Statement-based replication depends on compatibility at the SQL le...

Replication Formats-opracowanie

  • MySQL Databases
Pobrań: 0
Wyświetleń: 462

Replication Formats Replication works because events written to the binary log are read from the master and then processed on the slave. The events are recorded within the binary log in different formats according to the type of event. The different replication formats used correspond to the bina...

Replication Implementation-opracowanie

  • MySQL Databases
Pobrań: 0
Wyświetleń: 385

Replication Implementation Replication is based on the master server keeping track of all changes to its databases (updates, deletes, and so on) in its binary log. The binary log serves as a written record of all events that modify database structure or content (data) from the moment the server w...