按类别查询搜索结果
关于关键词 的检测结果,共 1385
chengxiaopeng | 2024-03-16 15:03:00 | 阅读() | 评论()
点击(此处)折叠或打开##创建系统序列表CREATE TABLE sys_sequence(  seq_id varchar(50) not null comment '序列id',  seq_name varchar(100) not null comment '序列名称',  seq_head var...【阅读全文】
天翼云开发者社区 | 2023-11-06 16:59:47 | 阅读(2180) | 评论(0)
一种Mysql和Mongodb数据同步到Elasticsearch的实现办法和系统【阅读全文】
unix_5359 | 2023-07-20 17:19:49 | 阅读(170) | 评论(0)
PostgreSQL从小白到专家,是从入门逐渐能力提升的一个系列教程,内容包括对PG基础的认知、包括安装使用、包括角色权限、包括维护管理、、等内容,希望对热爱PG、学习PG的同学们有帮助,欢迎持续关注CUUG PG技术大讲堂。内容1 : 缓冲区概述内容3 : 缓冲区管理器锁内容5 : 环形缓冲区· 缓冲区结构...【阅读全文】
mfc42d | 2021-11-18 17:39:53 | 阅读(820) | 评论(0)
CREATE USER 'jirauser' IDENTIFIED BY 'jirauser';CREATE DATABASE jiradb CHARACTER SET utf8mb4 COLLATE utf8mb4_bin;grant all on jiradb.* to 'jirauser'@’%' identified by 'jirauser';CREATE USER 'confluence' IDENTIFIED BY 'whsir'; create database confluence character set utf8 collate utf8_bi...【阅读全文】
mfc42d | 2021-10-28 17:41:18 | 阅读(2690) | 评论(0)
泰山服务器openEuler安装mysql 8的yum源,如果安装5.7.x,必须手工编译1 添加mysql用户groupadd mysqluseradd -r -g mysql mysql2 配置openEuler源点击(此处)折叠或打开wget -O /etc/yum.repos.d/openEulerOS.repo httpsmirrors.huaweicloud.com/repository/conf/openeuler_aarch64.repo...【阅读全文】
unix_5359 | 2021-09-09 10:49:52 | 阅读(230) | 评论(0)
8月28日下午14:00-17:00,PostgreSQL管理员中级认证PGCP考试圆满结束。近三个小时考试全程监控,三个维度(知识、操作、实践)方向考察,然后提交工业和信息化部人才交流中心审核,颁发证书。PostgreSQL 管理员中级 资格认证(线上)考试-考生须知一、考试目标及对象由工业和信息化部人才交流中心举办此次...【阅读全文】
【Mysql/postgreSQL】 来自产的mysql 第一单
brjl | 2021-06-29 17:14:11 | 阅读(8480) | 评论(0)
CloudQuery | 2021-06-15 16:54:27 | 阅读(820) | 评论(0)
大数据是工业社会的「自由」资源,谁掌握了数据,谁就掌握了主动权。随着企业数字化转型的浪潮,数据更是成为了金融行业的核心资产和创新要素。而证券行业作为国家金融活动的重要入口,汇聚了大量的金融数据。其数据库作为公司核心数据库系统,存储着大量敏感重要数据信息,其安全性关系着整个交易系统的安全运转。这...【阅读全文】
unix_5359 | 2021-01-20 15:43:52 | 阅读(1190) | 评论(0)
Choose the best answer.You have installed the 8 build of MySQL Shell.mysqlsh --uri root@localhost:3306 -- util check-for-server-upgradeA) It documents any problems with your 5.7 tables to make them ready to upgrade to 8.C) It fixes any problems with your 5.7 tables to make them rea...【阅读全文】
unix_5359 | 2021-01-20 14:57:32 | 阅读(1030) | 评论(0)
Mysql 8.0 OCP认证考试原题题库整理(CUUG内部资料)-第11题Choose the best answer.You have upgraded the MySQL binaries from 5.7.28 to 8.0.18 by using an in-place upgrade.Examine the message sequence generated during the first start of MySQL 8.0.18:Which step or set of steps will r...【阅读全文】
unix_5359 | 2021-01-18 10:32:23 | 阅读(1040) | 评论(0)
Choose the best answer.mysqlsh> dba.createCluster( 'cluster1' , {memberWeight:35})mysqlsh> mycluster.addInstance ( 'ic@ic2' , {memberWeight:25})Now examine this configuration setting, which is the same on all nodes:Which statement is true if primary node ic1 fails?B) Node ic3 b...【阅读全文】
unix_5359 | 2021-01-18 10:07:04 | 阅读(990) | 评论(0)
Choose two.A) It creates logical backups.C) It can perform hot or warm backups.E) It supports restoring to a remote MySQL system.【阅读全文】
starb6 | 2020-12-10 14:19:04 | 阅读(3490) | 评论(0)
sh-3.2# mysql -u root -psh: mysql: command not found: sh-3.2# cd ~  //进入根目录sh-3.2# pwd/var/rootsh-3.2# ls -a .bash*。//看一看.bash_file文件在不在。不在就建一个。.bash_history.bash_profilesh-3.2# more .bash_profilePATH=$PATH:/usr...【阅读全文】
unix_5359 | 2020-12-09 17:05:59 | 阅读(1350) | 评论(0)
4、Choose two.Examine these commands that you executed and the results:WHERE USERHOST = 'fwuser@localhost' ;    -------------mysql> SELECT RULE FROM INFORMATION_SCHEMA.MYSQL_FIREWALL_WHITELISTmysql> CALL mysql.sp_set_firewall_mode('fwuser@localhost' , 'RESET') ;...【阅读全文】
unix_5359 | 2020-12-09 16:41:30 | 阅读(1600) | 评论(0)
Examine this statement, which executes successfully:You want to improve the performance of this query:FROM world.cityWhich change enables the query to succeed while accessing fewer rows?B) ALTER TABLE world.city ADD SPATIAL INDEX (Name) ;D) ALTER TABLE world.city ADD FULLTEXT I...【阅读全文】
【Mysql/postgreSQL】 InnoDB 事务锁分析
vivo互联网技术 | 2020-02-10 10:53:48 | 阅读(1410) | 评论(0)
本文以 MySQL 数据库InnoDB引擎为例,为大家分析InnoDB数据库引擎对默认的隔离级别可重复读(RR)的具体实现。【阅读全文】
wxg15974 | 2019-09-24 16:19:47 | 阅读(0) | 评论(0)
PostgreSQL 单表aicsp_session_history过大,改分区表: 1、创建分区表 select create_range_partitions('aicsp_session_history'::regclass, 'created_time', '2018-08-01 00:00:00'::timestamp, interval '1 mont...【阅读全文】
wxg15974 | 2019-09-23 16:09:43 | 阅读(0) | 评论(0)
追踪慢SQL处理慢SQLRDS for PostgreSQL/PPAS使用过程中,可能会遇到CPU使用率过高甚至达到100%的情况。本文将介绍造成该状况的常见原因以及解决方法,并通过CPU使用率为100%的典型场景,来分析引起该状况的原因及其相应的解决方案。...【阅读全文】
【Mysql/postgreSQL】 mysql8.0认方式修改
hxl | 2019-09-23 15:39:30 | 阅读(0) | 评论(0)
使用xtrabackup备份mysql8.0的时候报如下错误:[root@localhost bin]# ./innobackupex --defaults-file=/opt/mha/mysql8/conf/my.cnf --user=root --password=mysql -P13306 --socket=/opt/mha/mysql8/mysql.sock /opt/mha/xbackup190923 15:27:03 innobackupex: Starting the backup operationIMPORTANT: Please chec...【阅读全文】
wxg15974 | 2019-09-11 10:05:28 | 阅读(0) | 评论(0)
日期操作 1. 操作当前日期和时间1234oracle...【阅读全文】