我就在这里
发布时间:2013-01-17 20:07:26
让InfoMaker成为您的报表设计利器 InfoMaker是Sybase推出的一款非常优秀的免费的(存疑)报表设计及浏览工具,在安装PB时或其它Sybase软件时可作为选择性安装,并不单独销售。使用InfoMaker开发出来的报表可以直接在PB中使用,因此如果能够在PB程序中调用InfoMaker让用户自行设计数据.........【阅读全文】
发布时间:2013-01-16 20:38:38
[root@vps616 python]# cat main.py #python2.7.3#coding=utf8import osimport sysdef sub_directory(path, old, new): path_set = [] for dirpath, dirnames, filenames in os.walk(path): for name in filenames: full_path = os.path.join(dirpath, name) full_path = .........【阅读全文】
发布时间:2013-01-16 18:44:49
SQL with(unlock)与with(readpast) (转) 所有Select加 With (NoLock)解决阻塞死锁,在查询语句中使用 NOLOCK 和 READPAST 处理一个数据库死锁的异常时候,其中一个建议就是使用 NOLOCK 或者 READPAST 。有关 NOLOCK 和 READPAST的一些技术知识点: 对于非银行等严格要求事务的行业,搜索记录中.........【阅读全文】
发布时间:2013-01-13 18:33:04
关于获取SQL Server2000的自增长字段值很久没有翻译东西了,乘晚上整理资料的时候翻一篇。原文:Check Your SQL Server Identity来源:sqlservercentral.com作者:Andy WarrenOver the past few months I've had the opportunity to interview dozens of candidates......过去的几个月里,我有幸面试了众多应聘DBA和DB开发岗位的求职者。我们希望开发人员能够创建存储过程,编写合理的复杂SQL语句,以及触发器。我喜欢问这些求职者一个问题:“假设我们使用SQ......【阅读全文】
发布时间:2013-01-10 21:49:54
A:如何使用zlib模块来进行压缩解压了? Q:1.使用zlib.compress可以压缩字符串。使用zlib.decompress可以解压字符串。 压缩解压字符串示范代码:import zlibmessage = 'witch which has which witches wrist watch'compressed = zlib.compress(message) decompressed = zlib.decompress(compressed) print 'original:', repr(message) print 'compr......【阅读全文】