MySQL Databases - strona 36

note /search

Replication and Floating Point Values-opracowanie

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

Replication and Floating Point Values With statement-based replication, values are converted from decimal to binary. Because conversions between decimal and binary representations of them may be approximate, comparisons involving floating-point values are inexact. This is true for operations that...

Replication and FLUSH-opracowanie

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

Replication and FLUSH Some forms of the FLUSH statement are not logged because they could cause problems if replicated to a slave: FLUSH LOGS, FLUSH MASTER, FLUSH SLAVE, and FLUSH TABLES WITH READ LOCK. For a syntax example, see Section 13.7.6.3, “FLUSH Syntax”. The FLUSH TABLES, ANALYZE TABLE, ...

Replication and Fractional Seconds Support-opracowanie

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

Replication and Fractional Seconds Support MySQL 5.6.4 and up permits fractional seconds for TIME, DATETIME, and TIMESTAMP values, with up to microseconds (6 digits) precision. See Section 11.3.6, “Fractional Seconds in Time Values”. There may b...

Replication and LIMIT-opracowanie

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

Replication and LIMIT Statement-based replication of LIMIT clauses in DELETE, UPDATE, and INSERT ... SELECT statements is unsafe since the order of the rows affected is not defined. (Such statements can be replicated correctly with statement-based replication only if they also contain an ORDER BY...

Replication and Master or Slave Shutdowns-opracowanie

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

Replication and Master or Slave Shutdowns It is safe to shut down a master server and restart it later. When a slave loses its connection to the master, the slave tries to reconnect immediately and retries periodically if that fails. The default ...

Replication and MEMORY Tables-opracowanie

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

Replication and MEMORY Tables When a master server shuts down and restarts, its MEMORY tables become empty. To replicate this effect to slaves, the first time that the master uses a given MEMORY table after startup, it logs an event that notifies slaves that the table must to be emptied by writin...

Replication and REPAIR TABLE-opracowanie

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

Replication and REPAIR TABLE When used on a corrupted or otherwise damaged table, it is possible for the REPAIR TABLE statement to delete rows that cannot be recovered. However, any such modifications of table data performed by this statement are...

Replication and Reserved Words-opracowanie

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

Replication and Reserved Words You can encounter problems when you attempt to replicate from an older master to a newer slave and you make use of identifiers on the master that are reserved words in the newer MySQL version running on the slave....

Replication and Server SQL Mode-opracowanie

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

Replication and Server SQL Mode Using different server SQL mode settings on the master and the slave may cause the same INSERT statements to be handled differently on the master and the slave, leading the master and slave to diverge. For best re...

Replication and System Functions-opracowanie

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

Replication and System Functions Certain functions do not replicate well under some conditions: • The USER() [1293], CURRENT_USER() [1287] (or CURRENT_USER [1287]), UUID() [1300], VERSION() [1293], and LOAD_FILE() [1201] functions are replicated without change and thus do not work reliably on th...