PostgreSQL data access across database instances

prefacePostgresSQL is a single example multi database. Usually, a database instance contains multiple tablespaces and databases. One tablespace can store multiple databases. In this relationship, one tablespace can contain multiple databases, but a database can only belong to one tablespace and cannot be stored across tablespaces. Table space i ...

Added by lihman on Mon, 29 Nov 2021 17:31:45 +0200

Answer #11: what is the difference between char and varchar in MySQL

Answer #11: what is the difference between char and varchar in MySQL1. Experimental scenarioGreatSQL 8.0.25 InnoDB2. Experimental test2.1 differencesparametercharvarcharIs the length variableFixed lengthLengthenstorage capacity 0 ~ 2550 ~ 65,5352.2 construction test tableCREATE TABLE vc (v VARCHAR(4), c CHAR(4));2.3 test without exceeding the s ...

Added by benphp on Mon, 29 Nov 2021 08:47:03 +0200

Go, you said you wouldn't be concurrent?

Author: lomtom Personal website: lomtom.cn Official account No. Bosio Park Your support is my biggest motivation. Go series: Go (I) basic introductionGo (II) structureGo (III) go configuration fileGo (IV) Redis operationGo (V) go doesn't know how to use Gorm?Go (VI) to teach you how to call remotelyGo (VII) you said you wouldn't be co ...

Added by skbanta on Sun, 28 Nov 2021 23:52:49 +0200

SQL training camp -- Task06: comprehensive exercises - 10 classic questions

This note is the learning content of Alibaba cloud Tianchi Longzhu plan SQL training camp. The link is: https://tianchi.aliyun.com/specials/promotion/aicampsql preface This note is the learning content of Alibaba cloud Tianchi Longzhu plan SQL training camp. The link is: https://tianchi.aliyun.com/specials/promotion/aicampsql Dataset ...

Added by deregular on Sun, 28 Nov 2021 15:28:26 +0200

Four installation and deployment methods of database

Database installation Experimental environment Redhat8.3 Method 1: use the MySQL repository to install and deploy mysql 1, Add MySQL repository Add the MySQL Yum repository to the repository list of the system. This is a one-time operation that can be performed by installing the RPM provided by mysql. Follow these steps: Go to th ...

Added by Dragoa on Sun, 28 Nov 2021 15:11:38 +0200

Flink Flow Computing Learning One

1. What is flink? Flink is a distributed open source computing framework for data stream processing and batch data processing, which supports both stream and batch applications. Because the SLAs (Service Level Agreement) provided by streaming and batching are completely different, streaming generally requires support for low latency, Exact ...

Added by ProblemHelpPlease on Sat, 27 Nov 2021 20:18:23 +0200

MySQL Classic 50 Questions (Tables, Data, Title Lists and Personal Answers)

Building tables and inserting data -- Building tables -- Student table CREATE TABLE `Student`( `s_id` VARCHAR(20), `s_name` VARCHAR(20) NOT NULL DEFAULT '', `s_birth` VARCHAR(20) NOT NULL DEFAULT '', `s_sex` VARCHAR(10) NOT NULL DEFAULT '', PRIMARY KEY(`s_id`) ); -- Class Schedule Card CREATE TABLE `Course`( `c_id` VARCHAR(20), `c_name` VARCHAR ...

Added by greenday on Sat, 27 Nov 2021 01:24:55 +0200

[ORACLE] enhancement of the for...loop loop, a new feature in version 21c

preface Continued [ORACLE] qualified expression of version 18c and its enhancement in version 21c At the end of the previous article, we talked about iterators. Because there are too many contents, they are put together with this article. In the iterator, in addition to the three iterators mentioned above (basic, index and sequence), it also ...

Added by JustFoo on Fri, 26 Nov 2021 16:02:03 +0200

scala -- process control + yield derivation + scala does not have continue or break?

1. Process control structure 1.1 general In the actual development, we have to write thousands of lines of code. The order of the code is different, and the execution results will certainly be affected. Some codes can be executed only if they meet specific conditions, and some codes need to be executed repeatedly. How to reasonably plan these ...

Added by xmanofsteel69 on Fri, 26 Nov 2021 02:52:49 +0200

Principle and Usage Summary of Caffeine local cache framework

Common cache algorithms:First in first out (FIFO) queue: first in first out. The data that enters first is eliminated first. Disadvantages: ignore the data access frequency and access times.Least recently used (LRU) : least recently used algorithm, that is, if the data has been accessed recently, the probability of being accessed in the future ...

Added by sparc-e on Thu, 25 Nov 2021 22:44:17 +0200