MySQL Databases - strona 26

note /search

Handling MySQL Recovery with ZFS-opracowanie

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

Handling MySQL Recovery with ZFS When using ZFS replication to provide a constant copy of your data, ensure that you can recover your tables, either manually or automatically, in the event of a failure of the original system. In the event of a ...

Handling of safe and unsafe statements-opracowanie

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

Handling of safe and unsafe statements. A statement is treated differently depending on whether the statement is considered safe, and with respect to the binary logging format (that is, the current value of binlog_format [2047]). • No distinction is made in the treatment of safe and unsafe statem...

How Servers Evaluate Replication Filtering Rules-opracowanie

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

How Servers Evaluate Replication Filtering Rules If a master server does not write a statement to its binary log, the statement is not replicated. If the server does log the statement, the statement is sent to all slaves and each slave determines whether to execute it or ignore it. On the master...

How to Create FEDERATED Tables-opracowanie

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

How to Create FEDERATED Tables To create a FEDERATED table you should follow these steps: 1. Create the table on the remote server. Alternatively, make a note of the table definition of an existing table, perhaps using the SHOW CREATE TABLE state...

How to Report Replication Bugs or Problems-opracowanie

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

How to Report Replication Bugs or Problems When you have determined that there is no user error involved, and replication still either does not work at all or is unstable, it is time to send us a bug report. We need to obtain as much information as possible from you to be able to track down the b...

How to Set Up Replication-opracowanie

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

How to Set Up Replication This section describes how to set up complete replication of a MySQL server. There are a number of different methods for setting up replication, and the exact method to use depends on how you are setting up replication, and whether you already have data within your maste...

HTTPS-opracowanie

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

HTTPS. Remote communication between the Web browser front end and the back end is not encrypted by default, which means that information such as the user's SSH password is transmitted in clear text that is readable to anyone. For communication from a remote client to be encrypted, the back end mu...

Improving Replication Performance-opracowanie

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

Improving Replication Performance As the number of slaves connecting to a master increases, the load, although minimal, also increases, as each slave uses a client connection to the master. Also, as each slave must receive a full copy of the...

Increment-opracowanie

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

Increment/Decrement: incr, decr The increment and decrement commands change the value of a key within the server without performing a separate get/set sequence. The operations assume that the currently stored value is a 64-bit integer. If the stored value is not a 64-bit integer, then the value i...

Indexes-opracowanie

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

Indexes The MEMORY storage engine supports both HASH and BTREE indexes. You can specify one or the other for a given index by adding a USING clause as shown here: CREATE TABLE lookup (id INT, INDEX USING HASH (id)) ENGINE = MEMORY; CREATE TABL...