/bin : 存储常 用用户指令/boot : 存储 核心、模块 映像等启 动用文件/dev : 存储 设备文件/etc : 存储 系统、 服 务的配置目录 与 文件/home : 存放 个人主目录/lib : 存放库 文件, 诸如 核心模块、驱动/lost+found : 存储 fsck分区扫描信 ...
分类:
系统相关 时间:
2019-09-30 09:17:04
阅读次数:
95
一、常见语句 1、创建临时表空间: “project_temp”为表空间名称,“tempfile”后面的是临时表空间的存储路径,临时表空间主要放置一些临时数据,如果使用select对一些数据进行查询,系统会将查询到的中间数据放在临时表空间里暂存,使用结束后临时表会自动删除。 2、创建表空间: “pr ...
分类:
数据库 时间:
2019-09-28 00:50:18
阅读次数:
135
1、模版xml <!--WARNING: THIS IS AN AUTO-GENERATED FILE. CHANGES TO IT ARE LIKELY TO BEOVERWRITTEN AND LOST. Changes to this xml configuration should be m ...
分类:
其他好文 时间:
2019-09-14 22:28:32
阅读次数:
195
外网综合平台建库create tablespace HUAJUNAEMSouternet datafile 'HUAJUNAEMSouternet.dbf' size 100M reuse autoextend on next 50M;1. 2.drop user hjaemsouternet ca ...
分类:
其他好文 时间:
2019-09-02 12:15:12
阅读次数:
98
01.表空间的创建和删除 删除表空间,文件还在! 删除文件,用户还在! 都删除必须使用下面的! drop tablespace 空间名 including contents and datafiles cascade constraint drop user 用户名 cascade 13.pl/sq ...
分类:
数据库 时间:
2019-09-01 21:26:26
阅读次数:
106
Lost Cows POJ 2182 思维 题意 是说有n头牛,它们身高不一但是排成了一队,从左到右编号为1到n,现在告诉你从第二号开始前面的那些牛中身高小于它的个数,一共有n 1个数。然后求出它们按照身高来排序的话从低到高编号会是多少。 解题思路 首先我们需要从它给的数据逆序来进行处理,为什么,比 ...
分类:
其他好文 时间:
2019-08-27 00:29:49
阅读次数:
92
E:\Visual Studio 2015\install\VC>cd E:\OpenSourceGraph\gdal-master\gdal E:\OpenSourceGraph\gdal-master\gdal>E:\OpenSourceGraph\gdal-master\gdal>E:\Ope ...
分类:
其他好文 时间:
2019-08-22 22:03:53
阅读次数:
83
CF1204B Mislove Has Lost an Array 题意: 给你n,l,r 表示在区间1 n内至少有l个不相同的数至多有r个不相同的数,而且这些数不是1就是偶数而且每个偶数/2得到的数在之前出现过。 解法: 根据题意找规律。 满足条件下,合乎题意的值确定后,将剩余的未赋值的看作1就是 ...
分类:
其他好文 时间:
2019-08-21 21:37:45
阅读次数:
75
___ 思路 最小就是达到下限之后其他全是1 , 最大就是达到上限后全是最大的那个 ___ 代码 cpp include using namespace std ; int n , l , r ; int minn = 1, maxx = 1; int main () { cin n l r ; f ...
分类:
其他好文 时间:
2019-08-21 11:35:27
阅读次数:
61
Problem D Lost in Translation The word is out that you’ve just finished writing a book entitled How to Ensure Victory at a Programming Contest and req ...
分类:
其他好文 时间:
2019-08-20 20:38:23
阅读次数:
85