heap堆的使用: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 ...
分类:
编程语言 时间:
2021-04-16 12:16:43
阅读次数:
0
一、数据字典相关 这个数据字典表可以查询数据库中所有的对象,通过where中的type列和subtype$可以做过滤,比如通过以下sql可以查询所有用户自创建的表: select * from SYS.SYSOBJECTS where subtype$ = 'UTAB';(SELECT * FROM ...
分类:
数据库 时间:
2021-04-16 12:14:18
阅读次数:
0
问题原因:逻辑卷在磁盘下,无法直接mkfs 格式化磁盘 [root@VM_0_8_centos ~]# dmsetup ls vdb1 (252:0) dmsetup remove vdb1 mkfs.xfs /dev/vdb1 ...
分类:
其他好文 时间:
2021-04-16 12:08:51
阅读次数:
0
clickhouse 在关联不上的情况会返回0值,而不是MySQL返回Null select * from (select 1 as a union all select 2 as a union all select 3 as a union all select 0 as a union all ...
分类:
数据库 时间:
2021-04-16 12:01:37
阅读次数:
0
<?xml version="1.0" encoding="UTF-8" ?> <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> <m ...
分类:
移动开发 时间:
2021-04-16 11:40:46
阅读次数:
0
1. 登录和登出数据库 登录数据库:mysql -uroot -p # 显示当前时间 select now(); 登出(退出)数据库: quit 或 exit 或 ctrl + d 2. 数据库操作的SQL语句 #1、查看所有数据库 show databases; #2、创建数据库 create d ...
分类:
数据库 时间:
2021-04-16 11:39:17
阅读次数:
0
oracle的写法与sql server不一样,老是只记得sql server的写法,记不住oracle的。 现在专门记录一下。 create table newtablenameas select * from tablename where rownum<0; 上面只复制了结构没有数据,想要有数 ...
分类:
数据库 时间:
2021-04-15 12:46:42
阅读次数:
0
# 1. 选择排序:循环找最小值,依次放在左侧 def select_sort(arr): for i in range(len(arr)-1): min_index = i for j in range(i+1, len(arr)): if arr[j] < arr[min_index]: min ...
分类:
编程语言 时间:
2021-04-15 12:18:58
阅读次数:
0
body, html{ -moz-user-select: none; /*火狐*//*选中文字时避免出现蓝色背景*/ -webkit-user-select: none; /*webkit浏览器*//*选中文字时避免出现蓝色背景*/ -ms-user-select: none; /*IE10*// ...
分类:
Web程序 时间:
2021-04-15 12:13:30
阅读次数:
0
大量的等待事件,系统缓慢,从AWR看DBtime已经满负载了,主要等待事件如下 Enq: KO - Fast Object Checkpoint 占比DBTime的45%。通过ASH查询阻塞关系,等待该事件的用户SQL都被796会话阻塞,而该用户是CKPT进程。 SYS@orcl1>select s ...
分类:
其他好文 时间:
2021-04-14 12:38:41
阅读次数:
0