Precautions for Kingbase database configuration
Usage specification
It is strongly recommended that table names and field names be in lowercase or uppercase, and the default case sensitivity of NPC Jincang databaseCreating functions and stored procedures can be created using Oracle syntax, which is compatible with Oracle syntax.
Avoid using keywords to create tables, views, functions, etc ...
Added by deerly on Thu, 13 Jan 2022 22:00:04 +0200
[personal summary for SQL 2008 R2]
preface
This semester, we have a course of database principle and application, which is very difficult at the beginning, mainly because we didn't clarify the relationship between mathematical logic and database syntax in the process of SQL learning. Today, I would like to summarize my learning about SQL. I only briefly introduce the implem ...
Added by pas07920 on Thu, 13 Jan 2022 19:34:39 +0200
Centos7 completely uninstalls MySQL & installs & starts
Centos7 completely uninstalls MySQL & installs & starts
Uninstall section
1. See what mysql has installed
rpm -qa |grep -i mysql
2. Start the uninstallation, and execute the installed XXX in sequence:
yum remove XXX
3. Check to see if the uninstall is complete
rpm -qa |grep -i mysql
4. Find mysql related directory
find / -na ...
Added by mitjakac on Thu, 13 Jan 2022 18:59:55 +0200
The difference between GBase 8s database primary key constraint, unique constraint and unique index
PRIMARY KEY constraint
Primary key is used to uniquely identify each record in a table. You can define one or more columns as primary keys. There can only be one primary key on a table;It is not recommended to update the primary key;No two rows on the primary key column have the same value (i.e. duplicate value), and NULL (NULL) is not allowed ...
Added by Jaxeed on Thu, 13 Jan 2022 14:45:40 +0200
Apache Druid installation and deployment manual
An Apache Druid architecture
1. Coordinator
Monitor historical processing, and be responsible for allocating segments to the specified service to ensure that historical data is self balanced
2. Overlord
Monitor the MiddleManager to process and control data loading into the druid cluster; Responsible for the ingestion tasks assigned to the M ...
Added by NathanLedet on Thu, 13 Jan 2022 08:44:49 +0200
Dameng 8 parameter management
This paper mainly introduces the classification, viewing and modification of parameters in Dameng database. The main contents are shown in the figure:
In Dameng database, its performance can also be maintained through a series of parameters. In the maintenance process, it is very important to master the maintenance of parameters.
Parameter t ...
Added by dtyson2000 on Wed, 12 Jan 2022 21:10:22 +0200
Framework technology -- Spring ending
Spring
Javaweb —Spring
Spring closeout - transaction, web
The key to integrating mybatis in Spring is the three objects: Datasource object, SqlSessionFactory object and dao object created by mappercannerconfig - all are completed in the configuration file. druid does not need driver information
Spring transaction
What is a tra ...
Added by Ashoar on Wed, 12 Jan 2022 20:33:43 +0200
Constraints in SQL
What are constraints?
In order to ensure the integrity (accuracy and correctness) of the data in the table, some restrictions are added to the table. It is a basic rule of table design in database. Using constraints can make data more accurate and reduce redundant data (dirty data).
Database integrity constraints are divided into the followin ...
Added by JPark on Wed, 12 Jan 2022 13:30:45 +0200
mysql pxc highly available single host multi host deployment
mysql pxc high availability
1, pxc introduction
PXC (Percona XtraDB Cluster) is an open source MySQL high availability solution. He integrates Percona Server and XtraBackup with the Galera library for synchronous multi master replication. The high availability solutions based on Galera mainly include MariaDB Galera Cluster and Percona Xtra ...
Added by wholetthe15 on Wed, 12 Jan 2022 10:39:34 +0200
Six stage big data -- day05 -- database creation and database table creation / hive query method / hive FAQ
----Then day04 notes continue editing-----
3.2 external table:
Description of external table:
Because the external table loads the data of other hdfs paths into the table, the hive table will think that it does not completely monopolize the data. Therefore, when deleting the hive table, the data is still stored in hdfs and will not be delete ...
Added by ramjai on Tue, 11 Jan 2022 18:22:09 +0200