[open source]. Net ORM access to Renmin Jincang database

preface Beijing Renmin Jincang Information Technology Co., Ltd. (hereinafter referred to as "Renmin Jincang") is a domestic data management software and service provider with independent intellectual property rights. Founded in 1999 by a group of experts from Renmin University of China who are the first to carry out database teaching, ...

Posted by fean0r on Thu, 28 May 2020 04:41:17 -0700

Basic principle of Chainlink Oracle

Basic principles of ChainlinkIn this paper, we will briefly introduce the basic principle of Chainlink. If we use the shortest sentence to explain what Chainlink is, we can say that Chainlink is a decentralized Oracle project, so in order to understand the working principle of Chainlink, we should first understand what is a oracle. Prophecy mac ...

Posted by jeethau on Thu, 28 May 2020 02:43:42 -0700

Mongodb backup restore common commands

Mongodb's export mongodump is used in combination with mongorestore import tool. Can be used for database backup and restore. mongodump is a utility for creating binary exports of database content. mongodump can export data from mongod or mongos instances; that is, it can export data from independent, replica set and shard cluster deployment.I ...

Posted by rmbarnes82 on Wed, 27 May 2020 06:10:35 -0700

[12c] role switching of DataGuard physical backup

In the Data Guard environment, there are two types of role switching for databases, Switchover and Failover. According to the name, the former is a normal role switching between the active and standby databases, which will not lose data; the latter is a Failover, which means that the primary database cannot continue to provide services, which m ...

Posted by frewuill on Wed, 27 May 2020 05:08:13 -0700

[12c] learn how to install Oracle Enterprise Manager Cloud Control 12c in detail

1 software environment Oracle Linux 6.9 Oracle Enterprise Manager Cloud Control 12.1.0.4 Oracle 11.2.0.3 2 software preparation 1) Download EM database template https://www.oracle.com/enterprise-manager/downloads/cloud-control-downloads.html 2) Download Oracle Enterprise Manager Cloud Control 12.1.0.4 https://www.oracle.com/enterprise- ...

Posted by jtravis on Wed, 27 May 2020 04:52:51 -0700

Design and implementation of self defined persistent layer framework

Traditional jdbc Code: package com; import java.sql.*; /** * @author liuyj * @Title: JdbcTest * @create 2020-05-27 17:31 * @ProjectName algorithm-Exercise * @Description: TODO */ public class JdbcTest { public static void main(String[] args) { Connection connection=null; PreparedStatement preparedStatement=null; ...

Posted by mraiur on Wed, 27 May 2020 04:46:12 -0700

Grafana+Prometheus monitoring Linux server performance

Use Grafana and Prometheus to monitor the performance of Linux server, mainly through node_ The exporter monitors, such as CPU, memory, disk, etc. Prometheus collects data from remote machines through HTTP protocol and stores Prometheus local timing database. Install startup node_exporterNode needs to be installed on the monitored server_ exp ...

Posted by duankr on Tue, 26 May 2020 19:20:35 -0700

Introduction to using MySQL's own tools

In MySQL, there are many powerful tools, such as mysql, mysqladmin, mysqldump, etc.1. mysql commandThe Mysql command is the most common command tool used to provide a command line interface for users to operate and manage MySQL servers.You can see how it's used in more detail through mysql --help.1) Grammar used for -e, -u, -p, -h, -P, and so ...

Posted by Spudgun on Tue, 26 May 2020 10:54:08 -0700

Oracle Query_Form Query

Previously, we detailed the changes and additions to Oracle. Today let's go on to learn more about Oracle's queries. Queries in Oracle are a big deal!!! Follow the steps of brilliant sir, move, move ~~   Small bag of knowledge Before that, let's talk about a little bit of Oracle commentary, which is very helpful for our development, oh!!! ...

Posted by boyakasha on Tue, 26 May 2020 10:43:55 -0700

Using the UUID tutorial gracefully in Laravel 7

Recently, I had to implement universal unique identifiers (UUIDs) in Laravel 7, and encountered some problems. I hope this post can help other people who are doing the same thing. Advanced reasons for using UUIDs A) They remove the ID number from your uniform resource locator, so users can't see how many specific objects your app has created. F ...

Posted by heals1ic on Tue, 26 May 2020 09:14:59 -0700