码迷,mamicode.com
首页 >  
搜索关键字:sys    ( 20866个结果
Python getopt模块处理命令行选项实例教程
分享下Python getopt模块处理命令行选项的一些例子。在python编程中,getopt模块与shell中的getopt参数模块一样灵活而实用。getopt模块用于抽出命令行选项和参数,也就是sys.argv命令行选项使得程序的参数更加灵活。支持短选项模式和长选项模式例如python scr...
分类:编程语言   时间:2014-05-16 22:10:35    阅读次数:290
asp.net 的加密Encode和解密Decode.
asp.net 的加密和解密(c#):1. 导入所需包:using System.IO;using System.Text;using System.Security.Cryptography;2.加密1)MD5普通加密//获取要加密的字段,并转化为Byte[]数组byte[] data = Sys...
分类:Web程序   时间:2014-05-16 18:53:50    阅读次数:375
查询锁事务及语句
if exists(select * from master.sys.sysprocesses where spid in (select blocked from master.sys.sysprocesses))begin---确定进程被锁住的其他资源select spid 进程,STATUS ...
分类:其他好文   时间:2014-05-16 06:38:48    阅读次数:329
dbms_xplan的display_cursor查看执行计划
准备工作: SQL> conn sys/root as sysdba Connected. SQL> grant select on v_$sql_plan to scott; Grant succeeded. SQL> grant select on v_$session to scott; Gr...
分类:数据库   时间:2014-05-16 04:56:06    阅读次数:431
python中defaultdict类
回宿舍前翻翻Codeforces的时候发现了一个有趣的代码..其实是我没这么用过 :D这是一份417B的代码 1 import sys 2 from collections import defaultdict 3 4 n = int(sys.stdin.readline()) 5 d = def....
分类:编程语言   时间:2014-05-14 12:20:35    阅读次数:372
手动释放linux内存和缓存
/proc/sys/vm/drop_caches(since Linux 2.6.16)Writing to this file causes the kernel to drop clean caches,dentries and inodes from memory, causing that ...
分类:系统相关   时间:2014-05-14 08:54:16    阅读次数:331
oracle的常见问题与解决
刚接触oracle,在学习过程中遇到了很多的问题,本文章将会收藏我遇到的问题及如何解决。错误一:ORA-28009:connectionassysshouldbeassysdba解决方法:用户名称:sys,口令:password,主机字符串:orcl as sysdba(我设置的全局数据库名为orc...
分类:数据库   时间:2014-05-13 20:08:40    阅读次数:421
python自定义查找文件内容
#!/usr/bin/envpython#coding:utf8#此脚本为查找递归目录下所有文件匹配的内容importos,sys,tabdefpaths(path):list_path=os.walk(path)all_file=[]forp,d,flinlist_path:forfinfl:pfile=os.path.join(p,f)ifos.path.isdir(pfile):paths(pfile)all_file.append(pfile)returnall..
分类:编程语言   时间:2014-05-13 03:49:34    阅读次数:426
python管理mysql,请叫我雷锋
#!/usr/bin/envpython#coding:utf8importos,sys,glob,time,MySQLdb,reDIRNAME=os.path.dirname(__file__)OPSTOOLS_DIR=os.path.abspath(os.path.join(DIRNAME,‘..‘))sys.path.append(OPSTOOLS_DIR)fromlibrary.mysqlconfigimportMySQLDConfig,getMyVariablesfromoptparseimport..
分类:数据库   时间:2014-05-13 02:46:59    阅读次数:809
ORA-32004错误的解决方法
启动Oracle数据库时出现下列错误SYS@PROD>startupORA-32004:obsoleteordeprecatedparameter(s)specifiedforRDBMSinstanceORACLEinstancestarted.TotalSystemGlobalArea534462464bytesFixedSize2254952bytesVariableSize369100696bytesDatabaseBuffers159383552bytesRedoBuff..
分类:其他好文   时间:2014-05-11 19:06:19    阅读次数:388
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!