Fault case | troubleshooting process of tokudb engine error in master-slave replication environment

Welcome to the MySQL technical articles shared by the great SQL community. If you have any questions or want to learn, you can leave a message in the comment area below. After seeing it, you will answer itThe original content of GreatSQL community cannot be used without authorization. Please contact Xiaobian and indicate the source for reprint. ...

Added by ferozsho on Thu, 23 Dec 2021 14:13:42 +0200

Championship winner LeetCode Plus member exclusive question [detailed analysis] MySQL

Hello, I'm Lao Wu. You can also call me classmate Wu. Younger friends can also call me senior brother Wu. Welcome to the world of data analysis with me and learn together! Interested friends can pay attention to me Data analysis column , there are many high-quality articles to share with you. In addition, you are also welcome to pay attention ...

Added by danjar on Thu, 23 Dec 2021 00:02:58 +0200

vagrant creates a virtual machine for vmbox and installs mysql and redis for docker

1, Install vmbox and vagrant 1. Download address Vagrant: https://releases.hashicorp.com/vagrant/2.2.5/vagrant_2.2.5_x86_64.msi ==VirtualBox: == https://download.virtualbox.org/virtualbox/6.0.10/VirtualBox-6.0.10-132072-Win.exe Remember to turn on cpu virtualization 2. vagrant initializes the virtual machine CUHK mirror station, such as: ...

Added by crashmaster on Wed, 22 Dec 2021 22:39:24 +0200

Mybatis source code - execution process of Executor

prefacestay Mybatis source code - SqlSession access It has been known in the article that when obtaining SqlSession in Mybatis, the Executor will be created and stored in SqlSession. The dynamic proxy object of the mapping interface can be obtained through SqlSession, and the generation of dynamic proxy object can be referred to Mybatis source ...

Added by Jas on Wed, 22 Dec 2021 21:01:38 +0200

JDBC core technology

JDBC core technology JDBC overview Data persistence Persistence: save data to a power down storage device for later use. In most cases, especially for enterprise applications, data persistence means saving the data in memory to the hard disk for "solidification", and the implementation process of persistence is mostly complete ...

Added by spectacell on Wed, 22 Dec 2021 14:22:18 +0200

Five ways to connect to a database

Tip: After the article is written, the catalog can be generated automatically, how to generate the help document to the right JDBC: Five ways to get a database connection Before we can get a database connection, we need to do some preparatory work: Import database connection related database drivers (also known as third-party api) into pro ...

Added by robogenus on Tue, 21 Dec 2021 18:38:28 +0200

Experience from a slow UPDATE SQL optimization

Recently, there was a problem with the online ETL data archiving SQL. An UPDATE SQL has not run for two days: update t_order_record set archive_id = '420a7fe7-4767-45e8-a5f5-72280c192faa', update_time = update_time where order_id in (select order_id from t_retailer_order_record force index (idx_archive_id) where archive_id = '420a7fe7-4767-45e ...

Added by Jim from Oakland on Tue, 21 Dec 2021 18:10:28 +0200

Use Go to easily complete a SAGA distributed transaction, nanny level tutorial

Inter bank transfer business is A typical distributed transaction scenario. Assuming that A needs inter-bank transfer to B, the data of two banks are involved. The ACID of transfer cannot be guaranteed through the local transaction of one database, but can only be solved through distributed transactions. Distributed transaction Distributed tr ...

Added by todding01 on Tue, 21 Dec 2021 14:21:24 +0200

OpenStack deployment (II. Updated keystone)

Create Keystone database Create the Keystone database on the MariaDB of the controller: mysql -uroot -p123456 # -u root specifies that the user logging in to mariaDB is root #-P123456 the password for the root user to log in to maraiDB is "123456" Create Keystone database: CREATE DATABASE keystone; Create keystone database ...

Added by Rippie on Mon, 20 Dec 2021 10:43:53 +0200

Common database operations

Learning notes on common database operations 1, How to create a new table Here is a table for creating user2: CREATE TABLE if NOT EXISTS user2( username VARCHAR(50) not NULL, password VARCHAR(50) NOT NULL, realname VARCHAR(50), phone VARCHAR(50), userid int AUTO_INCREMENT, PRIMARY key(userid) )ENGINE=InnoDB DEFAULT CHARSET=utf8; Ins ...

Added by msarefin on Mon, 20 Dec 2021 07:01:38 +0200