备份还原备份就是数据库在某一个时间点的副本数据库备份的目的:防止数据库丢失,防止天灾人祸(地震、火灾、人为操作、硬件故障)备份主要有:物理备份和逻辑备份物理备份主要备份的是使用过有效的数据页,逻辑备份主要是备份的数据库对象(表、视图)。物理备份:分为联机备份和脱机备份;完全备份和增量备份完全备份:备份的数据库或指定者表空间的全部数据。增量备份:是指在上一次全备或增备后,以后每次的备份只需要备份修改
分类:
其他好文 时间:
2020-10-18 16:21:05
阅读次数:
34
In our last example, we explored the scheduling of 2 factories. Both factories had 2 costs: Fixed Costs - Costs incurred while the factory is running ...
分类:
其他好文 时间:
2020-10-12 20:02:33
阅读次数:
27
1.Spring 容器几个重要的接口 org.springframework.core.env.Environment Interface representing the environment in which the current application is running. 继承自org ...
分类:
编程语言 时间:
2020-10-09 20:48:51
阅读次数:
25
1.查看防火墙的状态 [root@localhost HMK]# firewall-cmd --state 查看防火墙的运行状态 not running [root@localhost HMK]# systemctl status firewalld.service 查看防火墙服务是否开启 ● fi ...
分类:
其他好文 时间:
2020-09-24 21:47:59
阅读次数:
46
进程的状态与转换 状态 进程是程序的一次执行。在这个执行过程中,有时进程正在被CPU处理,有时又需要等待CPU服务,可见,进程的状态是会有各种变化。为了方便对各个进程的管理,操作系统需要将进程合理地划分为几种状态。 三种基本状态 运行态(Running) CPU√ 其他所需资源× 占有CPU,并在C ...
分类:
系统相关 时间:
2020-09-18 03:26:14
阅读次数:
66
Converting any HTML template into a Django template The normal way Any HTML, CSS, JS or BootStrap template can be converted into a Django compatible t ...
分类:
Web程序 时间:
2020-09-18 02:57:40
阅读次数:
47
当运行中出现Container is running beyond physical memory这个问题出现主要是因为物理内存不足导致的,在执行mapreduce的时候,每个map和reduce都有自己分配到内存的最大值,当map函数需要的内存大于这个值就会报这个错误,解决方法: 在mapredu ...
分类:
其他好文 时间:
2020-09-17 13:31:24
阅读次数:
39
CentOS7系统配置国内yum源和epel源 源文章地址:https://www.cnblogs.com/renpingsheng/p/7845096.html 1.首先进入/etc/yum.repos.d/目录下,新建一个repo_bak目录,用于保存系统中原来的repo文件 [root@bog ...
分类:
其他好文 时间:
2020-09-14 19:10:52
阅读次数:
43