下载163的yum源到本地wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.163.com/.help/CentOS7-Base-163.repo清除缓存yum clean all生成缓存yum makecache ...
分类:
其他好文 时间:
2020-03-03 00:49:13
阅读次数:
62
-- 分期值到累计值代码示例1with temp00 as (select '2020-01-01' date1,1 num1union all select '2020-01-02' adate1,2 num1 union all select '2020-01-03' date1,3 num1u ...
分类:
其他好文 时间:
2020-03-03 00:47:21
阅读次数:
80
select * from user_tab_comments;--查询本用户下的表select * from all_tables where owner='KAVINS';--查询某个用户下的表SELECT * FROM all_triggers WHERE table_owner = 'KAV ...
分类:
数据库 时间:
2020-03-02 19:07:46
阅读次数:
68
查看多核CPU命令 mpstat -P ALL 和 sar -P ALL 说明:sar -P ALL > aaa.txt 重定向输出内容到文件 aaa.txt top命令 经常用来监控linux的系统状况,比如cpu、内存的使用,程序员基本都知道这个命令,但比较奇怪的是能用好它的人却很少,例如top ...
分类:
系统相关 时间:
2020-03-02 18:55:13
阅读次数:
76
  关系模型 由关系数据结构、关系操作集合和关系完整性约束三部分组成。 关系模型的数据结构非常简单:一张扁平的 二维表 。 元组: 二维表中的具有相同数据类型的某一行 属性: 二维表中的具有相同数据类型的某一列 笛卡尔积 (Cartesian product):又称直积,分别用 ...
分类:
数据库 时间:
2020-03-01 19:41:27
阅读次数:
68
clear all; close all; clc; addpath('../data'); addpath('../util'); load mnist_uint8; train_x = double(reshape(train_x',28,28,60000))/255; test_x = dou ...
分类:
其他好文 时间:
2020-03-01 14:51:27
阅读次数:
82
Array LeetCode Given an integer array of size n, find all elements that appear more than ? n/3 ? times. The algorithm should run in linear time and i.... ...
分类:
其他好文 时间:
2020-03-01 14:18:51
阅读次数:
71