码迷,mamicode.com
首页 >  
搜索关键字:ted    ( 12016个结果
Oracle 10g提权测试
一直想摸索一下orcl提权的方式,今天测试了一下10g,可以成功提权。 C:\wmpub>sqlplus scott/tiger@orcl SQL*Plus: Release 10.2.0.1.0 - Production on 星期一 10月 31 07:41:29 2016 Copyright ...
分类:数据库   时间:2016-10-31 16:22:56    阅读次数:247
04.判断闰年
判断闰年的规则可以被4整除,但是不能被100整除,或者被400整除namespace _06.判断闰年{ class Program { static void Main(string[] args) { //年份可以被4整除,但是不能被100整除,或者可以被400整除 Console.WriteL... ...
分类:其他好文   时间:2016-10-31 13:32:01    阅读次数:167
db2 常用配置
db2set配置: db2set DB2_ENABLE_LDAP=NO db2set DB2_ALTERNATE_GROUP_LOOKUP=GETGROUPLIST db2set DB2_RESTORE_GRANT_ADMIN_AUTHORITIES=ON db2set DB2_SKIPINSERT ...
分类:数据库   时间:2016-10-31 12:48:20    阅读次数:369
关于django出现重复点击,多事务处理
重复点击对处理的时候,可能mysql默认事务是repated处理级别的,会导致读取数据一致带来多次更新。 解决办法: 1.在setting.py里设置更改mysql事务的级别。 2.用select_for_update行级锁。 3,由于django没有代码级设置下一次事务的级别,所以只能自己hack ...
分类:其他好文   时间:2016-10-31 12:47:33    阅读次数:124
LeetCode 415 Add Strings
Problem: Given two non-negative numbers num1 and num2 represented as string, return the sum of num1 and num2. Summary: 以字符串的形式求两个整形数相加。 Analysis: 这道题是 ...
分类:其他好文   时间:2016-10-31 09:18:34    阅读次数:178
[ERROR] Plugin 'InnoDB' init function returned error
今天一大早到公司,计划把开发环境的mysql升级到5.7.15,干净关闭系统后,把目录从5.6指向到5.7,一切正常,重新指向5.6启动时,报下列错误: 2016-10-31 08:13:14 86998 [ERROR] Plugin 'InnoDB' init function returned ...
分类:数据库   时间:2016-10-31 09:16:29    阅读次数:238
394. Decode String
Given an encoded string, return it's decoded string. The encoding rule is: k[encoded_string], where the encoded_string inside the square brackets is b ...
分类:其他好文   时间:2016-10-31 09:11:48    阅读次数:278
计算机程序的思维逻辑 (46) - 剖析PriorityQueue
本节介绍堆和优先级队列在Java中的实现类 - PriorityQueue,包括用法和实现代码。 ...
分类:其他好文   时间:2016-10-31 09:06:21    阅读次数:208
java-web复习阶段2
11、文件上传~~~ Apache提供Commons-FileUpload SmartUpload Struts2文件上传步骤一:form表单使用post提交,并且表单添加 enctype="multipart/form-data",实现多媒体封装。 表单项中<input type="file" n ...
分类:编程语言   时间:2016-10-31 06:55:08    阅读次数:228
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!