A Restore Record of OpenProject

A Restore Record of OpenProject There are problems in the use of OpenProject. The function in a task can not be used. After negotiation, users are ready to revert to the historical version. I. Prerequisites: OpenProject has backup files. OpenProject has its own backup command (open project run backup), and the backup files are located in the ...

Posted by holowugz on Wed, 28 Aug 2019 17:20:39 +0200

Oracle Advanced Learning

Oracle Advanced Learning Paging 1,rowid rowid, which is generated and unchanged when creating records, is the unique identifier of physical location, pointing directly to the storage location on the hardware. ID is the only logical identifie ...

Posted by FraXTC on Wed, 28 Aug 2019 15:06:48 +0200

Technological Sharing | MySQL deletion does not run away (recommended collection)

Author: Hong Bin Does every DBA have experience of deleting libraries? What if you delete the library without backup? What happens when the service cannot be started after the backup recovery? What if table definition corrupted data cannot be read? I once met a startup Internet company. Because of the irregular backup and recovery operation of ...

Posted by Morbius on Wed, 28 Aug 2019 11:24:37 +0200

jdbc transaction isolation level

1. Transaction isolation level 1.1 transaction-induced concurrency problems When multiple transactions run concurrently, if multiple transactions operate on the same data in the database at the same time, it is easy to cause concurrency problems. ...

Posted by bad_gui on Tue, 27 Aug 2019 10:20:43 +0200

MYSQL Storage Directory and Standard Database

Introduce the storage directory of MYSQL I. Location of Mysql Data Storage by Command $ mysql -u root -p Enter password: Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 10 Server version: 8.0.12 MySQL Communi ...

Posted by fxmzb123 on Tue, 27 Aug 2019 07:26:31 +0200

SQL form query

SQL form query I. Grammar of Single Table Query select List 1,List 2... from Table name where condition group by field having screen order by field limit Limited number of bars 2. Priority of keyword execution from where group by having select distinct order by limit 1. Find ...

Posted by lilleman on Sat, 24 Aug 2019 06:46:20 +0200

oracle multi-table Association query and sub-query

I. Multi-table Association Query Example: SQL> create table student1 ( sid varchar(3), sname varchar(6), sage number(3)); Table created. SQL> create table course1 ( sid varchar(3), cname varchar(8), cno number(3)); Table created. student1 table SQL> select * from student1; SID SNAME SAGE --- ------ ...

Posted by jaydeesmalls on Fri, 23 Aug 2019 10:08:23 +0200

MySQL index optimization analysis 3-single table query optimization

MySQL Index Optimizing Analysis 3-Single Table Query for SQL Query Optimizing 1. Data preparation 1.1 Formulation 1.2 Setting parameter log_bin_trust_function_creators 1.3 Create SQL functions to ensure that each data is different 1.4 Create SQL ...

Posted by ezekiel on Thu, 22 Aug 2019 10:49:08 +0200

Jushan Learning Notes | SequoiaDB MySQL Import and Export Tool Using Actual Warfare

This article is from community users. Thank you for your technology sharing. Brief Introduction of Jushan Database Architecture Jushan database, as a distributed database, is a computing and storage separation architecture, which consists of database instance layer and storage engine layer. Storage engine layer is responsible for database core ...

Posted by lachhekumar on Thu, 22 Aug 2019 06:13:36 +0200

PostgreSQL execution plan

Links to the original text: https://blog.csdn.net/JAVA528416037/article/details/91998019 Reproduced from: https://blog.csdn.net/JAVA528416037/article/details/91998019 brief introduction PostgreSQL is "the most advanced open source ...

Posted by cigardude on Tue, 20 Aug 2019 11:56:18 +0200