DIAGNOSTIC_ DeST (diagnostic log path)

catalogue   describe Refer to Database Reference 19C Refer to the Automatic Storage Management Administrator's Guide 19C   Refer to Database Administrator's Guide 19C Verification test   describe         The regular storage path of Oracle database instance's diagnostic logs is $ORACLE_BASE/diag/rdbms/ ...

Added by NilayKomal on Wed, 15 Sep 2021 04:20:37 +0300

Vol.2 Mouse-based Gene Set Number Database Resources

Vol.2 Mouse-based Gene Set Number Database Resources "Like the breeze running after the clouds looking at you from far to near" About Author Yifan Fu Undergraduate, BUAA, Beijing Major : BioinformaticsRecent focus : single-cell transcriptomics, metagenomics, multi-omics interactionContact : fan@buaa.edu.cn 0x00 written before Ano ...

Added by auday1982 on Sun, 12 Sep 2021 19:23:48 +0300

2021.9.9 didi Data Analysis Intern written test

1, Written examination form It may be because of the recruitment of interns, so the written test is not very formal. An hr Intern directly sent me the questions in the form of PDF after adding me to wechat. He asked to write the answers in word and send them to her in 1 hour to 1.5 hours (without giving me any excel). The PDF did not explain ...

Added by rtconner on Sun, 12 Sep 2021 05:22:52 +0300

Redis master-slave replication

Concept: copy the data from one Redis server to other Redis servers. The former is called the master node and the latter is called the slave node; Data replication is unidirectional and can only be performed from master node to slave node By default, each redis server is the master node, and a master node can have multiple slave nodes (or no s ...

Added by Ice on Sun, 12 Sep 2021 02:30:37 +0300

clickhouse preliminary cognition

1, Introduction 1.1 what is a clickhouse ClickHouse is a columnar database management system (DBMS) for on-line analysis (OLAP). In the traditional line database system, data is stored in the following order: Data in the same row is always physically stored together. Common line database systems include MySQL, Postgres and MS SQL Server. ...

Added by ycoleman on Fri, 10 Sep 2021 07:03:58 +0300

MySQL can log in without a password (in Linux)

After installing mysql, I found that you can enter MySQL without entering a password. After studying for a long time, I finally found a solution. Step 1: input in the console (modify mysqld.cnf file) sudo vim /etc/mysql/mysql.conf.d/mysqld.cnf Enter the mysqld.cnf configuration file, and then add the sentence skip grant tables in the [mysql ...

Added by jh_dempsey on Thu, 09 Sep 2021 02:29:09 +0300

Usage of MyBatis dynamic SQL tag

1.MyBatis dynamic SQL One of the powerful features of MyBatis is its dynamic SQL, that is, splicing SQL strings. If you have experience using JDBC or other similar frameworks, you can realize how painful it is to splice SQL statements according to different conditions. When splicing, make sure you don't forget the necessary spaces, and pay att ...

Added by Koobi on Tue, 07 Sep 2021 04:40:29 +0300

[dry goods, what happened to the senior Java Engineer dismissed by Tencent

END;; – generate 100w random data – it is expected to take half an hour or more. In fact, 1w messages can also be generated. The main reason is that more data can better reflect the importance of the index call create_test_data(100*10000); # Explain Explain Is to identify a SQL Whether to take the easiest way to index, we can ...

Added by sujithtomy on Tue, 07 Sep 2021 04:21:14 +0300

MySQL Database - Advanced [Advanced] SQL Statements - SQL Advanced Statements, Functions

1. SQL Advanced Statements 1, SELECT Displays all data for one or more columns in a table Syntax: SELECT "field" FROM "table name"; Example: select * from infol; select name from infol; 2,DISTINCT Do not show duplicate content Syntax: SELECT DISTINCT "field" FROM "table name"; Example: s ...

Added by markster on Mon, 06 Sep 2021 19:23:45 +0300

MySQL database addition, deletion, modification, cloning, foreign keys and other operations

catalogue 1. SQL field data type 2. View database information statement 3. SQL statement Create and delete database data tablesAdd, delete and query records to the tableModify the table name, add, modify, delete fields, and add unique constraintsView, delete and add indexes in tablesExtension function, field value self increment, etc 4. Da ...

Added by Pyro4816 on Mon, 06 Sep 2021 02:22:08 +0300