How to disable synchronisation for a mySQL database table

February 23, 2015   /   by Marco  / Categories :  Technology, Websites
mysql database table no replication my ini file

In a previous post, I wrote an article on how to setup database replication using mySQL. I recently had to figure out a way to exclude a database table in the replication process and this is what I had to do:

NOTE: I’m using WAMP as my website hosting software

Open up the my.ini file under in the following location:

C:\wamp\bin\mysql\mysql[version]\

mysql database table no replication

In the section [mysqld] add the following syntax:

replicate-wild-ignore-table=[databasename].[tablename]

Just replace [databasename] with the name of your database and [tablename] with the name of your database table. If you want to include several table names you can use the wildcard % e.g

test.log%

mysql database table no replication my ini file

This will disable any replication of database tables with the name log.

Once you have saved the changes make sure you restart the WAMP services.

DO YOU LIKE WHAT YOU'VE READ?
Join our subscription list and receive our content right in your mailbox. If you like to receive some Great deals our Freebies then subscribe now!

Our Sponsors

  • Follow us:

OTHER ARTICLES YOU MAY LIKE


HOW TO INSTALL NPM NODE.JS IN VISUAL STUDIO CODE

HOW TO INSTALL NPM NODE.JS IN VISUAL STUDIO CODE

When I first ventured into the world of web development, I stumbled upon Node.js and NPM. As I dig deeper, I realized these two tools were essential for building modern applications. In this section, I’ll unpack what Node.js is, why NPM is crucial, and share some common use cases that highlight the power of these […]

read more
POWERFUL REFERRAL PROGRAM TOOL

POWERFUL REFERRAL PROGRAM TOOL

Businesses of all sizes are constantly seeking new and innovative ways to grow their customer base and increase brand awareness. With the rise of social media and the reliance on word-of-mouth marketing, referral programs have become an essential tool for companies looking to expand their reach. However, managing a successful referral program can be a […]

read more

Like our Page