create tablespace test datafile 'D:\ytzz\Oracle\oracledata\test.DBF' size 4500M autoextend on next 100M maxsize unlimited; drop user test cascade;/cre ...
分类:
其他好文 时间:
2020-04-20 13:57:23
阅读次数:
75
有时候生产会发现,运行一段时间swap就会飙升,而且不下来,其实内存这个东西,怎么说够用不够用呢,看下swap就行,如果这个swap长时间动态平衡之后又增加,那么估计是有问题。 有关/proc/sys/vm/drop_caches的用法在下面进行了说明/proc/sys/vm/drop_caches(sinceLinux2.6.16)Writingtothisfi
分类:
系统相关 时间:
2020-04-19 13:11:41
阅读次数:
67
题目描述 随便注 解题过程 查看源码,发现应该不适合 自动化注入,该题应该是让你手工注入; 在表单中加入单引号 试错,发现 语法错误 这说明为GET型SQL注入漏洞。考虑联合注入; 判断列数 采用 经判断列数为2 尝试通过 联合查询 ,查询有用信息 发现某些关键字被过滤 这样我们便不能通过联合查询进 ...
分类:
数据库 时间:
2020-04-18 22:56:26
阅读次数:
113
HTML5 HTML5有哪些新特性: 1. 拖拽释放(Drag and drop) API 2. 语义化更好的内容标签(header,nav,footer,aside,article,section) 3. 音频、视频API(audio,video) 4. 画布(Canvas) API 5. 地理( ...
分类:
其他好文 时间:
2020-04-18 18:59:02
阅读次数:
83
插入数据 DROP PROCEDURE IF EXISTS test3;DELIMITER //create procedure test3()begin DECLARE i int default 12345678; DECLARE count int default 0;while count< ...
分类:
其他好文 时间:
2020-04-18 17:14:56
阅读次数:
53
1. cursor:auto; 默认 2. cursor:crosshair; 加号 3. cursor:text; 文本竖标 4. cursor:wait; 等待 5. cursor:help; 帮助 6. cursor:progress; 过程 7. cursor:inherit; 继承 8. ...
分类:
其他好文 时间:
2020-04-16 00:34:57
阅读次数:
153
--行转列小实例 --创建测试表 if object_id(N'test', N'U') is not null drop table test go with PivotTable as ( select 'xxx' as czy, '点赞' as czlx, 2 as num union all ...
分类:
其他好文 时间:
2020-04-14 22:58:12
阅读次数:
92
1 4.6.1 分区表基本操作 2 1.引入分区表(需要根据日期对日志进行管理) 3 /user/hive/warehouse/log_partition/20170702/20170702.log 4 /user/hive/warehouse/log_partition/20170703/2017 ...
分类:
其他好文 时间:
2020-04-13 22:23:13
阅读次数:
56
Data Definition Language Statements Data definition language (DDL) statements define, alter the structure of, and drop schema objects. DDL statements ...
分类:
数据库 时间:
2020-04-13 16:52:20
阅读次数:
299
演示demo表: student表 DROP TABLE IF EXISTS `student`; CREATE TABLE `student` ( `stuid` varchar(16) NOT NULL COMMENT '学号', `stunm` varchar(20) NOT NULL COM ...
分类:
数据库 时间:
2020-04-13 16:50:15
阅读次数:
101