Performance optimization of Oracle

The previous life of the analytic index of performance optimization of Oracle Summary: in oracle, index is like a book's catalog, which can speed up the query speed and improve the query efficiency. In oracle, b-tree index is used to store the index. B-number index is a tree structure with branches and leaves. Index is divided into root node, ...

Posted by JukEboX on Tue, 03 Dec 2019 02:47:47 -0800

luminus web framework learning

Chapter one your first program Because I am a mac computer, I am temporarily based on my operation (clojure is not friendly to windows, jdk and maven data are too many, so I will not introduce the installation method here) First, use brew install leiningen and brew install clojure to install lein and clojure Lei is like the familiar clojure ...

Posted by suge on Mon, 02 Dec 2019 23:41:56 -0800

Add, delete, change and query of JDBC Java connection mysql

Using software: mysql, eclipse Link steps: 1. Registration driver 2. Create a connection object 3. Write sql statement 4. Execute sql statement and return a result or result set 5. Close the three connection objects (connection, statement and setresult). The closing order is (setresult -- > statement -- > setresult) I. direct connection m ...

Posted by jackread on Mon, 02 Dec 2019 16:06:59 -0800

MySQL 5.7.25 binary log configuration and introduction

The binlog log function of MySQL is used to record the updated contents (changes to the database) of MySQL database, such as the internal addition, deletion, modification and query of MySQL. The query select or show of the database will not be recorded by the binlog log log. It is mainly used for the master-slave copy and increment recovery of ...

Posted by delxy on Sun, 01 Dec 2019 22:51:48 -0800

Top 250 of data analysis films... I'm too lazy to catch it.)

Data: Link: https://pan.baidu.com/s/1knjoihbkmall6pn6e XW Extraction code: iamy ** ’’"1 top five directors with the largest number of films" ** import sqlite3 import pandas as pd#Common tools for data analysis from pyecharts import Pie#Pie chart conn=sqlite3.connect(r'D:\BaiduNetdiskDownload\navicat12 ...

Posted by jeephp on Sun, 01 Dec 2019 08:20:31 -0800

C + + connect and use MySQL database

1. C onnect MySQL database with C + + First, create a new C + + project in VS, right-click the project name, and select properties. Select platform selection Select configuration manager Choose new Select X64 from the drop-down menu. OK Select C / C + + > General - > attach the include directory, and add C:\Program Files\M ...

Posted by markl999 on Sun, 01 Dec 2019 06:18:48 -0800

Using python3 to grab pinpoint application information

Using python3 to grab pinpoint application information Pinpoint It is an APM (application performance management) tool written in Java for large distributed systems. Inspired by Dapper, Pinpoint provides a solution to help analyze the overall structure of the system and the interrelationship between its components by tracking transactions in di ...

Posted by starphp on Sun, 01 Dec 2019 04:38:45 -0800

mybatis uses plug-ins to implement table splitting

Such as the title, the comparison of sub table rules this time?? Some user related tables are divided by product dimensions, for example: user 1, user 2 (1, 2 is the product id, a new product will add a whole set of tables...). It is not appropriate to study a wave of sharing JDBC (later changed to sharing sphere), and it also has the feeling o ...

Posted by matt2012 on Sun, 01 Dec 2019 03:44:09 -0800

Count the correct rate of answers (Mysql counts comma separated characters)

According to the answer situation of the employee's answer activity, the error rate of the questions is counted. The database has the employee's answer sheet employee's question employee_question And standard answer sheet question_info , you can see that both the standard answer and the answer situation are strings separate ...

Posted by chito on Sat, 30 Nov 2019 10:53:06 -0800

CentOS 7 deploy MySQL 5.7 (master-slave replication, traditional mode and GTID)

Record (≫); 1. Copy binary files and locations; 2. Master-slave copy based on GTID: (test environment is CentOS 7.3) I. based on binary log file (traditional way) (1) working principle: 1. Master records the database operation to Binary log and sends it to Slave I/O thread; 2. Slave's I/O thread stores the received Binary log to the local Rela ...

Posted by zgkhoo on Sat, 30 Nov 2019 08:01:39 -0800