alter database 数据库名 set offline alter database 数据库名 modify file(name=原始数据文件名(无后缀), filename='新文件路径(带后缀)') alter database 数据库名 modify file(name=原始数据日志文 ...
分类:
数据库 时间:
2020-12-21 11:33:44
阅读次数:
0
文件的时间戳 每个文件有三个时间戳:access time 访问时间,atime,读取文件内容modify time 修改时间,mtime,改变文件内容(数据)change time 改变时间,ctime,元数据发生改变 1 [root@ydp ~]#stat date 查看文件状态 2 3 Fil ...
分类:
系统相关 时间:
2020-12-16 11:43:31
阅读次数:
4
例如:按照department_id查询employees(员工表)和departments(部门表) 的信息。 方式一(通用型):SELECT … FROM … WHERE SELECT e.last_name,e.department_id,d.department_name FROM empl ...
分类:
数据库 时间:
2020-11-30 16:13:26
阅读次数:
16
ALTER TABLE 语句 ALTER TABLE 语句用于在已有的表中添加、修改或删除列。 Oracle允许执行多种操作,但以下是主要常用的操作: 修改列的可见性 允许或不允许NULL值 缩短或扩大列的大小 更改列的默认值 修改虚拟列的表达式 修改默认值 ALTER TABLE 表名MODIFY ...
分类:
数据库 时间:
2020-11-19 12:00:27
阅读次数:
12
前言 有5个库,每个库里面的表结构一样,现在需要修改某个字段的长度,操作的时候记得要选择非业务时间段,当然也可以直接使用存储过程来搞。 步骤 主要两步,1.构造SQL 2.执行SQL 构造SQL SELECT CONCAT('alter table ',TABLE_NAME,' modify ',C ...
分类:
数据库 时间:
2020-11-01 10:20:44
阅读次数:
16
Segment Tree Beats $Q1.$给定长度为$n$的序列$A$,支持以下操作:1、区间取$\min$;2、区间查询最大值;3、区间求和。 const int N = 1000005; const int inf = 1<<30; int n, m, a[N]; #define lc ( ...
分类:
其他好文 时间:
2020-10-31 01:22:28
阅读次数:
19
MISCONF Redis is configured to save RDB snapshots, but is currently not able to persist on disk. Commands that may modify the data set are disabled. P ...
分类:
数据库 时间:
2020-10-20 16:33:15
阅读次数:
35
表字段的增、删、改、查 增:alter table 表名 add 字段名 数据类型 【位置】; 删:alter table 表名 drop 字段名; 改:alter table 表名 modify 字段 数据类型 【位置】 重命名:alter table 表名 change oldname newn ...
分类:
数据库 时间:
2020-10-19 22:25:48
阅读次数:
31
题意简述:求对于树上每个点 \(x\) ,包含它的链的并集的大小之和,也可描述成,求对于树上每个点 \(x\) ,它能够到达的点的个数之和。 不难发现,对于点 \(x\) 而言,通过树上的路径,它能够到达的点一定构成一棵树。并且这棵树上一定含有包含 \(x\) 点的 \(s_i,t_i\) 。那么也 ...
分类:
编程语言 时间:
2020-10-18 10:07:36
阅读次数:
28
Redis问题 MISCONF Redis is configured to save RDB snapshots, but is currently not able to persist on disk. Commands that may modify the data set are dis ...
分类:
数据库 时间:
2020-10-13 17:08:07
阅读次数:
33