【Oracle 12c】最新CUUG OCP-071考试题库(60题)

云博小周宇 云博小周宇 数据库 1年前 (2024-05-05) 45 0
60、(16-10) choose the best answer: Evaluate the following SQL commands:SQL>CREATE SEQUENCE ord_seqINCREMENT BY 10START ...

[转][Windbg] Windows Memory Analysis Checklist

云博小周宇 云博小周宇 数据库 1年前 (2024-05-05) 41 0
http://www.dumpanalysis.org/windows-memory-analysis-checklistGeneral:Symbol servers (.symfix)Internal database(s) searchGo...

Jmeter(十四)取样器之JDBC Request

云博小周宇 云博小周宇 数据库 1年前 (2024-05-05) 43 0
在接口测试中,需要与数据库进行交互,这时候需要用到JDBC Request取样器。JDBC Request可以向数据库发送一个请求(sql语句),一般它...

proxysql 系列 ~ 高可用架构

云博小周宇 云博小周宇 数据库 1年前 (2024-05-05) 62 0
一 整体架构二 proxysql层    proxysql+keepalived对外提供vip    1  这里有一点要注意,虽然keepalived有脑裂...

【Oracle 12c】最新CUUG OCP-071考试题库(58题)

云博小周宇 云博小周宇 数据库 1年前 (2024-05-05) 42 0
58、(16-1) choose the best answer: Examine the structure of the BOORSTRANSACTIONS table:Examine the SQL statement:SQL> SE...

【Oracle 12c】最新CUUG OCP-071考试题库(59题)

云博小周宇 云博小周宇 数据库 1年前 (2024-05-05) 42 0
59、(16-8)choose two: Which two statements are true regarding the USING and ON clauses in table joins?A) The ON clause can be...

安装 MongoDB

云博小周宇 云博小周宇 数据库 1年前 (2024-05-05) 43 0
Windows 下安装 MongoDB:安装包下载地址:https://www.mongodb.com/download-center/community     &...

mysql uodate 报错 You can't specify target table '**' for update in FROM clause

云博小周宇 云博小周宇 数据库 1年前 (2024-05-05) 43 0
 You can‘t specify target table ‘sc‘ for update in FROM clause背景:把“sc”表中“叶平”老师教的课的成绩都更改为此课程的平均...

MySQL单向加密函数

云博小周宇 云博小周宇 数据库 1年前 (2024-05-05) 41 0
select encode(‘pual‘,‘zhangxueliang‘); select md5(‘zhangxueliang‘); 加密为null,不显示字段值:select ENCRYPT("...

mysql-zerofill关键字

云博小周宇 云博小周宇 数据库 1年前 (2024-05-05) 46 0
zerofill位数填充mysql> create table shop( -> article int(4) unsigned zerofill default ‘0000‘ not null, -> d...

【Oracle 12c】最新CUUG OCP-071考试题库(57题)

云博小周宇 云博小周宇 数据库 1年前 (2024-05-05) 54 0
57、(14-17) choose two: Examine the structure of the DEPARTMENTS tableYou execute the following command:SQL> ALTER TABLE ...

sqlserver 导入excel

云博小周宇 云博小周宇 数据库 1年前 (2024-05-05) 44 0
安装完office2013和sqlserver2017时,不知道是盗版问题还是啥 原因, 在sqlserver导入excel时,报错。在把Excel导入SQL serv...

MongoDB分片搭建

云博小周宇 云博小周宇 数据库 1年前 (2024-05-05) 45 0
MongoDB安装安装:参考我前一篇博客:MongoDB安装。ubuntu18.04中MongoDB3.6.3相关说明 mongodb默认服务名为: mongod ...

关于MySQL中的varchar类型的研究

云博小周宇 云博小周宇 数据库 1年前 (2024-05-05) 43 0
很多人讲MySQL中varchar类型的数据大小应该设置为偶数,因为一个中文占用两个字节。今天我们来测试一下varchar大小是字符还是字节,使用...

CentOS7 安装 MySQL 5.7

云博小周宇 云博小周宇 数据库 1年前 (2024-05-05) 41 0
wget https://dev.mysql.com/get/Downloads/MySQL-5.7/mysql-5.7.25-linux-glibc2.12-x86_64.tar.gzyum -y install libaiotar -zxf ...

MySQL查询(未完结)

云博小周宇 云博小周宇 数据库 1年前 (2024-05-05) 43 0
MySql查询单表查询:查询所有字段SELECT * FROM 表名; '*' 代表所有字段查询指定字段SELECT 字段名1, 字段名2 FROM 表名;按...

MySQL最终任务

云博小周宇 云博小周宇 数据库 1年前 (2024-05-05) 41 0
MySQL任务就要完成了  任务一  sql代码SELECT D.Name Department,E1.Name Name,SalaryFROM employe...

MySQL事物

云博小周宇 云博小周宇 数据库 1年前 (2024-05-05) 44 0
mysql事务的操作 (1) 开启事务 start transaction; (2) 执行SQL语句 修改、查询、删除等都可以。最好是修改或者删除,这样可以看到数...

MySQL CAST 关键字的使用

云博小周宇 云博小周宇 数据库 1年前 (2024-05-05) 44 0
CAST 关键字的语法为:CAST(字段名 as 要转换的类型) #其中,可以转换的类型为: #CHAR(字符) #DATE(日期) #DATETIME(日期和时间...