use 数据库名称go--使用 sp_change_users_login 修复产生的孤立账户--列出当前数据库的孤立用户exec sp_change_users_login 'report'--可以自动将用户名所对应的同名登录添加到 syslogins 中exec sp_change_users_...
分类:
数据库 时间:
2015-06-12 09:57:48
阅读次数:
124
php调用empty出现错误Can't use function return value in write context2012-10-28 09:33:22 |11391次阅读 |评论:0条|itokit今天的一个简单程序:C/C++ Code复制内容到剪贴板protectedfunction...
分类:
Web程序 时间:
2015-06-12 09:52:12
阅读次数:
132
原文网址:http://stackoverflow.com/questions/3462513/gcc-warning-braces-around-scalar-initializerI have look-up-table as defined below and I'm making use o...
分类:
其他好文 时间:
2015-06-12 00:47:07
阅读次数:
402
方法一:使用commands.getoutput调用shell命令df获取磁盘使用率:importcommands
>>>importcommands
>>>disk_use=commands.getoutput(‘df-h‘)
>>>disk_use
‘FilesystemSizeUsedAvailUse%Mountedon\n/dev/sda218G5.7G12G34%/\ntmpfs931M0931M0%/dev/..
分类:
编程语言 时间:
2015-06-11 23:16:03
阅读次数:
287
最近在安装OpenSIPS的时候老是出现483toomanyhoops错误,究其原因是多domain中domain的路由找不到。因为在执行osipsconfig生成配置文件的时候选择了USE_MULTIDOMAIN.但是在我们的domain表中却是空数据,因此找不到去domain的路由,所以形成回环。所以这个时候只需要在opensips..
分类:
其他好文 时间:
2015-06-11 23:09:01
阅读次数:
336
查看数据库监听状态不对$ lsnrctl statusLSNRCTL for IBM/AIX RISC System/6000: Version 10.2.0.5.0 - Production on 05-NOV-2012 08:54:08Copyright (c) 1991, 2010, Orac...
分类:
其他好文 时间:
2015-06-11 22:45:49
阅读次数:
238
mysql 5.6安装好之后,是默认root用户的密码为空的,此时为了安全性需要修改密码不为空,修改方法为:cmd或者mysql 5.6 command line client登陆之后,输入一下命令:use mysqlupdate user set password=PASSWORD('123456...
分类:
数据库 时间:
2015-06-11 18:53:25
阅读次数:
202
1、使用DELETE实现SQL Server删除表信息(1)删除表中的全部信息USE studentGODELETE student --不加where条件,删除表中的所有记录go(2)删除表中符合条件的记录USE studentGODELETE student where Id='001' --删...
分类:
数据库 时间:
2015-06-11 18:48:10
阅读次数:
178
1. Install groovy plugin2. Add a step of groovy. (normal & systerm)3. Execute groovy scriptimport jenkins.model.*def q = Jenkins.instance.queueq.items...
分类:
其他好文 时间:
2015-06-11 16:23:20
阅读次数:
95
database.php123456789101112131415161718$active_group = 'default';$active_record = TRUE;$db['default']['hostname'] = 'localhost/xe';$db['default']['use...
分类:
数据库 时间:
2015-06-11 09:23:17
阅读次数:
880