代码搜索:Replication
找到约 424 项符合「Replication」的源代码
代码结果 424
www.eeworm.com/read/358128/3004466
test rpl_insert_ignore.test
# Testcase for BUG#6287 "Slave skips auto_increment values in Replication with InnoDB"
# The bug was that if on master, INSERT IGNORE ignored some
# rows, and the table was InnoDB with auto_inc column
www.eeworm.com/read/135872/13890760
sql diskrent (diskrent).sql
-- Enabling the replication database
use master
GO
exec sp_replicationdboption @dbname = N'diskrent', @optname = N'publish', @value = N'true'
GO
use [diskrent]
GO
-- Adding the transactio
www.eeworm.com/read/323119/13353773
test rpl_trigger.test
#
# Test of triggers with replication
# Adding statement include due to Bug 12574
# TODO: Remove statement include once 12574 is patched
--source include/have_binlog_format_statement.inc
source inclu
www.eeworm.com/read/323119/13354322
test rpl_drop_db.test
# test case for BUG#4680 -- if there are extra files in the db directory
# dropping the db on the master causes replication problems
-- source include/master-slave.inc
connection master;
--disable_w
www.eeworm.com/read/398634/2375728
test rpl_drop_db.test
# test case for BUG#4680 -- if there are extra files in the db directory
# dropping the db on the master causes replication problems
-- source include/master-slave.inc
connection master;
--disable_w
www.eeworm.com/read/358128/3005084
test rpl_drop_db.test
# test case for BUG#4680 -- if there are extra files in the db directory
# dropping the db on the master causes replication problems
-- source include/master-slave.inc
connection master;
--disable_w
www.eeworm.com/read/323119/13353576
test rpl_slave_status.test
# Test case for BUG #10780
--source include/master-slave.inc
connection master;
grant replication slave on *.* to rpl@127.0.0.1 identified by 'rpl';
connection slave;
stop slave;
change master to mast
www.eeworm.com/read/337834/12338912
x lsdctl_prot.x
%#include
struct lsdctl_setreplicate_arg {
bool enable; /* disable replication if false */
bool randomize; /* start at 0 at the same time if false */
};
/* Cf location.h */
st
www.eeworm.com/read/474814/1389426
readme
# $Id: README,v 1.1 2006/07/07 23:36:13 alanb Exp $
This is the parent directory for the replication example programs.
The example is a toy stock quote server. There are two versions of
the program
www.eeworm.com/read/176373/5338281
sql table.sql
CREATE TABLE [dbo].[SQCLUB] (
[ID] [int] IDENTITY (1, 1) NOT FOR REPLICATION NOT NULL ,
[MC] [varchar] (40) COLLATE Chinese_PRC_CI_AS NOT NULL ,
[followid] [int] NOT NULL ,
[BM] [varchar] (40) CO