blob: 403b34ae2b42c14028ece2bf91f603f446c8191b (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#########################################
# Author: Serge Kozlov skozlov@mysql.com
# Date: 07/10/2006
# Purpose: Showing all databases started from "test_rpl"
# Requirements:
#########################################
SHOW DATABASES LIKE 'test_rpl%';
sync_slave_with_master;
SHOW DATABASES LIKE 'test_rpl%';
connection master;
|