码迷,mamicode.com
首页 >  
搜索关键字:modify dbsnmp passwo    ( 1633个结果
python检测文件是否更新
import osimport timefilename = "test.txt"info = os.stat(filename)if time.time()-info.st_mtime > 600:#10分钟 print "done"else: print "modify"
分类:编程语言   时间:2015-04-14 17:59:57    阅读次数:203
Error Code: 1360 - Trigger does not existQuery
1、错误原因 Query: DROP TRIGGER `insert_pcs_approve` Error occured at:2015-04-12 13:37:32 Line no.:1 Error Code: 1360 - Trigger does not existQuery: ALTER TABLE `t_pcs_berth` MODIFY COLUMN `id` int(20)...
分类:其他好文   时间:2015-04-13 00:29:23    阅读次数:170
MSSQL tempdb优化
更换数据库后,tempdb需进行以下调整1、修改自动增长比例,修改为20MB的增长1 USE [master]2 GO3 ALTER DATABASE [tempdb] MODIFY FILE ( NAME = N'tempdev', FILEGROWTH = 20480KB )4 GO参考文档ht...
分类:数据库   时间:2015-04-07 11:46:23    阅读次数:179
linux常用命令[ls/cd/man/type/date/hwclock]
linux常用命令:ls -l:长格式 文件类型: -:普通文件(f) d:目录文件 d:块设备文件(block) c:字符设备文件(character) l:符号链接文件(symboliclinkfile) p:命令套管文件(pipe) s:套接字文件(socket) 文件权限:9位,每3位一组,每一组:rwx(读,写,执行) ..
分类:系统相关   时间:2015-04-06 06:35:47    阅读次数:226
VMware 克隆CentOS 后无法启动网卡的解决
将原有的eth0的那一行注释掉,然后将生成的eth1改为eth0(如果没有这个文件,可以新增这个文件解决)[root@localhost~]#cat/etc/udev/rules.d/70-persistent-net.rules#Thisfilewasautomaticallygeneratedbythe/lib/udev/write_net_rules#program,runbythepersistent-net-gener..
分类:系统相关   时间:2015-04-05 19:03:06    阅读次数:210
stl_alloc.h
/* * Copyright (c) 1996-1997 * Silicon Graphics Computer Systems, Inc. * * Permission to use, copy, modify, distribute and sell this software * and it...
分类:其他好文   时间:2015-04-05 06:21:17    阅读次数:274
JS前台加密,java后台解密实现
因项目需求,需要对用户信息进行加密(以登录为例),前台js中对用户名密码进行加密传输。然后后台进行解密操作 先看一下效果图未对其加密传输对其加密传输1.前台JS $(function() { $("#btn").click(function() { var username = encode64($("#username").val()); //对数据加密 var passwo...
分类:编程语言   时间:2015-04-03 22:33:15    阅读次数:383
客户端自行连苹果服务器验证购买完成返回的receipt
//write your test code here NSError *error = nil; NSDictionary *requestContents = @{@"receipt-data":[receipt base64EncodedStringWithOptions:0] ,@"passwo...
分类:移动开发   时间:2015-04-03 13:34:17    阅读次数:182
-bash: ulimit: max user processes: cannot modify limit: Operation not permitted
安装oracle时候在创建oracle用户后,切换oracle用户时,报如下错[root@localhost ~]# su - oracle-bash: ulimit: max user processes: cannot modify limit: Operation not permitted经...
分类:其他好文   时间:2015-04-03 00:06:59    阅读次数:124
Cannot modify header information - headers already sent by
有时候你在使用header("Location: http://localhost/myblog/index.php/manager/listview");的时候会出现这个问题,可是也许你是从别处拷贝过来的别处都没有出现过这个问题,这时候你就很疑惑了注意很可能是因为你在前面输出了一个echo的缘故或...
分类:其他好文   时间:2015-04-02 22:23:57    阅读次数:165
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!