本篇內(nèi)容介紹了“MySQL相關(guān)技術(shù)舉例分析”的有關(guān)知識(shí),在實(shí)際案例的操作過(guò)程中,不少人都會(huì)遇到這樣的困境,接下來(lái)就讓小編帶領(lǐng)大家學(xué)習(xí)一下如何處理這些情況吧!希望大家仔細(xì)閱讀,能夠?qū)W有所成!
我們提供的服務(wù)有:網(wǎng)站建設(shè)、成都網(wǎng)站制作、微信公眾號(hào)開(kāi)發(fā)、網(wǎng)站優(yōu)化、網(wǎng)站認(rèn)證、拉薩ssl等。為近1000家企事業(yè)單位解決了網(wǎng)站和推廣的問(wèn)題。提供周到的售前咨詢(xún)和貼心的售后服務(wù),是有科學(xué)管理、有技術(shù)的拉薩網(wǎng)站制作公司
1.復(fù)制過(guò)濾問(wèn)題:
--replicate-do-db=db_name:
USE prices;
UPDATE sales.january SET amount=amount+1000;
Statement-based replication:對(duì)于基于語(yǔ)句級(jí)的復(fù)制(或mixed級(jí)別),replicate_do_db這個(gè)參數(shù)指的是默認(rèn)的數(shù)據(jù)庫(kù),即當(dāng)前使用的數(shù)據(jù)庫(kù)(use database),在默認(rèn)數(shù)據(jù)庫(kù)下更新replicate_do_db指定的數(shù)據(jù)庫(kù),從庫(kù)不會(huì)隨之更新,會(huì)有問(wèn)題
解決:對(duì)于binlog_format=statement或mixed,只在從庫(kù)設(shè)置replicate_wild_do_table= sales.%或replicate_wild_ignore_table即可。此時(shí)可以避免跨庫(kù)更新問(wèn)題。
對(duì)于binlog_format=statement或mixed,只在從庫(kù)設(shè)置replicate_wild_do_table= quyou.%或replicate_wild_ignore_table即可。此時(shí)可以避免跨庫(kù)更新問(wèn)題。
對(duì)于binlog_format=statement或mixed,只在從庫(kù)設(shè)置replicate_wild_do_table= quyou.%或replicate_wild_ignore_table即可。此時(shí)可以避免跨庫(kù)更新問(wèn)題。
Row-based replication:不存在問(wèn)題
2.InnoDB單列索引長(zhǎng)度不能超過(guò)767bytes限制問(wèn)題
實(shí)際上聯(lián)合索引還有一個(gè)限制是3072:
By default, the index key prefix length limit is 767 byte
When the innodb_large_prefix configuration option is enabled, the index key prefix length limit is raised to 3072 bytes for InnoDB tables that use DYNAMIC or COMPRESSED row format.
The limits that apply to index key prefixes also apply to full-column index keys.
If you reduce the InnoDB page size to 8KB or 4KB by specifying the innodb_page_size option when creating the MySQL instance, the maximum length of the index key is lowered proportionally, based on the limit of 3072 bytes for a 16KB page size. That is, the maximum index key length is 1536 bytes when the page size is 8KB, and 768 bytes when the page size is 4KB.
解決:
MySQL 5.5.14及其后版本解決了最大767字節(jié)索引長(zhǎng)度的問(wèn)題,引入了innodb_large_prefix配置關(guān)鍵字。這項(xiàng)關(guān)鍵字必須配合innodb_file_format和innodb_file_per_table
innodb_large_prefix = True
innodb_file_format = Barracuda
innodb_file_per_table = True
Barracuda 在原來(lái)的基礎(chǔ)上(Antelope)新增了Dynamic和Compressed兩種行格式。
“Mysql相關(guān)技術(shù)舉例分析”的內(nèi)容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業(yè)相關(guān)的知識(shí)可以關(guān)注創(chuàng)新互聯(lián)網(wǎng)站,小編將為大家輸出更多高質(zhì)量的實(shí)用文章!
文章題目:Mysql相關(guān)技術(shù)舉例分析
本文地址:http://jinyejixie.com/article34/ppehse.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供移動(dòng)網(wǎng)站建設(shè)、電子商務(wù)、全網(wǎng)營(yíng)銷(xiāo)推廣、自適應(yīng)網(wǎng)站、網(wǎng)站維護(hù)、微信小程序
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶(hù)投稿、用戶(hù)轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來(lái)源: 創(chuàng)新互聯(lián)