centos7运行yum报如下提示: There are no enabled repos. Run "yum repolist all" to see the repos you have. To enable Red Hat Subscription Management repositorie ...
分类:
其他好文 时间:
2021-01-12 10:29:30
阅读次数:
0
https://blog.csdn.net/laizi_laizi/article/details/105437368 python中几个基本用法:namedtuple,OrderedDict,append,insert,extend laizi_laizi 2020-04-11 00:51:08 ...
分类:
移动开发 时间:
2021-01-11 11:00:22
阅读次数:
0
我们写完一个sql语句,为了让它高性能地执行,一定要explain一下,查看一下它的执行计划。 查看心法: 1.首先从查询类型type列开始查看,如果出现all关键字,那么不用继续看了,全表扫描了 2.查看key列,看是否使用了索引,null代表没有使用索引 3.查看rows列,该列代表在SQL执行 ...
分类:
数据库 时间:
2021-01-11 10:53:53
阅读次数:
0
上篇文章,简单介绍了 RedoLog 是什么,以及怎么从 Oracle Dump 二进制日志。接下来,分析下 Redo Log 二进制文件的格式,主要包括:文件头,重做日志头,DML-INSERT 操作,DDL-CREATE 操作。 Redo Log 二进制文件中,采用的是小端序字节序。 原文链接: ...
分类:
数据库 时间:
2021-01-11 10:52:25
阅读次数:
0
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%> 标题页 dfad sfdaaaaadsfaaaaaafdasfasdfaaaaadfssadsfdasfsafsadfasdf ...
分类:
其他好文 时间:
2021-01-08 11:21:31
阅读次数:
0
场景1:查询时间过长 select u.*,t.* (select sum(l.all_pl2) from TABLE_A l where 1 = 1 and l.tx_dt <= '20201223' and u.investor_id = l.investor_id) as sum_all_pl ...
分类:
数据库 时间:
2021-01-08 10:47:49
阅读次数:
0
手工解析域名:nslookup 域名Ping命令一般默认4个包Ping ipPing -n加数字加ip (发送几个包)Ping -t ip 一直pingPing -l 数字 ip 修改了包的大小Ipconfig查看ip基本信息 Ipconfig/all 查看ip详细信息 Dos attrib 可以对 ...
分类:
其他好文 时间:
2021-01-08 10:41:07
阅读次数:
0
首先mysql sql语句查询公司名称首字母排序如下: SELECT * FROM `表名` ORDER BY CONVERT (company USING gbk) Desc; django框架用orm查询 models.Contacts.objects.all().order_by('CONVE ...
分类:
编程语言 时间:
2021-01-08 10:39:34
阅读次数:
0
一、pom.xml导入依赖 <dependencies> <!-- activemq 所需要的jar 包--> <dependency> <groupId>org.apache.activemq</groupId> <artifactId>activemq-all</artifactId> <ver ...
整型提升是C语言的一种规则,由C语言的发明人丹尼斯·里奇与肯·汤普逊创设: "A character, a short integer, or an integer bit-field, all either signed or not, or an object of enumeration ty ...
分类:
编程语言 时间:
2021-01-07 12:31:44
阅读次数:
0