码迷,mamicode.com
首页 >  
搜索关键字:lock tables    ( 17661个结果
SQL Server 记录(更新中...)
sys.databases显示所有数据库信息sys.tables显示当前数据库所有的表的信息Go向 SQL Server 实用工具发出一批 Transact-SQL 语句已结束的信号,Go本身不是T-SQL语句sq_addrole 等等SQL Server系统存储过程以字符 sp_ 开头。EXEC或...
分类:数据库   时间:2014-05-10 01:36:26    阅读次数:454
PL/SQL 安装出现的一些问题
一 、报错Dynamic Performance Tables not accessible,Automatic Statistics disabled for this sessionYou can disable statistics in the preference menu, or obt...
分类:数据库   时间:2014-05-09 16:39:54    阅读次数:467
Mysql基本用法
#登录数据库mysql -hlocalhost -uroot -p;#修改密码mysqladmin -uroot -pold password new; #显示数据库show databases;#显示数据表show tables;#选择数据库use examples;#创建数据库并设置编码utf....
分类:数据库   时间:2014-05-09 12:19:39    阅读次数:589
关于ORA-04021解决办法(timeout occurred while waiting to lock object)
某个应用正在锁定该表或者包表为select b.SID,b.SERIAL#,c.SQL_TEXTfrom v$locked_object a, v$session b, v$sqlarea cwhere a.SESSION_ID = b.SIDand b.SQL_ADDRESS = c.ADDRES...
分类:其他好文   时间:2014-05-09 11:06:57    阅读次数:413
JAVA中线程同步的方法
用什么关键字修饰同步方法?用synchronized关键字修饰同步方法同步有几种实现方法,都是什么?分别是synchronized,wait与notifywait():使一个线程处于等待状态,并且释放所持有的对象的lock。sleep():使一个正在运行的线程处于睡眠状态,是一个静态方法,调用此方法...
分类:编程语言   时间:2014-05-08 19:57:26    阅读次数:348
Custom Database Integration Guide
IntroductionThis document provides instructions for integrating Openfire authentication, users, and groups with your custom database tables. This is u...
分类:数据库   时间:2014-05-05 12:46:39    阅读次数:672
[转]delphi xe6 android屏幕操持常亮
1) setting the Project Options, Uses Permissions, Wake lock = True2) Adding Android.JNI.PowerManager to the uses clause3) call: AcquireWakeLock; // at...
分类:移动开发   时间:2014-05-05 11:29:06    阅读次数:501
修改mysql root密码
mysql密码丢失后,在mysql命令行下执行如下命令,即可将root用户密码清空: mysqld_safe --skip-grant-tables&mysql修改密码 mysql修改,可在mysql命令行执行如下: mysql -u root mysql mysql> UPDATE use...
分类:数据库   时间:2014-05-05 10:34:48    阅读次数:366
《linux 内核完全剖析》上帝为什么是右移20,而不是22! dir = (unsigned long *) ((from>>20) & 0xffc)
在memory.c里面有这么一段代码。为了其中的一句话,让我内牛满面啊!  dir = (unsigned long *) ((from>>20) & 0xffc) int free_page_tables(unsigned long from,unsigned long size) { unsigned long *pg_table; unsigned long...
分类:系统相关   时间:2014-05-04 18:22:41    阅读次数:459
yum提示another app is currently holding the yum lock;waiting for it to exit
强制关掉yum进程:#rm-f/var/run/yum.pid然后就可以使用yum了。
分类:移动开发   时间:2014-05-02 04:18:15    阅读次数:371
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!