mirror of
https://github.com/MariaDB/server.git
synced 2025-01-20 14:02:32 +01:00
13 lines
396 B
HTML
13 lines
396 B
HTML
#########################################
|
|
# Author: Serge Kozlov skozlov@mysql.com
|
|
# Date: 07/10/2006
|
|
# Purpose: Showing all databases started from "test_rpl"
|
|
# Requirements:
|
|
#########################################
|
|
|
|
--echo ==========MASTER==========
|
|
SHOW DATABASES LIKE 'test_rpl%';
|
|
sync_slave_with_master;
|
|
--echo ==========SLAVE===========
|
|
SHOW DATABASES LIKE 'test_rpl%';
|
|
connection master;
|